Placeholder now uses new dual property converter.
This commit is contained in:
parent
81acb1f000
commit
e617d3596a
10
chip-list.js
10
chip-list.js
@ -51,6 +51,7 @@ class ChipList extends IgniteElement {
|
|||||||
get properties() {
|
get properties() {
|
||||||
return {
|
return {
|
||||||
items: null,
|
items: null,
|
||||||
|
placeholder: null,
|
||||||
editing: false,
|
editing: false,
|
||||||
input: null,
|
input: null,
|
||||||
searchBox: null,
|
searchBox: null,
|
||||||
@ -59,7 +60,7 @@ class ChipList extends IgniteElement {
|
|||||||
{ id: 502, corporation: "Starbucks", content: "Starbucks #1, Spokane WA" },
|
{ id: 502, corporation: "Starbucks", content: "Starbucks #1, Spokane WA" },
|
||||||
{ id: 503, corporation: "Starbucks", content: "Starbucks #2, Spokane WA" }
|
{ id: 503, corporation: "Starbucks", content: "Starbucks #2, Spokane WA" }
|
||||||
],
|
],
|
||||||
searchEmpty: "No results found.",
|
searchPlaceholder: "No results found.",
|
||||||
searchFooter: null,
|
searchFooter: null,
|
||||||
blurTimeout: null,
|
blurTimeout: null,
|
||||||
documentListener: null
|
documentListener: null
|
||||||
@ -71,10 +72,13 @@ class ChipList extends IgniteElement {
|
|||||||
.style("position", "relative")
|
.style("position", "relative")
|
||||||
.class(this.editing, value => { return value ? "editing" : null })
|
.class(this.editing, value => { return value ? "editing" : null })
|
||||||
.child(
|
.child(
|
||||||
|
new span(this.placeholder).hide([this.editing, this.items], (editing, items) => {
|
||||||
|
return editing || (items != null && items.length > 0);
|
||||||
|
}),
|
||||||
new list(this.items, (item) => {
|
new list(this.items, (item) => {
|
||||||
return new Chip()
|
return new Chip()
|
||||||
.id(item.id)
|
.id(item.id)
|
||||||
.property("onDelete", () => { this.items = this.items.filter(needle => needle != item) })
|
.property("onDelete", () => { this.items = this.items.filter(needle => needle != item); })
|
||||||
.child(item.content);
|
.child(item.content);
|
||||||
}),
|
}),
|
||||||
new div()
|
new div()
|
||||||
@ -118,7 +122,7 @@ class ChipList extends IgniteElement {
|
|||||||
.class("shadow d-flex flex-column justify-content-center p-2")
|
.class("shadow d-flex flex-column justify-content-center p-2")
|
||||||
.style("background-color", "#fff")
|
.style("background-color", "#fff")
|
||||||
.child(
|
.child(
|
||||||
new span(this.searchEmpty).class("mt-2").hide(this.searchResults, value => { return value != null && value.length > 0; }),
|
new span(this.searchPlaceholder).class("mt-2").hide(this.searchResults, value => { return value != null && value.length > 0; }),
|
||||||
new list(this.searchResults, item => {
|
new list(this.searchResults, item => {
|
||||||
return new div(item.content).class("search-result p-2").onClick(() => this.searchResultClick(item));
|
return new div(item.content).class("search-result p-2").onClick(() => this.searchResultClick(item));
|
||||||
}),
|
}),
|
||||||
|
0
selectable-label.js
Normal file
0
selectable-label.js
Normal file
Loading…
x
Reference in New Issue
Block a user