2022-09-06 12:03:37 +00:00
|
|
|
<template>
|
2023-06-02 11:10:18 +00:00
|
|
|
<td v-if="loading" :style="containerStyle" :class="containerClass" role="cell" v-bind="{ ...getColumnPT('root'), ...getColumnPT('bodyCell') }">
|
2022-09-14 11:26:01 +00:00
|
|
|
<component :is="column.children.loading" :data="rowData" :column="column" :field="field" :index="rowIndex" :frozenRow="frozenRow" :loadingOptions="loadingOptions" />
|
2022-09-06 12:03:37 +00:00
|
|
|
</td>
|
2023-06-02 06:52:13 +00:00
|
|
|
<td
|
|
|
|
v-else
|
|
|
|
:style="containerStyle"
|
|
|
|
:class="containerClass"
|
|
|
|
@click="onClick"
|
|
|
|
@keydown="onKeyDown"
|
|
|
|
role="cell"
|
2023-06-02 11:10:18 +00:00
|
|
|
v-bind="{ ...getColumnPT('root'), ...getColumnPT('bodyCell') }"
|
2023-06-02 06:52:13 +00:00
|
|
|
:data-p-selection-column="columnProp('selectionMode') != null"
|
|
|
|
:data-p-editable-column="isEditable()"
|
|
|
|
:data-p-cell-editing="d_editing"
|
|
|
|
:data-p-frozen-column="columnProp('frozen')"
|
|
|
|
>
|
2023-06-08 11:26:48 +00:00
|
|
|
<span v-if="responsiveLayout === 'stack'" :class="cx('columnTitle')" v-bind="getColumnPT('columnTitle')">{{ columnProp('header') }}</span>
|
2022-09-14 11:26:01 +00:00
|
|
|
<component v-if="column.children && column.children.body && !d_editing" :is="column.children.body" :data="rowData" :column="column" :field="field" :index="rowIndex" :frozenRow="frozenRow" :editorInitCallback="editorInitCallback" />
|
|
|
|
<component
|
|
|
|
v-else-if="column.children && column.children.editor && d_editing"
|
|
|
|
:is="column.children.editor"
|
|
|
|
:data="editingRowData"
|
|
|
|
:column="column"
|
|
|
|
:field="field"
|
|
|
|
:index="rowIndex"
|
|
|
|
:frozenRow="frozenRow"
|
|
|
|
:editorSaveCallback="editorSaveCallback"
|
|
|
|
:editorCancelCallback="editorCancelCallback"
|
|
|
|
/>
|
|
|
|
<component v-else-if="column.children && column.children.body && !column.children.editor && d_editing" :is="column.children.body" :data="editingRowData" :column="column" :field="field" :index="rowIndex" :frozenRow="frozenRow" />
|
2022-09-06 12:03:37 +00:00
|
|
|
<template v-else-if="columnProp('selectionMode')">
|
2023-06-05 13:45:43 +00:00
|
|
|
<DTRadioButton v-if="columnProp('selectionMode') === 'single'" :value="rowData" :name="name" :checked="selected" @change="toggleRowWithRadio($event, rowIndex)" :column="column" :index="index" :unstyled="unstyled" :pt="pt" />
|
2023-04-13 14:42:33 +00:00
|
|
|
<DTCheckbox
|
|
|
|
v-else-if="columnProp('selectionMode') === 'multiple'"
|
|
|
|
:value="rowData"
|
|
|
|
:checked="selected"
|
|
|
|
:rowCheckboxIconTemplate="column.children && column.children.rowcheckboxicon"
|
|
|
|
:aria-selected="selected ? true : undefined"
|
|
|
|
@change="toggleRowWithCheckbox($event, rowIndex)"
|
2023-05-09 14:57:31 +00:00
|
|
|
:column="column"
|
2023-06-05 13:45:43 +00:00
|
|
|
:index="index"
|
2023-06-05 08:10:25 +00:00
|
|
|
:unstyled="unstyled"
|
2023-05-08 14:08:06 +00:00
|
|
|
:pt="pt"
|
2023-04-13 14:42:33 +00:00
|
|
|
/>
|
2022-09-06 12:03:37 +00:00
|
|
|
</template>
|
|
|
|
<template v-else-if="columnProp('rowReorder')">
|
2023-06-08 11:26:48 +00:00
|
|
|
<component v-if="column.children && column.children.rowreordericon" :is="column.children.rowreordericon" :class="cx('rowReorderIcon')" />
|
|
|
|
<i v-else-if="columnProp('rowReorderIcon')" :class="[cx('rowReorderIcon'), columnProp('rowReorderIcon')]" />
|
|
|
|
<BarsIcon v-else :class="cx('rowReorderIcon')" data-pc-section="rowreordericon" />
|
2022-09-06 12:03:37 +00:00
|
|
|
</template>
|
|
|
|
<template v-else-if="columnProp('expander')">
|
2023-06-08 11:26:48 +00:00
|
|
|
<button v-ripple :class="cx('rowToggler')" type="button" :aria-expanded="isRowExpanded" :aria-controls="ariaControls" :aria-label="expandButtonAriaLabel" @click="toggleRow" v-bind="getColumnPT('rowToggler')">
|
2023-04-13 14:42:33 +00:00
|
|
|
<component v-if="column.children && column.children.rowtogglericon" :is="column.children.rowtogglericon" :rowExpanded="isRowExpanded" />
|
2023-04-18 10:51:10 +00:00
|
|
|
<template v-else>
|
2023-06-08 11:26:48 +00:00
|
|
|
<span v-if="isRowExpanded && expandedRowIcon" :class="[cx('rowTogglerIcon'), expandedRowIcon]" />
|
|
|
|
<ChevronDownIcon v-else-if="isRowExpanded && !expandedRowIcon" :class="cx('rowTogglerIcon')" v-bind="getColumnPT('rowTogglerIcon')" />
|
|
|
|
<span v-else-if="!isRowExpanded && collapsedRowIcon" :class="[cx('rowTogglerIcon'), collapsedRowIcon]" />
|
|
|
|
<ChevronRightIcon v-else-if="!isRowExpanded && !collapsedRowIcon" :class="cx('rowTogglerIcon')" v-bind="getColumnPT('rowTogglerIcon')" />
|
2023-04-18 10:51:10 +00:00
|
|
|
</template>
|
2022-09-06 12:03:37 +00:00
|
|
|
</button>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="editMode === 'row' && columnProp('rowEditor')">
|
2023-06-08 11:26:48 +00:00
|
|
|
<button v-if="!d_editing" v-ripple :class="cx('rowEditorInitButton')" type="button" :aria-label="initButtonAriaLabel" @click="onRowEditInit" v-bind="getColumnPT('rowEditorInitButton')">
|
|
|
|
<component :is="(column.children && column.children.roweditoriniticon) || 'PencilIcon'" :class="cx('rowEditorInitIcon')" v-bind="getColumnPT('rowEditorInitIcon')" />
|
2022-09-06 12:03:37 +00:00
|
|
|
</button>
|
2023-06-08 11:26:48 +00:00
|
|
|
<button v-if="d_editing" v-ripple :class="cx('rowEditorSaveButton')" type="button" :aria-label="saveButtonAriaLabel" @click="onRowEditSave" v-bind="getColumnPT('rowEditorSaveButton')">
|
|
|
|
<component :is="(column.children && column.children.roweditorsaveicon) || 'CheckIcon'" :class="cx('rowEditorSaveIcon')" v-bind="getColumnPT('rowEditorSaveIcon')" />
|
2022-09-06 12:03:37 +00:00
|
|
|
</button>
|
2023-06-08 11:26:48 +00:00
|
|
|
<button v-if="d_editing" v-ripple :class="cx('rowEditorCancelButton')" type="button" :aria-label="cancelButtonAriaLabel" @click="onRowEditCancel" v-bind="getColumnPT('rowEditorCancelButton')">
|
|
|
|
<component :is="(column.children && column.children.roweditorcancelicon) || 'TimesIcon'" :class="cx('rowEditorCancelIcon')" v-bind="getColumnPT('rowEditorCancelIcon')" />
|
2022-09-06 12:03:37 +00:00
|
|
|
</button>
|
|
|
|
</template>
|
2022-09-14 11:26:01 +00:00
|
|
|
<template v-else>{{ resolveFieldData() }}</template>
|
2022-09-06 12:03:37 +00:00
|
|
|
</td>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
2023-05-08 14:08:06 +00:00
|
|
|
import BaseComponent from 'primevue/basecomponent';
|
2023-04-18 12:53:43 +00:00
|
|
|
import BarsIcon from 'primevue/icons/bars';
|
|
|
|
import CheckIcon from 'primevue/icons/check';
|
|
|
|
import ChevronDownIcon from 'primevue/icons/chevrondown';
|
|
|
|
import ChevronRightIcon from 'primevue/icons/chevronright';
|
|
|
|
import PencilIcon from 'primevue/icons/pencil';
|
|
|
|
import TimesIcon from 'primevue/icons/times';
|
2022-09-06 12:03:37 +00:00
|
|
|
import OverlayEventBus from 'primevue/overlayeventbus';
|
|
|
|
import Ripple from 'primevue/ripple';
|
2022-12-08 11:04:25 +00:00
|
|
|
import { DomHandler, ObjectUtils } from 'primevue/utils';
|
|
|
|
import RowCheckbox from './RowCheckbox.vue';
|
|
|
|
import RowRadioButton from './RowRadioButton.vue';
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
export default {
|
|
|
|
name: 'BodyCell',
|
2023-06-08 11:26:48 +00:00
|
|
|
hostName: 'DataTable',
|
2023-05-08 14:08:06 +00:00
|
|
|
extends: BaseComponent,
|
2022-09-14 11:26:01 +00:00
|
|
|
emits: ['cell-edit-init', 'cell-edit-complete', 'cell-edit-cancel', 'row-edit-init', 'row-edit-save', 'row-edit-cancel', 'row-toggle', 'radio-change', 'checkbox-change', 'editing-meta-change'],
|
2022-09-06 12:03:37 +00:00
|
|
|
props: {
|
|
|
|
rowData: {
|
|
|
|
type: Object,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
column: {
|
|
|
|
type: Object,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
frozenRow: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
rowIndex: {
|
|
|
|
type: Number,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
index: {
|
|
|
|
type: Number,
|
|
|
|
default: null
|
|
|
|
},
|
2023-04-13 14:42:33 +00:00
|
|
|
isRowExpanded: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
selected: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
editing: {
|
|
|
|
type: Boolean,
|
|
|
|
default: false
|
|
|
|
},
|
|
|
|
editingMeta: {
|
|
|
|
type: Object,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
editMode: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
responsiveLayout: {
|
|
|
|
type: String,
|
|
|
|
default: 'stack'
|
|
|
|
},
|
|
|
|
virtualScrollerContentProps: {
|
|
|
|
type: Object,
|
|
|
|
default: null
|
2022-12-08 11:04:25 +00:00
|
|
|
},
|
|
|
|
ariaControls: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
name: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
2023-04-13 14:42:33 +00:00
|
|
|
},
|
|
|
|
expandedRowIcon: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
|
|
|
},
|
|
|
|
collapsedRowIcon: {
|
|
|
|
type: String,
|
|
|
|
default: null
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
documentEditListener: null,
|
|
|
|
selfClick: false,
|
|
|
|
overlayEventListener: null,
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
d_editing: this.editing,
|
2023-04-13 14:42:33 +00:00
|
|
|
styleObject: {}
|
2022-09-14 11:26:01 +00:00
|
|
|
};
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
editing(newValue) {
|
|
|
|
this.d_editing = newValue;
|
|
|
|
},
|
2022-09-14 11:26:01 +00:00
|
|
|
'$data.d_editing': function (newValue) {
|
|
|
|
this.$emit('editing-meta-change', { data: this.rowData, field: this.field || `field_${this.index}`, index: this.rowIndex, editing: newValue });
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
if (this.columnProp('frozen')) {
|
|
|
|
this.updateStickyPosition();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
updated() {
|
|
|
|
if (this.columnProp('frozen')) {
|
|
|
|
this.updateStickyPosition();
|
|
|
|
}
|
|
|
|
|
|
|
|
if (this.d_editing && (this.editMode === 'cell' || (this.editMode === 'row' && this.columnProp('rowEditor')))) {
|
2023-01-19 05:10:59 +00:00
|
|
|
setTimeout(() => {
|
|
|
|
const focusableEl = DomHandler.getFirstFocusableElement(this.$el);
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2023-01-19 05:10:59 +00:00
|
|
|
focusableEl && focusableEl.focus();
|
|
|
|
}, 1);
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
beforeUnmount() {
|
|
|
|
if (this.overlayEventListener) {
|
|
|
|
OverlayEventBus.off('overlay-click', this.overlayEventListener);
|
|
|
|
this.overlayEventListener = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
columnProp(prop) {
|
|
|
|
return ObjectUtils.getVNodeProp(this.column, prop);
|
|
|
|
},
|
2023-06-02 11:10:18 +00:00
|
|
|
getColumnPT(key) {
|
|
|
|
const columnMetaData = {
|
|
|
|
props: this.column.props,
|
2023-05-09 14:57:31 +00:00
|
|
|
parent: {
|
|
|
|
props: this.$props,
|
|
|
|
state: this.$data
|
2023-06-02 11:10:18 +00:00
|
|
|
},
|
|
|
|
context: {
|
|
|
|
index: this.index
|
2023-05-09 14:57:31 +00:00
|
|
|
}
|
2023-06-02 11:10:18 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
return { ...this.ptm(`column.${key}`, { column: columnMetaData }), ...this.ptmo(this.getColumnProp(), key, columnMetaData) };
|
2023-05-09 14:57:31 +00:00
|
|
|
},
|
2023-06-02 11:10:18 +00:00
|
|
|
getColumnProp() {
|
|
|
|
return this.column.props && this.column.props.pt ? this.column.props.pt : undefined;
|
2023-05-09 14:57:31 +00:00
|
|
|
},
|
2022-09-06 12:03:37 +00:00
|
|
|
resolveFieldData() {
|
|
|
|
return ObjectUtils.resolveFieldData(this.rowData, this.field);
|
|
|
|
},
|
|
|
|
toggleRow(event) {
|
|
|
|
this.$emit('row-toggle', {
|
|
|
|
originalEvent: event,
|
|
|
|
data: this.rowData
|
|
|
|
});
|
|
|
|
},
|
|
|
|
toggleRowWithRadio(event, index) {
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('radio-change', { originalEvent: event.originalEvent, index: index, data: event.data });
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
toggleRowWithCheckbox(event, index) {
|
|
|
|
this.$emit('checkbox-change', { originalEvent: event.originalEvent, index: index, data: event.data });
|
|
|
|
},
|
|
|
|
isEditable() {
|
|
|
|
return this.column.children && this.column.children.editor != null;
|
|
|
|
},
|
|
|
|
bindDocumentEditListener() {
|
|
|
|
if (!this.documentEditListener) {
|
|
|
|
this.documentEditListener = (event) => {
|
|
|
|
if (!this.selfClick) {
|
|
|
|
this.completeEdit(event, 'outside');
|
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
this.selfClick = false;
|
|
|
|
};
|
|
|
|
|
|
|
|
document.addEventListener('click', this.documentEditListener);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
unbindDocumentEditListener() {
|
|
|
|
if (this.documentEditListener) {
|
|
|
|
document.removeEventListener('click', this.documentEditListener);
|
|
|
|
this.documentEditListener = null;
|
|
|
|
this.selfClick = false;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
switchCellToViewMode() {
|
|
|
|
this.d_editing = false;
|
|
|
|
this.unbindDocumentEditListener();
|
|
|
|
OverlayEventBus.off('overlay-click', this.overlayEventListener);
|
|
|
|
this.overlayEventListener = null;
|
|
|
|
},
|
|
|
|
onClick(event) {
|
|
|
|
if (this.editMode === 'cell' && this.isEditable()) {
|
|
|
|
this.selfClick = true;
|
|
|
|
|
|
|
|
if (!this.d_editing) {
|
|
|
|
this.d_editing = true;
|
|
|
|
this.bindDocumentEditListener();
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('cell-edit-init', { originalEvent: event, data: this.rowData, field: this.field, index: this.rowIndex });
|
2022-09-06 12:03:37 +00:00
|
|
|
|
|
|
|
this.overlayEventListener = (e) => {
|
|
|
|
if (this.$el && this.$el.contains(e.target)) {
|
|
|
|
this.selfClick = true;
|
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
};
|
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
OverlayEventBus.on('overlay-click', this.overlayEventListener);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
completeEdit(event, type) {
|
|
|
|
const completeEvent = {
|
|
|
|
originalEvent: event,
|
|
|
|
data: this.rowData,
|
|
|
|
newData: this.editingRowData,
|
|
|
|
value: this.rowData[this.field],
|
|
|
|
newValue: this.editingRowData[this.field],
|
|
|
|
field: this.field,
|
|
|
|
index: this.rowIndex,
|
|
|
|
type: type,
|
|
|
|
defaultPrevented: false,
|
2022-09-14 11:26:01 +00:00
|
|
|
preventDefault: function () {
|
2022-09-06 12:03:37 +00:00
|
|
|
this.defaultPrevented = true;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
this.$emit('cell-edit-complete', completeEvent);
|
|
|
|
|
|
|
|
if (!completeEvent.defaultPrevented) {
|
|
|
|
this.switchCellToViewMode();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onKeyDown(event) {
|
|
|
|
if (this.editMode === 'cell') {
|
2022-12-08 11:04:25 +00:00
|
|
|
switch (event.code) {
|
|
|
|
case 'Enter':
|
2022-09-06 12:03:37 +00:00
|
|
|
this.completeEdit(event, 'enter');
|
2022-09-14 11:26:01 +00:00
|
|
|
break;
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2022-12-08 11:04:25 +00:00
|
|
|
case 'Escape':
|
2022-09-06 12:03:37 +00:00
|
|
|
this.switchCellToViewMode();
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('cell-edit-cancel', { originalEvent: event, data: this.rowData, field: this.field, index: this.rowIndex });
|
|
|
|
break;
|
2022-09-06 12:03:37 +00:00
|
|
|
|
2022-12-08 11:04:25 +00:00
|
|
|
case 'Tab':
|
2022-09-06 12:03:37 +00:00
|
|
|
this.completeEdit(event, 'tab');
|
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
if (event.shiftKey) this.moveToPreviousCell(event);
|
|
|
|
else this.moveToNextCell(event);
|
|
|
|
break;
|
2022-12-08 11:04:25 +00:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
moveToPreviousCell(event) {
|
|
|
|
let currentCell = this.findCell(event.target);
|
|
|
|
let targetCell = this.findPreviousEditableColumn(currentCell);
|
|
|
|
|
|
|
|
if (targetCell) {
|
|
|
|
DomHandler.invokeElementMethod(targetCell, 'click');
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
moveToNextCell(event) {
|
|
|
|
let currentCell = this.findCell(event.target);
|
|
|
|
let targetCell = this.findNextEditableColumn(currentCell);
|
|
|
|
|
|
|
|
if (targetCell) {
|
|
|
|
DomHandler.invokeElementMethod(targetCell, 'click');
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
findCell(element) {
|
|
|
|
if (element) {
|
|
|
|
let cell = element;
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2023-06-02 06:52:13 +00:00
|
|
|
while (cell && !DomHandler.getAttribute(cell, 'data-p-cell-editing')) {
|
2022-09-06 12:03:37 +00:00
|
|
|
cell = cell.parentElement;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cell;
|
2022-09-14 11:26:01 +00:00
|
|
|
} else {
|
2022-09-06 12:03:37 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
findPreviousEditableColumn(cell) {
|
|
|
|
let prevCell = cell.previousElementSibling;
|
|
|
|
|
|
|
|
if (!prevCell) {
|
|
|
|
let previousRow = cell.parentElement.previousElementSibling;
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
if (previousRow) {
|
|
|
|
prevCell = previousRow.lastElementChild;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (prevCell) {
|
2023-06-02 06:52:13 +00:00
|
|
|
if (DomHandler.getAttribute(prevCell, 'data-p-editable-column')) return prevCell;
|
2022-09-14 11:26:01 +00:00
|
|
|
else return this.findPreviousEditableColumn(prevCell);
|
|
|
|
} else {
|
2022-09-06 12:03:37 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
findNextEditableColumn(cell) {
|
|
|
|
let nextCell = cell.nextElementSibling;
|
|
|
|
|
|
|
|
if (!nextCell) {
|
|
|
|
let nextRow = cell.parentElement.nextElementSibling;
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
if (nextRow) {
|
|
|
|
nextCell = nextRow.firstElementChild;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (nextCell) {
|
2023-06-02 06:52:13 +00:00
|
|
|
if (DomHandler.getAttribute(nextCell, 'data-p-editable-column')) return nextCell;
|
2022-09-14 11:26:01 +00:00
|
|
|
else return this.findNextEditableColumn(nextCell);
|
|
|
|
} else {
|
2022-09-06 12:03:37 +00:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
isEditingCellValid() {
|
2022-09-14 11:26:01 +00:00
|
|
|
return DomHandler.find(this.$el, '.p-invalid').length === 0;
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
onRowEditInit(event) {
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('row-edit-init', { originalEvent: event, data: this.rowData, newData: this.editingRowData, field: this.field, index: this.rowIndex });
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
onRowEditSave(event) {
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('row-edit-save', { originalEvent: event, data: this.rowData, newData: this.editingRowData, field: this.field, index: this.rowIndex });
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
onRowEditCancel(event) {
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('row-edit-cancel', { originalEvent: event, data: this.rowData, newData: this.editingRowData, field: this.field, index: this.rowIndex });
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
editorInitCallback(event) {
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('row-edit-init', { originalEvent: event, data: this.rowData, newData: this.editingRowData, field: this.field, index: this.rowIndex });
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
editorSaveCallback(event) {
|
|
|
|
if (this.editMode === 'row') {
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('row-edit-save', { originalEvent: event, data: this.rowData, newData: this.editingRowData, field: this.field, index: this.rowIndex });
|
2022-09-06 12:03:37 +00:00
|
|
|
} else {
|
|
|
|
this.completeEdit(event, 'enter');
|
|
|
|
}
|
|
|
|
},
|
|
|
|
editorCancelCallback(event) {
|
|
|
|
if (this.editMode === 'row') {
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('row-edit-cancel', { originalEvent: event, data: this.rowData, newData: this.editingRowData, field: this.field, index: this.rowIndex });
|
2022-09-06 12:03:37 +00:00
|
|
|
} else {
|
|
|
|
this.switchCellToViewMode();
|
2022-09-14 11:26:01 +00:00
|
|
|
this.$emit('cell-edit-cancel', { originalEvent: event, data: this.rowData, field: this.field, index: this.rowIndex });
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
updateStickyPosition() {
|
|
|
|
if (this.columnProp('frozen')) {
|
|
|
|
let align = this.columnProp('alignFrozen');
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
if (align === 'right') {
|
|
|
|
let right = 0;
|
|
|
|
let next = this.$el.nextElementSibling;
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
if (next) {
|
|
|
|
right = DomHandler.getOuterWidth(next) + parseFloat(next.style.right || 0);
|
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
this.styleObject.right = right + 'px';
|
2022-09-14 11:26:01 +00:00
|
|
|
} else {
|
2022-09-06 12:03:37 +00:00
|
|
|
let left = 0;
|
|
|
|
let prev = this.$el.previousElementSibling;
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
if (prev) {
|
|
|
|
left = DomHandler.getOuterWidth(prev) + parseFloat(prev.style.left || 0);
|
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
|
2022-09-06 12:03:37 +00:00
|
|
|
this.styleObject.left = left + 'px';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
getVirtualScrollerProp(option) {
|
|
|
|
return this.virtualScrollerContentProps ? this.virtualScrollerContentProps[option] : null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
editingRowData() {
|
|
|
|
return this.editingMeta[this.rowIndex] ? this.editingMeta[this.rowIndex].data : this.rowData;
|
|
|
|
},
|
|
|
|
field() {
|
|
|
|
return this.columnProp('field');
|
|
|
|
},
|
|
|
|
containerClass() {
|
2023-06-08 11:26:48 +00:00
|
|
|
return [this.columnProp('bodyClass'), this.columnProp('class'), this.cx('bodyCell')];
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
containerStyle() {
|
|
|
|
let bodyStyle = this.columnProp('bodyStyle');
|
|
|
|
let columnStyle = this.columnProp('style');
|
|
|
|
|
2022-09-14 11:26:01 +00:00
|
|
|
return this.columnProp('frozen') ? [columnStyle, bodyStyle, this.styleObject] : [columnStyle, bodyStyle];
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
loading() {
|
|
|
|
return this.getVirtualScrollerProp('loading');
|
|
|
|
},
|
|
|
|
loadingOptions() {
|
|
|
|
const getLoaderOptions = this.getVirtualScrollerProp('getLoaderOptions');
|
2022-09-14 11:26:01 +00:00
|
|
|
|
|
|
|
return (
|
|
|
|
getLoaderOptions &&
|
|
|
|
getLoaderOptions(this.rowIndex, {
|
|
|
|
cellIndex: this.index,
|
|
|
|
cellFirst: this.index === 0,
|
|
|
|
cellLast: this.index === this.getVirtualScrollerProp('columns').length - 1,
|
|
|
|
cellEven: this.index % 2 === 0,
|
|
|
|
cellOdd: this.index % 2 !== 0,
|
|
|
|
column: this.column,
|
|
|
|
field: this.field
|
|
|
|
})
|
|
|
|
);
|
2022-12-08 11:04:25 +00:00
|
|
|
},
|
|
|
|
expandButtonAriaLabel() {
|
|
|
|
return this.$primevue.config.locale.aria ? (this.isRowExpanded ? this.$primevue.config.locale.aria.expandRow : this.$primevue.config.locale.aria.collapseRow) : undefined;
|
|
|
|
},
|
|
|
|
initButtonAriaLabel() {
|
|
|
|
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.editRow : undefined;
|
|
|
|
},
|
|
|
|
saveButtonAriaLabel() {
|
|
|
|
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.saveEdit : undefined;
|
|
|
|
},
|
|
|
|
cancelButtonAriaLabel() {
|
|
|
|
return this.$primevue.config.locale.aria ? this.$primevue.config.locale.aria.cancelEdit : undefined;
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
components: {
|
2022-09-14 11:26:01 +00:00
|
|
|
DTRadioButton: RowRadioButton,
|
2023-04-13 14:42:33 +00:00
|
|
|
DTCheckbox: RowCheckbox,
|
|
|
|
ChevronDownIcon: ChevronDownIcon,
|
|
|
|
ChevronRightIcon: ChevronRightIcon,
|
|
|
|
BarsIcon: BarsIcon,
|
|
|
|
PencilIcon: PencilIcon,
|
|
|
|
CheckIcon: CheckIcon,
|
|
|
|
TimesIcon: TimesIcon
|
2022-09-06 12:03:37 +00:00
|
|
|
},
|
|
|
|
directives: {
|
2022-09-14 11:26:01 +00:00
|
|
|
ripple: Ripple
|
2022-09-06 12:03:37 +00:00
|
|
|
}
|
2022-09-14 11:26:01 +00:00
|
|
|
};
|
2022-09-06 12:03:37 +00:00
|
|
|
</script>
|