2017-11-21 18:53:09 +08:00
|
|
|
|
export default Ember.Mixin.create({
|
|
|
|
|
init() {
|
|
|
|
|
this._super();
|
|
|
|
|
|
|
|
|
|
this.keys = {
|
|
|
|
|
TAB: 9,
|
|
|
|
|
ENTER: 13,
|
|
|
|
|
ESC: 27,
|
|
|
|
|
UP: 38,
|
|
|
|
|
DOWN: 40,
|
|
|
|
|
BACKSPACE: 8,
|
2018-03-22 18:29:55 +08:00
|
|
|
|
LEFT: 37,
|
|
|
|
|
RIGHT: 39,
|
|
|
|
|
A: 65
|
2017-11-21 18:53:09 +08:00
|
|
|
|
};
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
willDestroyElement() {
|
2018-07-24 00:19:40 +08:00
|
|
|
|
this._super(...arguments);
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2017-11-23 22:34:52 +08:00
|
|
|
|
$(document).off("mousedown.select-kit");
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-07-24 00:19:40 +08:00
|
|
|
|
if (this.$header().length) {
|
2017-11-22 02:08:59 +08:00
|
|
|
|
this.$header()
|
|
|
|
|
.off("blur.select-kit")
|
2017-11-22 18:29:30 +08:00
|
|
|
|
.off("focus.select-kit")
|
2017-11-22 02:08:59 +08:00
|
|
|
|
.off("keypress.select-kit")
|
|
|
|
|
.off("keydown.select-kit");
|
|
|
|
|
}
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-07-24 00:19:40 +08:00
|
|
|
|
if (this.$filterInput().length) {
|
2017-11-22 02:08:59 +08:00
|
|
|
|
this.$filterInput()
|
|
|
|
|
.off("change.select-kit")
|
|
|
|
|
.off("keydown.select-kit")
|
2018-07-24 00:19:40 +08:00
|
|
|
|
.off("keypress.select-kit")
|
|
|
|
|
.off("focusout.select-kit");
|
2017-11-22 02:08:59 +08:00
|
|
|
|
}
|
2017-11-21 18:53:09 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
didInsertElement() {
|
2018-07-24 00:19:40 +08:00
|
|
|
|
this._super(...arguments);
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
$(document).on("mousedown.select-kit", event => {
|
|
|
|
|
if (!this.element || this.isDestroying || this.isDestroyed) {
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2017-12-28 23:12:45 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
if (Ember.$.contains(this.element, event.target)) {
|
|
|
|
|
event.stopPropagation();
|
|
|
|
|
if (!this.get("renderedBodyOnce")) return;
|
|
|
|
|
if (!this.get("isFocused")) return;
|
|
|
|
|
} else {
|
|
|
|
|
this.didClickOutside(event);
|
|
|
|
|
}
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
return true;
|
2017-11-21 18:53:09 +08:00
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.$header()
|
|
|
|
|
.on("blur.select-kit", () => {
|
2018-03-22 18:29:55 +08:00
|
|
|
|
if (!this.get("isExpanded") && this.get("isFocused")) {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
this.close();
|
|
|
|
|
}
|
|
|
|
|
})
|
2018-06-15 23:03:24 +08:00
|
|
|
|
.on("focus.select-kit", event => {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
this.set("isFocused", true);
|
|
|
|
|
this._destroyEvent(event);
|
|
|
|
|
})
|
2018-06-15 23:03:24 +08:00
|
|
|
|
.on("keydown.select-kit", event => {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
if (document.activeElement !== this.$header()[0]) return event;
|
|
|
|
|
|
2018-06-25 18:52:20 +08:00
|
|
|
|
const keyCode = event.keyCode || event.which;
|
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
if (keyCode === this.keys.TAB && event.shiftKey) {
|
|
|
|
|
this.unfocus(event);
|
|
|
|
|
}
|
|
|
|
|
if (keyCode === this.keys.TAB && !event.shiftKey)
|
|
|
|
|
this.tabFromHeader(event);
|
|
|
|
|
if (
|
|
|
|
|
Ember.isEmpty(this.get("filter")) &&
|
|
|
|
|
keyCode === this.keys.BACKSPACE
|
|
|
|
|
)
|
|
|
|
|
this.backspaceFromHeader(event);
|
2017-11-21 18:53:09 +08:00
|
|
|
|
if (keyCode === this.keys.ESC) this.escapeFromHeader(event);
|
|
|
|
|
if (keyCode === this.keys.ENTER) this.enterFromHeader(event);
|
2018-06-15 23:03:24 +08:00
|
|
|
|
if ([this.keys.UP, this.keys.DOWN].includes(keyCode))
|
|
|
|
|
this.upAndDownFromHeader(event);
|
|
|
|
|
if (
|
|
|
|
|
Ember.isEmpty(this.get("filter")) &&
|
|
|
|
|
[this.keys.LEFT, this.keys.RIGHT].includes(keyCode)
|
|
|
|
|
) {
|
|
|
|
|
this.leftAndRightFromHeader(event);
|
2018-03-22 18:29:55 +08:00
|
|
|
|
}
|
2017-11-21 18:53:09 +08:00
|
|
|
|
return event;
|
|
|
|
|
})
|
2018-06-15 23:03:24 +08:00
|
|
|
|
.on("keypress.select-kit", event => {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
const keyCode = event.keyCode || event.which;
|
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
if (keyCode === this.keys.ENTER) return true;
|
|
|
|
|
if (keyCode === this.keys.TAB) return true;
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
|
|
|
|
this.expand(event);
|
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
if (this.get("filterable") || this.get("autoFilterable")) {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
this.set("renderedFilterOnce", true);
|
|
|
|
|
}
|
|
|
|
|
|
2018-06-25 18:52:20 +08:00
|
|
|
|
Ember.run.schedule("afterRender", () => {
|
|
|
|
|
this.$filterInput()
|
|
|
|
|
.focus()
|
|
|
|
|
.val(this.$filterInput().val() + String.fromCharCode(keyCode));
|
|
|
|
|
});
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
this.$filterInput()
|
2018-06-15 23:03:24 +08:00
|
|
|
|
.on("change.select-kit", event => {
|
2018-03-22 18:29:55 +08:00
|
|
|
|
this.send("onFilterComputedContent", $(event.target).val());
|
2017-11-21 18:53:09 +08:00
|
|
|
|
})
|
2018-06-15 23:03:24 +08:00
|
|
|
|
.on("keypress.select-kit", event => {
|
2017-11-21 23:59:03 +08:00
|
|
|
|
event.stopPropagation();
|
|
|
|
|
})
|
2018-07-24 00:19:40 +08:00
|
|
|
|
.on("focusout.select-kit", event => {
|
2018-07-24 02:19:36 +08:00
|
|
|
|
this.onFilterInputFocusout(event);
|
2018-07-24 00:19:40 +08:00
|
|
|
|
})
|
2018-06-15 23:03:24 +08:00
|
|
|
|
.on("keydown.select-kit", event => {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
const keyCode = event.keyCode || event.which;
|
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
if (
|
|
|
|
|
Ember.isEmpty(this.get("filter")) &&
|
|
|
|
|
keyCode === this.keys.BACKSPACE &&
|
|
|
|
|
typeof this.didPressBackspaceFromFilter === "function"
|
|
|
|
|
) {
|
2018-03-22 18:29:55 +08:00
|
|
|
|
this.didPressBackspaceFromFilter(event);
|
2018-06-15 23:03:24 +08:00
|
|
|
|
}
|
2018-03-22 18:29:55 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
if (keyCode === this.keys.TAB && event.shiftKey) {
|
|
|
|
|
this.unfocus(event);
|
|
|
|
|
}
|
|
|
|
|
if (keyCode === this.keys.TAB && !event.shiftKey)
|
|
|
|
|
this.tabFromFilter(event);
|
2017-11-21 18:53:09 +08:00
|
|
|
|
if (keyCode === this.keys.ESC) this.escapeFromFilter(event);
|
|
|
|
|
if (keyCode === this.keys.ENTER) this.enterFromFilter(event);
|
2018-06-15 23:03:24 +08:00
|
|
|
|
if ([this.keys.UP, this.keys.DOWN].includes(keyCode))
|
|
|
|
|
this.upAndDownFromFilter(event);
|
2018-03-22 18:29:55 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
if (
|
|
|
|
|
Ember.isEmpty(this.get("filter")) &&
|
|
|
|
|
[this.keys.LEFT, this.keys.RIGHT].includes(keyCode)
|
|
|
|
|
) {
|
2018-03-22 18:29:55 +08:00
|
|
|
|
this.leftAndRightFromFilter(event);
|
|
|
|
|
}
|
2017-11-21 18:53:09 +08:00
|
|
|
|
});
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
didPressTab(event) {
|
2018-03-22 18:29:55 +08:00
|
|
|
|
if (this.$highlightedRow().length && this.get("isExpanded")) {
|
|
|
|
|
this.close(event);
|
|
|
|
|
this.$header().focus();
|
|
|
|
|
const guid = this.$highlightedRow().attr("data-guid");
|
|
|
|
|
this.select(this._findComputedContentItemByGuid(guid));
|
2017-11-22 06:28:48 +08:00
|
|
|
|
return true;
|
2018-03-22 18:29:55 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Ember.isEmpty(this.get("filter"))) {
|
|
|
|
|
this.close(event);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
didPressEnter(event) {
|
|
|
|
|
if (!this.get("isExpanded")) {
|
|
|
|
|
this.expand(event);
|
|
|
|
|
} else if (this.$highlightedRow().length) {
|
|
|
|
|
this.close(event);
|
|
|
|
|
this.$header().focus();
|
|
|
|
|
const guid = this.$highlightedRow().attr("data-guid");
|
|
|
|
|
this.select(this._findComputedContentItemByGuid(guid));
|
2017-11-21 18:53:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
},
|
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
didClickSelectionItem(computedContentItem) {
|
|
|
|
|
this.focus();
|
|
|
|
|
this.deselect(computedContentItem);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
didClickRow(computedContentItem) {
|
2018-03-22 23:17:23 +08:00
|
|
|
|
this.close();
|
2018-03-22 18:29:55 +08:00
|
|
|
|
this.focus();
|
|
|
|
|
this.select(computedContentItem);
|
|
|
|
|
},
|
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
|
didPressEscape(event) {
|
|
|
|
|
this._destroyEvent(event);
|
2018-03-22 18:29:55 +08:00
|
|
|
|
|
|
|
|
|
if (this.get("highlightedSelection").length && this.get("isExpanded")) {
|
|
|
|
|
this.clearHighlightSelection();
|
|
|
|
|
} else {
|
|
|
|
|
this.unfocus(event);
|
|
|
|
|
}
|
2017-11-21 18:53:09 +08:00
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
didPressUpAndDownArrows(event) {
|
|
|
|
|
this._destroyEvent(event);
|
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
this.clearHighlightSelection();
|
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
|
const keyCode = event.keyCode || event.which;
|
2018-03-22 18:29:55 +08:00
|
|
|
|
|
2018-03-23 01:35:46 +08:00
|
|
|
|
if (!this.get("isExpanded")) {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
this.expand(event);
|
|
|
|
|
|
|
|
|
|
if (this.$selectedRow().length === 1) {
|
|
|
|
|
this._highlightRow(this.$selectedRow());
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-03-22 18:29:55 +08:00
|
|
|
|
|
|
|
|
|
return;
|
2017-11-21 18:53:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-23 01:35:46 +08:00
|
|
|
|
const $rows = this.$rows();
|
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
if (!$rows.length) {
|
|
|
|
|
return;
|
|
|
|
|
}
|
2018-03-22 18:29:55 +08:00
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
|
if ($rows.length === 1) {
|
|
|
|
|
this._rowSelection($rows, 0);
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const direction = keyCode === 38 ? -1 : 1;
|
|
|
|
|
|
|
|
|
|
Ember.run.throttle(this, this._moveHighlight, direction, $rows, 32);
|
|
|
|
|
},
|
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
didPressBackspaceFromFilter(event) {
|
|
|
|
|
this.didPressBackspace(event);
|
|
|
|
|
},
|
2017-11-21 18:53:09 +08:00
|
|
|
|
didPressBackspace(event) {
|
2018-03-22 18:29:55 +08:00
|
|
|
|
if (!this.get("isExpanded")) {
|
|
|
|
|
this.expand();
|
|
|
|
|
if (event) event.stopImmediatePropagation();
|
|
|
|
|
return;
|
|
|
|
|
}
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
if (!this.get("selection").length) return;
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
if (!Ember.isEmpty(this.get("filter"))) {
|
|
|
|
|
this.clearHighlightSelection();
|
|
|
|
|
return;
|
2017-11-21 18:53:09 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
if (!this.get("highlightedSelection").length) {
|
|
|
|
|
// try to highlight the last non locked item from the current selection
|
2018-06-15 23:03:24 +08:00
|
|
|
|
Ember.makeArray(this.get("selection"))
|
|
|
|
|
.slice()
|
|
|
|
|
.reverse()
|
|
|
|
|
.some(selection => {
|
|
|
|
|
if (!Ember.get(selection, "locked")) {
|
|
|
|
|
this.highlightSelection(selection);
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
});
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
if (event) event.stopImmediatePropagation();
|
|
|
|
|
} else {
|
|
|
|
|
this.deselect(this.get("highlightedSelection"));
|
|
|
|
|
if (event) event.stopImmediatePropagation();
|
2017-11-21 18:53:09 +08:00
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
didPressSelectAll() {
|
|
|
|
|
this.highlightSelection(Ember.makeArray(this.get("selection")));
|
|
|
|
|
},
|
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
|
didClickOutside(event) {
|
2018-06-15 23:03:24 +08:00
|
|
|
|
if (
|
|
|
|
|
this.get("isExpanded") &&
|
|
|
|
|
$(event.target).parents(".select-kit").length
|
|
|
|
|
) {
|
2017-11-21 18:53:09 +08:00
|
|
|
|
this.close(event);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2017-11-22 00:37:13 +08:00
|
|
|
|
this.close(event);
|
2017-11-21 18:53:09 +08:00
|
|
|
|
return;
|
|
|
|
|
},
|
|
|
|
|
|
2017-11-22 01:07:10 +08:00
|
|
|
|
// make sure we don’t propagate a click outside component
|
|
|
|
|
// to avoid closing a modal containing the component for example
|
|
|
|
|
click(event) {
|
|
|
|
|
this._destroyEvent(event);
|
|
|
|
|
},
|
|
|
|
|
|
2018-03-22 18:29:55 +08:00
|
|
|
|
didPressLeftAndRightArrows(event) {
|
|
|
|
|
if (!this.get("isExpanded")) {
|
|
|
|
|
this.expand();
|
|
|
|
|
event.stopImmediatePropagation();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (Ember.isEmpty(this.get("selection"))) return;
|
|
|
|
|
|
|
|
|
|
const keyCode = event.keyCode || event.which;
|
|
|
|
|
|
|
|
|
|
if (keyCode === this.keys.LEFT) {
|
|
|
|
|
const prev = this.get("highlightedSelection.lastObject");
|
|
|
|
|
const indexOfPrev = this.get("selection").indexOf(prev);
|
|
|
|
|
|
|
|
|
|
if (this.get("selection")[indexOfPrev - 1]) {
|
|
|
|
|
this.highlightSelection(this.get("selection")[indexOfPrev - 1]);
|
|
|
|
|
} else {
|
|
|
|
|
this.highlightSelection(this.get("selection.lastObject"));
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
const prev = this.get("highlightedSelection.firstObject");
|
2018-06-15 23:03:24 +08:00
|
|
|
|
const indexOfNext = this.get("selection").indexOf(prev);
|
2018-03-22 18:29:55 +08:00
|
|
|
|
|
|
|
|
|
if (this.get("selection")[indexOfNext + 1]) {
|
|
|
|
|
this.highlightSelection(this.get("selection")[indexOfNext + 1]);
|
|
|
|
|
} else {
|
|
|
|
|
this.highlightSelection(this.get("selection.firstObject"));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
tabFromHeader(event) {
|
|
|
|
|
this.didPressTab(event);
|
|
|
|
|
},
|
|
|
|
|
tabFromFilter(event) {
|
|
|
|
|
this.didPressTab(event);
|
|
|
|
|
},
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
escapeFromHeader(event) {
|
|
|
|
|
this.didPressEscape(event);
|
|
|
|
|
},
|
|
|
|
|
escapeFromFilter(event) {
|
|
|
|
|
this.didPressEscape(event);
|
|
|
|
|
},
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
upAndDownFromHeader(event) {
|
|
|
|
|
this.didPressUpAndDownArrows(event);
|
|
|
|
|
},
|
|
|
|
|
upAndDownFromFilter(event) {
|
|
|
|
|
this.didPressUpAndDownArrows(event);
|
|
|
|
|
},
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
leftAndRightFromHeader(event) {
|
|
|
|
|
this.didPressLeftAndRightArrows(event);
|
|
|
|
|
},
|
|
|
|
|
leftAndRightFromFilter(event) {
|
|
|
|
|
this.didPressLeftAndRightArrows(event);
|
|
|
|
|
},
|
2018-03-22 18:29:55 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
backspaceFromHeader(event) {
|
|
|
|
|
this.didPressBackspace(event);
|
|
|
|
|
},
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-06-15 23:03:24 +08:00
|
|
|
|
enterFromHeader(event) {
|
|
|
|
|
this.didPressEnter(event);
|
|
|
|
|
},
|
|
|
|
|
enterFromFilter(event) {
|
|
|
|
|
this.didPressEnter(event);
|
|
|
|
|
},
|
2017-11-21 18:53:09 +08:00
|
|
|
|
|
2018-07-24 02:19:36 +08:00
|
|
|
|
onFilterInputFocusout(event) {
|
|
|
|
|
if (!Ember.$.contains(this.element, event.relatedTarget)) {
|
|
|
|
|
this.close(event);
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
|
2017-11-21 18:53:09 +08:00
|
|
|
|
_moveHighlight(direction, $rows) {
|
|
|
|
|
const currentIndex = $rows.index(this.$highlightedRow());
|
|
|
|
|
let nextIndex = currentIndex + direction;
|
|
|
|
|
|
|
|
|
|
if (nextIndex < 0) {
|
|
|
|
|
nextIndex = $rows.length - 1;
|
|
|
|
|
} else if (nextIndex >= $rows.length) {
|
|
|
|
|
nextIndex = 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
this._rowSelection($rows, nextIndex);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_rowSelection($rows, nextIndex) {
|
|
|
|
|
const highlightableValue = $rows.eq(nextIndex).attr("data-value");
|
|
|
|
|
const $highlightableRow = this.$findRowByValue(highlightableValue);
|
|
|
|
|
this._highlightRow($highlightableRow);
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
_highlightRow($row) {
|
|
|
|
|
Ember.run.schedule("afterRender", () => {
|
|
|
|
|
$row.trigger("mouseover").focus();
|
|
|
|
|
this.focus();
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
});
|