leave edit event
This commit is contained in:
parent
27b2f1052f
commit
09e62c4304
8
lib/ui/dropdown.d.ts
vendored
8
lib/ui/dropdown.d.ts
vendored
@ -37,9 +37,11 @@ export class Dropdown {
|
|||||||
set disabled(flag: boolean);
|
set disabled(flag: boolean);
|
||||||
get source(): Array<DropdownItem | any>;
|
get source(): Array<DropdownItem | any>;
|
||||||
set source(list: Array<DropdownItem | any>);
|
set source(list: Array<DropdownItem | any>);
|
||||||
readonly multiselect: boolean;
|
|
||||||
readonly selected: DropdownItem | any;
|
get multiselect(): boolean;
|
||||||
readonly selectedlist: Array<DropdownItem | any>;
|
get selected(): DropdownItem | any;
|
||||||
|
get selectedlist(): Array<DropdownItem | any>;
|
||||||
|
|
||||||
create(): HTMLElement;
|
create(): HTMLElement;
|
||||||
select(selected: string, silence?: boolean): void;
|
select(selected: string, silence?: boolean): void;
|
||||||
selectlist(selectedlist: Array<string>, silence?: boolean): void;
|
selectlist(selectedlist: Array<string>, silence?: boolean): void;
|
||||||
|
@ -20,18 +20,20 @@ if (dropdownGlobal == null) {
|
|||||||
configurable: false,
|
configurable: false,
|
||||||
enumerable: false,
|
enumerable: false,
|
||||||
value: function () {
|
value: function () {
|
||||||
const panel = document.querySelector('.ui-drop-box.active');
|
const panels = document.querySelectorAll('.ui-drop-box.active');
|
||||||
if (panel == null) {
|
for (let panel of [...panels]) {
|
||||||
return;
|
if (panel == null) {
|
||||||
}
|
continue;
|
||||||
panel.classList.remove('active');
|
}
|
||||||
const dropId = panel.parentElement.dataset.dropId;
|
panel.classList.remove('active');
|
||||||
if (dropId == null) {
|
const dropId = panel.parentElement.dataset.dropId;
|
||||||
return;
|
if (dropId == null) {
|
||||||
}
|
continue;
|
||||||
const dropdown = this[dropId];
|
}
|
||||||
if (dropdown?.multiselect && typeof dropdown.oncollapsed === 'function') {
|
const dropdown = this[dropId];
|
||||||
dropdown.oncollapsed();
|
if (dropdown?.multiselect && typeof dropdown.oncollapsed === 'function') {
|
||||||
|
dropdown.oncollapsed();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
})
|
})
|
||||||
|
12
lib/ui/grid/column.d.ts
vendored
12
lib/ui/grid/column.d.ts
vendored
@ -50,14 +50,20 @@ export class GridColumn {
|
|||||||
static setEnabled(element: HTMLElement, enabled?: boolean): void;
|
static setEnabled(element: HTMLElement, enabled?: boolean): void;
|
||||||
}
|
}
|
||||||
|
|
||||||
export class GridInputColumn extends GridColumn { }
|
export class GridInputColumn extends GridColumn {
|
||||||
|
static get editing(): boolean;
|
||||||
|
}
|
||||||
|
|
||||||
export class GridTextColumn extends GridInputColumn { }
|
export class GridTextColumn extends GridInputColumn { }
|
||||||
|
|
||||||
export class GridDropdownColumn extends GridColumn { }
|
export class GridDropdownColumn extends GridColumn {
|
||||||
|
static leaveEdit(element: HTMLElement, container: HTMLElement): void;
|
||||||
|
}
|
||||||
|
|
||||||
export class GridCheckboxColumn extends GridColumn { }
|
export class GridCheckboxColumn extends GridColumn { }
|
||||||
|
|
||||||
export class GridIconColumn extends GridColumn { }
|
export class GridIconColumn extends GridColumn { }
|
||||||
|
|
||||||
export class GridDateColumn extends GridColumn { }
|
export class GridDateColumn extends GridColumn {
|
||||||
|
static formatDate(date: Date): string;
|
||||||
|
}
|
@ -111,9 +111,18 @@ export class GridDropdownColumn extends GridColumn {
|
|||||||
wrapper
|
wrapper
|
||||||
});
|
});
|
||||||
drop.onselected = trigger;
|
drop.onselected = trigger;
|
||||||
if (typeof col.onDropExpanded === 'function') {
|
drop.onexpanded = function () {
|
||||||
drop.onexpanded = col.onDropExpanded.bind(col, it.values, drop);
|
if (it.__editing == null) {
|
||||||
}
|
it.__editing = {
|
||||||
|
[col.key]: true
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
it.__editing[col.key] = true;
|
||||||
|
}
|
||||||
|
if (typeof col.onDropExpanded === 'function') {
|
||||||
|
col.onDropExpanded.call(col, it.values, drop);
|
||||||
|
}
|
||||||
|
};
|
||||||
return drop.create();
|
return drop.create();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -201,6 +210,21 @@ export class GridDropdownColumn extends GridColumn {
|
|||||||
}
|
}
|
||||||
drop.disabled = enabled === false;
|
drop.disabled = enabled === false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static leaveEdit(element, wrapper) {
|
||||||
|
wrapper.querySelectorAll('.ui-drop-box.active').forEach(e => {
|
||||||
|
if (e != null) {
|
||||||
|
e.classList.remove('active');
|
||||||
|
}
|
||||||
|
});
|
||||||
|
const drop = this._getDrop(element);
|
||||||
|
if (drop == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (drop?.multiselect && typeof drop.oncollapsed === 'function') {
|
||||||
|
drop.oncollapsed();
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
export class GridCheckboxColumn extends GridColumn {
|
export class GridCheckboxColumn extends GridColumn {
|
||||||
|
@ -359,6 +359,24 @@ export class Grid {
|
|||||||
}
|
}
|
||||||
|
|
||||||
reload(keep) {
|
reload(keep) {
|
||||||
|
const filtered = this.columns.some(c => c.filterValues != null);
|
||||||
|
if ((filtered ^ this._var.colAttrs.__filtered) === 1) {
|
||||||
|
this._var.colAttrs.__filtered = filtered;
|
||||||
|
const headers = this._var.refs.header.children;
|
||||||
|
for (let i = 0; i < this.columns.length; ++i) {
|
||||||
|
const ele = headers[i].querySelector('.filter');
|
||||||
|
if (ele == null) {
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
if (this.columns[i].filterValues != null) {
|
||||||
|
ele.classList.add('active');
|
||||||
|
} else {
|
||||||
|
ele.classList.remove('active');
|
||||||
|
}
|
||||||
|
}
|
||||||
|
this._refreshSource();
|
||||||
|
return;
|
||||||
|
}
|
||||||
let length = this._var.currentSource.length;
|
let length = this._var.currentSource.length;
|
||||||
if (this.extraRows > 0) {
|
if (this.extraRows > 0) {
|
||||||
length += this.extraRows;
|
length += this.extraRows;
|
||||||
@ -699,12 +717,6 @@ export class Grid {
|
|||||||
row.classList.remove('selected');
|
row.classList.remove('selected');
|
||||||
}
|
}
|
||||||
// data
|
// data
|
||||||
// const selectChanged = vals.__selected ^ selected;
|
|
||||||
// if (selected) {
|
|
||||||
// vals.__selected = true;
|
|
||||||
// } else {
|
|
||||||
// delete vals.__selected;
|
|
||||||
// }
|
|
||||||
cols.forEach((col, j) => {
|
cols.forEach((col, j) => {
|
||||||
if (col.visible === false) {
|
if (col.visible === false) {
|
||||||
return;
|
return;
|
||||||
@ -734,9 +746,14 @@ export class Grid {
|
|||||||
const type = isCheckbox ? GridCheckboxColumn : this._var.colTypes[col.key] ?? GridColumn;
|
const type = isCheckbox ? GridCheckboxColumn : this._var.colTypes[col.key] ?? GridColumn;
|
||||||
let element;
|
let element;
|
||||||
if (!isCheckbox && typeof type.createEdit === 'function') {
|
if (!isCheckbox && typeof type.createEdit === 'function') {
|
||||||
if (vals.__editing?.[col.key] && type.editing) {
|
if (vals.__editing?.[col.key]) {
|
||||||
val = type.getValue({ target: cell.children[0] }, col);
|
if (typeof type.leaveEdit === 'function') {
|
||||||
this._onRowChanged(null, startIndex + i, col, val, cell, true);
|
type.leaveEdit(cell.children[0], this._var.el);
|
||||||
|
}
|
||||||
|
if (type.editing) {
|
||||||
|
val = type.getValue({ target: cell.children[0] }, col);
|
||||||
|
this._onRowChanged(null, startIndex + i, col, val, cell, true);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
element = selected ?
|
element = selected ?
|
||||||
type.createEdit(e => this._onRowChanged(e, startIndex + i, col, type.getValue(e, col), cell), col, this._var.el, vals) :
|
type.createEdit(e => this._onRowChanged(e, startIndex + i, col, type.getValue(e, col), cell), col, this._var.el, vals) :
|
||||||
@ -1184,7 +1201,7 @@ export class Grid {
|
|||||||
reset.innerText = this.langs.reset;
|
reset.innerText = this.langs.reset;
|
||||||
reset.addEventListener('click', () => {
|
reset.addEventListener('click', () => {
|
||||||
delete col.filterValues;
|
delete col.filterValues;
|
||||||
this._var.colAttrs.__filtered = this.columns.some(c => col.filterValues != null)
|
this._var.colAttrs.__filtered = this.columns.some(c => c.filterValues != null)
|
||||||
this._refreshSource();
|
this._refreshSource();
|
||||||
if (typeof col.onFiltered === 'function') {
|
if (typeof col.onFiltered === 'function') {
|
||||||
col.onFiltered.call(this, col);
|
col.onFiltered.call(this, col);
|
||||||
|
@ -23,6 +23,7 @@ const libraries = [
|
|||||||
}
|
}
|
||||||
},
|
},
|
||||||
sourcemap: true,
|
sourcemap: true,
|
||||||
|
outDir: '../../../../IronIntel/Contractor2.0/Contractor/Site/js/lib',
|
||||||
emptyOutDir: false
|
emptyOutDir: false
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
Loading…
x
Reference in New Issue
Block a user