Added a changed flag to chip list and the component now fires a change event if there were any changes to the component.
This commit is contained in:
parent
4c8085ec00
commit
f54f7f3f05
30
chip-list.js
30
chip-list.js
@ -78,7 +78,8 @@ class ChipList extends IgniteElement {
|
||||
documentListener: null,
|
||||
freeForm: true,
|
||||
chipBackground: null,
|
||||
chipColor: null
|
||||
chipColor: null,
|
||||
changed: false,
|
||||
};
|
||||
}
|
||||
|
||||
@ -100,7 +101,11 @@ class ChipList extends IgniteElement {
|
||||
.id(item.id)
|
||||
.property("color", item.chipColor ? item.chipColor : this.chipColor)
|
||||
.property("background", item.chipBackground ? item.chipBackground : this.chipBackground)
|
||||
.property("onDelete", () => { this.items = this.items.filter(needle => needle != item); })
|
||||
.property("onDelete", () =>
|
||||
{
|
||||
this.items = this.items.filter(needle => needle != item);
|
||||
this.changed = true; //Make sure changed flag was set.
|
||||
})
|
||||
.child(item.content);
|
||||
}),
|
||||
new div()
|
||||
@ -124,13 +129,19 @@ class ChipList extends IgniteElement {
|
||||
this.items.push({ content: this.input.textContent.trim() });
|
||||
this.input.innerHTML = "";
|
||||
this.searching = false; //Reset searching since we just added a item.
|
||||
this.changed = true; //Make sure changed flag was set.
|
||||
}
|
||||
})
|
||||
.onBackspace((e) => {
|
||||
//If the backspace key is pressed and there is no content, try to remove the last item from the list.
|
||||
if (this.input.textContent.length == 0 || (this.input.textContent.length == 1 && this.input.textContent[0] == " ")) {
|
||||
e.preventDefault();
|
||||
this.items.pop();
|
||||
|
||||
if (this.items) {
|
||||
this.items.pop();
|
||||
this.changed = true; //Make sure changed flag was set.
|
||||
}
|
||||
|
||||
this.searching = false;
|
||||
}
|
||||
})
|
||||
@ -150,6 +161,12 @@ class ChipList extends IgniteElement {
|
||||
|
||||
if (this.stopEditingOnBlur) {
|
||||
this.editing = false;
|
||||
|
||||
//Fire a change event if there was a change.
|
||||
if (this.changed) {
|
||||
this.changed = false;
|
||||
this.dispatchEvent(new Event("change"));
|
||||
}
|
||||
}
|
||||
|
||||
this.input.innerHTML = "";
|
||||
@ -215,6 +232,12 @@ class ChipList extends IgniteElement {
|
||||
if (e.target != this && !this.contains(e.target)) {
|
||||
if (this.stopEditingOnBlur) {
|
||||
this.editing = false;
|
||||
|
||||
//Fire a change event if there was a change.
|
||||
if (this.changed) {
|
||||
this.changed = false;
|
||||
this.dispatchEvent(new Event("change"));
|
||||
}
|
||||
}
|
||||
this.searching = false;
|
||||
this.input.blur();
|
||||
@ -228,6 +251,7 @@ class ChipList extends IgniteElement {
|
||||
this.items = [];
|
||||
}
|
||||
|
||||
this.changed = true; //Make sure changed flag is set.
|
||||
this.items.push(item);
|
||||
this.searching = false;
|
||||
this.input.innerHTML = "";
|
||||
|
Loading…
x
Reference in New Issue
Block a user