sync
This commit is contained in:
parent
9bf9e7da27
commit
8dafc1c5f4
@ -255,6 +255,7 @@ class CustomerCommunication {
|
|||||||
this.#followers.replaceChildren();
|
this.#followers.replaceChildren();
|
||||||
if (followers?.length > 0) {
|
if (followers?.length > 0) {
|
||||||
this.#container.querySelector('.follower-bar').style.display = '';
|
this.#container.querySelector('.follower-bar').style.display = '';
|
||||||
|
setTooltip(this.#buttonFollower, r('editFollower', 'Edit Followers'));
|
||||||
this.#container.querySelector('.follower-bar>.bar-list').appendChild(this.#buttonFollower);
|
this.#container.querySelector('.follower-bar>.bar-list').appendChild(this.#buttonFollower);
|
||||||
for (let f of followers) {
|
for (let f of followers) {
|
||||||
if (f.OptOut) {
|
if (f.OptOut) {
|
||||||
@ -297,6 +298,7 @@ class CustomerCommunication {
|
|||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.#container.querySelector('.follower-bar').style.display = 'none';
|
this.#container.querySelector('.follower-bar').style.display = 'none';
|
||||||
|
setTooltip(this.#buttonFollower, r('addFollowers', 'Add Followers'));
|
||||||
this.#container.querySelector('.button-edit-contacts').insertAdjacentElement('beforebegin', this.#buttonFollower)
|
this.#container.querySelector('.button-edit-contacts').insertAdjacentElement('beforebegin', this.#buttonFollower)
|
||||||
}
|
}
|
||||||
this.#message.scrollTop = this.#message.scrollHeight
|
this.#message.scrollTop = this.#message.scrollHeight
|
||||||
@ -491,7 +493,7 @@ class CustomerCommunication {
|
|||||||
}));
|
}));
|
||||||
button.addEventListener('click', () => {
|
button.addEventListener('click', () => {
|
||||||
const add = new Contact({
|
const add = new Contact({
|
||||||
company: !nullOrEmpty(this.#data.companyName),
|
company: !nullOrEmpty(this.#option.companyName),
|
||||||
onSave: item => {
|
onSave: item => {
|
||||||
const exists = this.#gridContact.source.some(s => s.Name === item.Name && s.MobilePhone === item.MobilePhone);
|
const exists = this.#gridContact.source.some(s => s.Name === item.Name && s.MobilePhone === item.MobilePhone);
|
||||||
if (exists) {
|
if (exists) {
|
||||||
@ -535,19 +537,20 @@ class CustomerCommunication {
|
|||||||
}),
|
}),
|
||||||
createElement('div', null,
|
createElement('div', null,
|
||||||
createElement('div', div => {
|
createElement('div', div => {
|
||||||
if (nullOrEmpty(this.#data.companyName)) {
|
if (nullOrEmpty(this.#option.companyName)) {
|
||||||
div.style.display = 'none';
|
div.style.display = 'none';
|
||||||
}
|
}
|
||||||
div.style.fontWeight = 'bold';
|
div.style.fontWeight = 'bold';
|
||||||
div.innerText = r('contactFromRecord', 'Contacts from Customer Record');
|
div.innerText = r('contactFromRecord', 'Contacts from Customer Record');
|
||||||
}),
|
}),
|
||||||
createElement('div', div => {
|
createElement('div', div => {
|
||||||
if (nullOrEmpty(this.#data.companyName)) {
|
if (nullOrEmpty(this.#option.companyName)) {
|
||||||
div.style.display = 'none';
|
div.style.display = 'none';
|
||||||
}
|
}
|
||||||
div.className = 'contacts-record';
|
div.className = 'contacts-record';
|
||||||
div.style.maxHeight = '400px';
|
div.style.maxHeight = '200px';
|
||||||
div.style.width = '660px';
|
div.style.width = '675px';
|
||||||
|
div.style.overflow = 'auto';
|
||||||
}),
|
}),
|
||||||
createElement('div', div => {
|
createElement('div', div => {
|
||||||
div.style.fontWeight = 'bold';
|
div.style.fontWeight = 'bold';
|
||||||
@ -556,7 +559,8 @@ class CustomerCommunication {
|
|||||||
createElement('div', div => {
|
createElement('div', div => {
|
||||||
div.className = 'contacts-wo';
|
div.className = 'contacts-wo';
|
||||||
div.style.maxHeight = '200px';
|
div.style.maxHeight = '200px';
|
||||||
div.style.width = '660px';
|
div.style.width = '675px';
|
||||||
|
div.style.overflow = 'auto';
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
@ -564,14 +568,15 @@ class CustomerCommunication {
|
|||||||
const selectedCol = This => {
|
const selectedCol = This => {
|
||||||
return {
|
return {
|
||||||
key: 'selected',
|
key: 'selected',
|
||||||
type: Grid.ColumnTypes.Checkbox,
|
type: TooltipCheckboxColumn,
|
||||||
width: 50,
|
width: 50,
|
||||||
enabled: item => !item.OptOut && !item.OptOut_BC,
|
enabled: item => !item.OptOut && !item.OptOut_BC,
|
||||||
onchanged: function () {
|
onchanged: function () {
|
||||||
if (typeof option.onChanged === 'function') {
|
if (typeof option.onChanged === 'function') {
|
||||||
option.onChanged([...This.#gridContact.source, ...This.#gridWo.source]);
|
option.onChanged([...This.#gridContact.source, ...This.#gridWo.source]);
|
||||||
}
|
}
|
||||||
}
|
},
|
||||||
|
tooltip: item => item.OptOut ? r('optedOut', 'Opted Out') : r('optedIn', 'Opted In')
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
const iconCol = {
|
const iconCol = {
|
||||||
@ -606,7 +611,7 @@ class CustomerCommunication {
|
|||||||
onclick: function () {
|
onclick: function () {
|
||||||
const edit = new Contact({
|
const edit = new Contact({
|
||||||
contact: this,
|
contact: this,
|
||||||
company: !nullOrEmpty(This.#data.companyName),
|
company: !nullOrEmpty(This.#option.companyName),
|
||||||
onSave: (item, _op) => {
|
onSave: (item, _op) => {
|
||||||
const exists =
|
const exists =
|
||||||
This.#gridContact.source.some(s => s !== this && s.Name === item.Name && s.MobilePhone === item.MobilePhone) ||
|
This.#gridContact.source.some(s => s !== this && s.Name === item.Name && s.MobilePhone === item.MobilePhone) ||
|
||||||
@ -871,7 +876,7 @@ class CustomerCommunication {
|
|||||||
createElement('div', div => {
|
createElement('div', div => {
|
||||||
div.className = 'followers-record';
|
div.className = 'followers-record';
|
||||||
div.style.maxHeight = '400px';
|
div.style.maxHeight = '400px';
|
||||||
div.style.width = '660px';
|
div.style.width = '675px';
|
||||||
div.style.overflow = 'auto';
|
div.style.overflow = 'auto';
|
||||||
})
|
})
|
||||||
)
|
)
|
||||||
|
@ -196,11 +196,14 @@
|
|||||||
|
|
||||||
> textarea {
|
> textarea {
|
||||||
padding: 10px 10px 0;
|
padding: 10px 10px 0;
|
||||||
border: none;
|
border: 1px solid var(--title-bg-color);
|
||||||
|
border-radius: 5px;
|
||||||
height: 70px;
|
height: 70px;
|
||||||
resize: none;
|
resize: none;
|
||||||
font-size: var(--font-smaller-size);
|
font-size: var(--font-smaller-size);
|
||||||
font-family: var(--font-family);
|
font-family: var(--font-family);
|
||||||
|
margin: 3px 5px;
|
||||||
|
background: #f0f0f0;
|
||||||
|
|
||||||
@include outline();
|
@include outline();
|
||||||
}
|
}
|
||||||
|
@ -1,9 +1,9 @@
|
|||||||
import { global } from "../../utility";
|
import { global } from "../../utility";
|
||||||
import { nullOrEmpty } from "../../utility/strings";
|
// import { nullOrEmpty } from "../../utility/strings";
|
||||||
import { createElement } from "../../functions";
|
import { createElement } from "../../functions";
|
||||||
import { createIcon } from "../icon";
|
import { createIcon } from "../icon";
|
||||||
import { createCheckbox } from "../checkbox";
|
import { createCheckbox } from "../checkbox";
|
||||||
import { setTooltip } from "../tooltip";
|
// import { setTooltip } from "../tooltip";
|
||||||
import Dropdown from "../dropdown";
|
import Dropdown from "../dropdown";
|
||||||
|
|
||||||
class GridColumn {
|
class GridColumn {
|
||||||
@ -20,6 +20,13 @@ class GridColumn {
|
|||||||
element.style.setProperty(css[0], css[1]);
|
element.style.setProperty(css[0], css[1]);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static setEnabled(element, enabled) {
|
||||||
|
const tooltip = element.querySelector('.ui-tooltip-wrapper');
|
||||||
|
if (tooltip != null) {
|
||||||
|
tooltip.style.display = enabled === false ? 'none' : '';
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class GridInputColumn extends GridColumn {
|
class GridInputColumn extends GridColumn {
|
||||||
@ -54,6 +61,7 @@ class GridInputColumn extends GridColumn {
|
|||||||
static getValue(e) { return e.target.value }
|
static getValue(e) { return e.target.value }
|
||||||
|
|
||||||
static setEnabled(element, enabled) {
|
static setEnabled(element, enabled) {
|
||||||
|
super.setEnabled(element , enabled);
|
||||||
element.disabled = enabled === false;
|
element.disabled = enabled === false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -162,6 +170,7 @@ class GridDropdownColumn extends GridColumn {
|
|||||||
}
|
}
|
||||||
|
|
||||||
static setEnabled(element, enabled) {
|
static setEnabled(element, enabled) {
|
||||||
|
super.setEnabled(element , enabled);
|
||||||
const drop = this.#getDrop(element);
|
const drop = this.#getDrop(element);
|
||||||
if (drop == null) {
|
if (drop == null) {
|
||||||
return;
|
return;
|
||||||
@ -185,6 +194,7 @@ class GridCheckboxColumn extends GridColumn {
|
|||||||
static getValue(e) { return e.target.checked }
|
static getValue(e) { return e.target.checked }
|
||||||
|
|
||||||
static setEnabled(element, enabled) {
|
static setEnabled(element, enabled) {
|
||||||
|
super.setEnabled(element , enabled);
|
||||||
element.querySelector('input').disabled = enabled === false;
|
element.querySelector('input').disabled = enabled === false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -211,22 +221,19 @@ class GridIconColumn extends GridColumn {
|
|||||||
const icon = createIcon(type, val);
|
const icon = createIcon(type, val);
|
||||||
// const layer = element.children[0];
|
// const layer = element.children[0];
|
||||||
element.replaceChildren(icon);
|
element.replaceChildren(icon);
|
||||||
!nullOrEmpty(col.tooltip) && setTooltip(element, col.tooltip, false, grid.element);
|
// !nullOrEmpty(col.tooltip) && setTooltip(element, col.tooltip, false, grid.element);
|
||||||
element.dataset.type = type;
|
element.dataset.type = type;
|
||||||
element.dataset.icon = val;
|
element.dataset.icon = val;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static setEnabled(element, enabled) {
|
static setEnabled(element, enabled) {
|
||||||
|
super.setEnabled(element , enabled);
|
||||||
if (enabled === false) {
|
if (enabled === false) {
|
||||||
element.classList.add('disabled');
|
element.classList.add('disabled');
|
||||||
} else {
|
} else {
|
||||||
element.classList.remove('disabled');
|
element.classList.remove('disabled');
|
||||||
}
|
}
|
||||||
const tooltip = element.querySelector('.ui-tooltip-wrapper');
|
|
||||||
if (tooltip != null) {
|
|
||||||
tooltip.style.display = enabled === false ? 'none' : '';
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -225,7 +225,7 @@
|
|||||||
enabled: 'enabled'
|
enabled: 'enabled'
|
||||||
},
|
},
|
||||||
{ key: 'c2c', caption: '多行编辑', type: Grid.ColumnTypes.Text, enabled: 'enabled' },
|
{ key: 'c2c', caption: '多行编辑', type: Grid.ColumnTypes.Text, enabled: 'enabled' },
|
||||||
{ key: 'c3', caption: 'column 3', width: 90 },
|
{ key: 'c3', caption: 'column 3', width: 90, align: 'right' },
|
||||||
{ key: 'c4', caption: 'Note', type: Grid.ColumnTypes.Input },
|
{ key: 'c4', caption: 'Note', type: Grid.ColumnTypes.Input },
|
||||||
{
|
{
|
||||||
key: 'c5',
|
key: 'c5',
|
||||||
|
@ -1,9 +1,11 @@
|
|||||||
import '../css/grid.scss';
|
import '../css/grid.scss';
|
||||||
import { global, isPositive, isMobile, throttle, truncate } from "../../utility";
|
import { global, isPositive, isMobile, throttle, truncate } from "../../utility";
|
||||||
import { r } from "../../utility/lgres";
|
import { r } from "../../utility/lgres";
|
||||||
|
import { nullOrEmpty } from "../../utility/strings";
|
||||||
import { createElement } from "../../functions";
|
import { createElement } from "../../functions";
|
||||||
import { createIcon } from "../icon";
|
import { createIcon } from "../icon";
|
||||||
import { createCheckbox } from "../checkbox";
|
import { createCheckbox } from "../checkbox";
|
||||||
|
import { setTooltip } from "../tooltip";
|
||||||
import { GridColumn, GridInputColumn, GridTextColumn, GridDropdownColumn, GridCheckboxColumn, GridIconColumn } from "./column";
|
import { GridColumn, GridInputColumn, GridTextColumn, GridDropdownColumn, GridCheckboxColumn, GridIconColumn } from "./column";
|
||||||
|
|
||||||
const ColumnChangedType = {
|
const ColumnChangedType = {
|
||||||
@ -223,7 +225,7 @@ class Grid {
|
|||||||
this.#parent = container;
|
this.#parent = container;
|
||||||
const grid = createElement('div', 'ui-grid');
|
const grid = createElement('div', 'ui-grid');
|
||||||
grid.setAttribute('tabindex', 0);
|
grid.setAttribute('tabindex', 0);
|
||||||
const onKeydown = e => {
|
grid.addEventListener('keydown', e => {
|
||||||
let index = this.selectedIndex;
|
let index = this.selectedIndex;
|
||||||
let flag = false;
|
let flag = false;
|
||||||
if (e.key === 'ArrowUp') {
|
if (e.key === 'ArrowUp') {
|
||||||
@ -249,8 +251,7 @@ class Grid {
|
|||||||
}
|
}
|
||||||
e.stopPropagation();
|
e.stopPropagation();
|
||||||
}
|
}
|
||||||
};
|
});
|
||||||
grid.addEventListener('keydown', e => throttle(onKeydown, 800, this, e));
|
|
||||||
container.replaceChildren(grid);
|
container.replaceChildren(grid);
|
||||||
const sizer = createElement('span', 'ui-grid-sizer');
|
const sizer = createElement('span', 'ui-grid-sizer');
|
||||||
grid.appendChild(sizer);
|
grid.appendChild(sizer);
|
||||||
@ -296,7 +297,7 @@ class Grid {
|
|||||||
|
|
||||||
let height = this.height;
|
let height = this.height;
|
||||||
if (height === 0) {
|
if (height === 0) {
|
||||||
height = this.#containerHeight ??= this.containerHeight;
|
height = this.#containerHeight;
|
||||||
} else if (isNaN(height) || height < 0) {
|
} else if (isNaN(height) || height < 0) {
|
||||||
height = this.#el.offsetHeight - top;
|
height = this.#el.offsetHeight - top;
|
||||||
}
|
}
|
||||||
@ -308,21 +309,17 @@ class Grid {
|
|||||||
this.#bodyClientWidth = body.clientWidth;
|
this.#bodyClientWidth = body.clientWidth;
|
||||||
}
|
}
|
||||||
|
|
||||||
get containerHeight() {
|
reload() {
|
||||||
let length = this.#currentSource.length;
|
let length = this.#currentSource.length;
|
||||||
if (this.extraRows > 0) {
|
if (this.extraRows > 0) {
|
||||||
length += this.extraRows;
|
length += this.extraRows;
|
||||||
}
|
}
|
||||||
return length * (this.rowHeight + 1);
|
this.#containerHeight = length * (this.rowHeight + 1);
|
||||||
}
|
|
||||||
|
|
||||||
reload() {
|
|
||||||
this.#containerHeight = this.containerHeight;
|
|
||||||
this.#refs.body.scrollTop = 0;
|
this.#refs.body.scrollTop = 0;
|
||||||
this.#refs.body.scrollLeft = 0;
|
this.#refs.body.scrollLeft = 0;
|
||||||
this.#refs.bodyContent.style.top = '0px';
|
this.#refs.bodyContent.style.top = '0px';
|
||||||
this.#refs.bodyContainer.style.height = `${this.#containerHeight}px`;
|
this.#refs.bodyContainer.style.height = `${this.#containerHeight}px`;
|
||||||
// this.#adjustRows(this.#refs.bodyContent);
|
this.#adjustRows(this.#refs.bodyContent);
|
||||||
this.refresh();
|
this.refresh();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -330,8 +327,9 @@ class Grid {
|
|||||||
if (this.#refs.bodyContent == null) {
|
if (this.#refs.bodyContent == null) {
|
||||||
throw new Error('body has not been created.');
|
throw new Error('body has not been created.');
|
||||||
}
|
}
|
||||||
|
const rows = this.#refs.bodyContent.children;
|
||||||
const widths = {};
|
const widths = {};
|
||||||
this.#fillRows(widths);
|
this.#fillRows(rows, this.columns, widths);
|
||||||
if (this.#needResize && widths.flag) {
|
if (this.#needResize && widths.flag) {
|
||||||
this.#needResize = false;
|
this.#needResize = false;
|
||||||
this.columns.forEach((col, i) => {
|
this.columns.forEach((col, i) => {
|
||||||
@ -586,45 +584,24 @@ class Grid {
|
|||||||
return body;
|
return body;
|
||||||
}
|
}
|
||||||
|
|
||||||
#fillRows(widths) {
|
#adjustRows() {
|
||||||
let count = this.#rowCount;
|
let count = this.#rowCount;
|
||||||
if (isNaN(count) || count < 0 || !this.virtual) {
|
if (isNaN(count) || count < 0 || !this.virtual) {
|
||||||
count = this.#currentSource.length;
|
count = this.#currentSource.length;
|
||||||
}
|
}
|
||||||
const content = this.#refs.bodyContent;
|
|
||||||
// content.replaceChildren();
|
|
||||||
const cols = this.columns;
|
const cols = this.columns;
|
||||||
const vtable = this.#vtable;
|
const content = this.#refs.bodyContent;
|
||||||
const vnew = [];
|
const exists = content.children.length;
|
||||||
const startIndex = this.#startIndex;
|
count -= exists;
|
||||||
// reuse
|
if (count > 0) {
|
||||||
for (let i = 0; i < count; i++) {
|
for (let i = 0; i < count; i += 1) {
|
||||||
const index = startIndex + i;
|
|
||||||
const e = vtable.findIndex(v => v.index === index);
|
|
||||||
if (e >= 0) {
|
|
||||||
vnew[i] = vtable.splice(e, 1)[0];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
// move or create
|
|
||||||
for (let i = 0; i < count; i++) {
|
|
||||||
if (vnew[i] != null) {
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
const index = startIndex + i;
|
|
||||||
const e = vtable.splice(0, 1);
|
|
||||||
let vdom;
|
|
||||||
if (e.length > 0) {
|
|
||||||
vdom = {
|
|
||||||
...e[0],
|
|
||||||
index,
|
|
||||||
mode: 'move'
|
|
||||||
};
|
|
||||||
vdom.el.remove();
|
|
||||||
} else {
|
|
||||||
const row = createElement('tr', 'ui-grid-row');
|
const row = createElement('tr', 'ui-grid-row');
|
||||||
|
// row.addEventListener('mousedown', e => this.#onRowClicked(e, exists + i));
|
||||||
|
// row.addEventListener('dblclick', e => this.#onRowDblClicked(e));
|
||||||
cols.forEach((col, j) => {
|
cols.forEach((col, j) => {
|
||||||
const cell = createElement('td');
|
const cell = createElement('td');
|
||||||
if (col.visible !== false) {
|
if (col.visible !== false) {
|
||||||
|
cell.dataset.row = String(exists + i);
|
||||||
cell.dataset.col = String(j);
|
cell.dataset.col = String(j);
|
||||||
const style = this.#get(col.key, 'style');
|
const style = this.#get(col.key, 'style');
|
||||||
if (style != null) {
|
if (style != null) {
|
||||||
@ -638,7 +615,7 @@ class Grid {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
if (Grid.ColumnTypes.isCheckbox(col.type)) {
|
if (Grid.ColumnTypes.isCheckbox(col.type)) {
|
||||||
cell.appendChild(GridCheckboxColumn.createEdit(e => this.#onRowChanged(e, index, col, e.target.checked)));
|
cell.appendChild(GridCheckboxColumn.createEdit(e => this.#onRowChanged(e, exists + i, col, e.target.checked, cell)));
|
||||||
// this.#colTypes[col.key] = GridCheckboxColumn;
|
// this.#colTypes[col.key] = GridCheckboxColumn;
|
||||||
} else {
|
} else {
|
||||||
let type = this.#colTypes[col.key];
|
let type = this.#colTypes[col.key];
|
||||||
@ -659,30 +636,29 @@ class Grid {
|
|||||||
row.appendChild(cell);
|
row.appendChild(cell);
|
||||||
});
|
});
|
||||||
row.appendChild(createElement('td'));
|
row.appendChild(createElement('td'));
|
||||||
vdom = {
|
content.appendChild(row);
|
||||||
index,
|
}
|
||||||
mode: 'create',
|
} else if (count < 0) {
|
||||||
el: row
|
for (let i = -1; i >= count; i -= 1) {
|
||||||
};
|
// content.removeChild(content.children[exists + i]);
|
||||||
|
content.children[exists + i].remove();
|
||||||
}
|
}
|
||||||
vnew[i] = vdom;
|
|
||||||
}
|
}
|
||||||
this.#vtable = vnew;
|
}
|
||||||
|
|
||||||
|
#fillRows(rows, cols, widths) {
|
||||||
|
const startIndex = this.#startIndex;
|
||||||
const selectedIndexes = this.#selectedIndexes;
|
const selectedIndexes = this.#selectedIndexes;
|
||||||
vnew.filter(vdom => vdom.mode != null).forEach(vdom => {
|
[...rows].forEach((row, i) => {
|
||||||
const row = vdom.el;
|
const vals = this.#currentSource[startIndex + i];
|
||||||
const index = vdom.index;
|
|
||||||
const vals = this.#currentSource[index];
|
|
||||||
if (vals == null) {
|
if (vals == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (!isPositive(row.children.length)) {
|
if (!isPositive(row.children.length)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
// row.dataset.row = String(index);
|
|
||||||
const item = vals.values;
|
const item = vals.values;
|
||||||
const selected = selectedIndexes.indexOf(index) >= 0;
|
const selected = selectedIndexes.indexOf(startIndex + i) >= 0;
|
||||||
if (selected) {
|
if (selected) {
|
||||||
row.classList.add('selected');
|
row.classList.add('selected');
|
||||||
} else if (row.classList.contains('selected')) {
|
} else if (row.classList.contains('selected')) {
|
||||||
@ -713,7 +689,6 @@ class Grid {
|
|||||||
val ??= '';
|
val ??= '';
|
||||||
// fill
|
// fill
|
||||||
const cell = row.children[j];
|
const cell = row.children[j];
|
||||||
cell.dataset.row = String(index);
|
|
||||||
if (typeof col.bgFilter === 'function') {
|
if (typeof col.bgFilter === 'function') {
|
||||||
const bgColor = col.bgFilter(item);
|
const bgColor = col.bgFilter(item);
|
||||||
cell.style.backgroundColor = bgColor ?? '';
|
cell.style.backgroundColor = bgColor ?? '';
|
||||||
@ -724,10 +699,10 @@ class Grid {
|
|||||||
if (!isCheckbox && selectChanged && typeof type.createEdit === 'function') {
|
if (!isCheckbox && selectChanged && typeof type.createEdit === 'function') {
|
||||||
if (vals.__editing?.[col.key] && type.editing) {
|
if (vals.__editing?.[col.key] && type.editing) {
|
||||||
val = type.getValue({ target: cell.children[0] });
|
val = type.getValue({ target: cell.children[0] });
|
||||||
this.#onRowChanged(null, index, col, val, true);
|
this.#onRowChanged(null, startIndex + i, col, val, cell, true);
|
||||||
}
|
}
|
||||||
element = selected ?
|
element = selected ?
|
||||||
type.createEdit(e => this.#onRowChanged(e, index, col, type.getValue(e)), col, this.#refs.bodyContent, vals) :
|
type.createEdit(e => this.#onRowChanged(e, startIndex + i, col, type.getValue(e), cell), col, this.#refs.bodyContent, vals) :
|
||||||
type.create(col);
|
type.create(col);
|
||||||
cell.replaceChildren(element);
|
cell.replaceChildren(element);
|
||||||
} else {
|
} else {
|
||||||
@ -745,6 +720,15 @@ class Grid {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
type.setValue(element, val, item, col, this);
|
type.setValue(element, val, item, col, this);
|
||||||
|
let tip = col.tooltip;
|
||||||
|
if (typeof tip === 'function') {
|
||||||
|
tip = tip.call(col, item);
|
||||||
|
}
|
||||||
|
if (nullOrEmpty(tip)) {
|
||||||
|
element.querySelector('.ui-tooltip-wrapper')?.remove();
|
||||||
|
} else {
|
||||||
|
setTooltip(element, tip, false, this.element);
|
||||||
|
}
|
||||||
if (typeof type.setEnabled === 'function') {
|
if (typeof type.setEnabled === 'function') {
|
||||||
type.setEnabled(element, enabled);
|
type.setEnabled(element, enabled);
|
||||||
}
|
}
|
||||||
@ -781,8 +765,6 @@ class Grid {
|
|||||||
delete vals.__editing;
|
delete vals.__editing;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
content.replaceChildren(...vnew.map(vdom => vdom.el));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#changeColumnWidth(index, width) {
|
#changeColumnWidth(index, width) {
|
||||||
@ -1532,11 +1514,11 @@ class Grid {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#onRowChanged(_e, index, col, value, blur) {
|
#onRowChanged(_e, index, col, value, cell, blur) {
|
||||||
if (this.#currentSource == null) {
|
if (this.#currentSource == null) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
const row = this.#currentSource[index];
|
const row = this.#currentSource[this.#startIndex + index];
|
||||||
const item = row.values;
|
const item = row.values;
|
||||||
if (item == null) {
|
if (item == null) {
|
||||||
return;
|
return;
|
||||||
@ -1549,6 +1531,15 @@ class Grid {
|
|||||||
}
|
}
|
||||||
if (enabled !== false) {
|
if (enabled !== false) {
|
||||||
item[col.key] = value;
|
item[col.key] = value;
|
||||||
|
let tip = col.tooltip;
|
||||||
|
if (typeof tip === 'function') {
|
||||||
|
tip = tip.call(col, item);
|
||||||
|
}
|
||||||
|
if (nullOrEmpty(tip)) {
|
||||||
|
cell.querySelector('.ui-tooltip-wrapper')?.remove();
|
||||||
|
} else {
|
||||||
|
setTooltip(cell.children[0], tip, false, this.element);
|
||||||
|
}
|
||||||
row.__changed = true;
|
row.__changed = true;
|
||||||
if (blur) {
|
if (blur) {
|
||||||
if (typeof col.oneditend === 'function') {
|
if (typeof col.oneditend === 'function') {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user