2017-11-09 13:57:53 -05:00
|
|
|
import { on } from "ember-addons/ember-computed-decorators";
|
|
|
|
|
2017-10-19 15:51:08 -04:00
|
|
|
export default Ember.Mixin.create({
|
|
|
|
init() {
|
|
|
|
this._super();
|
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
this._previousScrollParentOverflow = null;
|
|
|
|
this._previousCSSContext = null;
|
2017-11-21 05:53:09 -05:00
|
|
|
this.filterInputSelector = ".filter-input";
|
|
|
|
this.rowSelector = ".select-kit-row";
|
|
|
|
this.collectionSelector = ".select-kit-collection";
|
|
|
|
this.headerSelector = ".select-kit-header";
|
|
|
|
this.bodySelector = ".select-kit-body";
|
|
|
|
this.wrapperSelector = ".select-kit-wrapper";
|
2017-12-28 10:12:45 -05:00
|
|
|
this.scrollableParentSelector = ".modal-body";
|
|
|
|
this.fixedPlaceholderSelector = `.select-kit-fixed-placeholder-${this.elementId}`;
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
2017-11-09 13:57:53 -05:00
|
|
|
$findRowByValue(value) { return this.$(`${this.rowSelector}[data-value='${value}']`); },
|
|
|
|
|
|
|
|
$header() { return this.$(this.headerSelector); },
|
|
|
|
|
|
|
|
$body() { return this.$(this.bodySelector); },
|
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
$wrapper() { return this.$(this.wrapperSelector); },
|
|
|
|
|
2017-11-09 13:57:53 -05:00
|
|
|
$collection() { return this.$(this.collectionSelector); },
|
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
$scrollableParent() { return $(this.scrollableParentSelector); },
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
$fixedPlaceholder() { return $(this.fixedPlaceholderSelector); },
|
|
|
|
|
|
|
|
$rows() {
|
|
|
|
return this.$(`${this.rowSelector}:not(.no-content):not(.is-hidden)`);
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
2017-11-09 13:57:53 -05:00
|
|
|
$highlightedRow() { return this.$rows().filter(".is-highlighted"); },
|
|
|
|
|
|
|
|
$selectedRow() { return this.$rows().filter(".is-selected"); },
|
|
|
|
|
|
|
|
$filterInput() { return this.$(this.filterInputSelector); },
|
|
|
|
|
|
|
|
@on("didRender")
|
2017-12-28 10:12:45 -05:00
|
|
|
_adjustPosition() {
|
2017-11-09 13:57:53 -05:00
|
|
|
this._applyFixedPosition();
|
|
|
|
this._applyDirection();
|
|
|
|
this._positionWrapper();
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
2017-11-09 13:57:53 -05:00
|
|
|
@on("willDestroyElement")
|
|
|
|
_clearState() {
|
2017-12-28 10:12:45 -05:00
|
|
|
this.$fixedPlaceholder().remove();
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
2017-11-09 13:57:53 -05:00
|
|
|
// use to collapse and remove focus
|
2017-11-21 05:53:09 -05:00
|
|
|
close(event) {
|
|
|
|
this.collapse(event);
|
2017-11-09 13:57:53 -05:00
|
|
|
this.setProperties({ isFocused: false });
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
2017-11-09 13:57:53 -05:00
|
|
|
// force the component in a known default state
|
|
|
|
focus() {
|
2017-11-21 12:23:49 -05:00
|
|
|
Ember.run.schedule("afterRender", () => this.$header().focus());
|
|
|
|
},
|
|
|
|
|
2017-11-22 05:29:30 -05:00
|
|
|
// try to focus filter and fallback to header if not present
|
|
|
|
focusFilterOrHeader() {
|
2017-11-21 12:07:10 -05:00
|
|
|
Ember.run.schedule("afterRender", () => {
|
2017-11-22 10:36:50 -05:00
|
|
|
if ((this.site && this.site.isMobileDevice) || !this.$filterInput().is(":visible")) {
|
2017-11-21 12:07:10 -05:00
|
|
|
this.$header().focus();
|
2017-11-22 10:36:50 -05:00
|
|
|
} else {
|
|
|
|
this.$filterInput().focus();
|
2017-11-21 12:07:10 -05:00
|
|
|
}
|
|
|
|
});
|
2017-11-22 05:29:30 -05:00
|
|
|
},
|
2017-10-19 15:51:08 -04:00
|
|
|
|
2017-11-22 05:29:30 -05:00
|
|
|
expand() {
|
|
|
|
if (this.get("isExpanded") === true) return;
|
|
|
|
this.setProperties({ isExpanded: true, renderedBodyOnce: true, isFocused: true });
|
|
|
|
this.focusFilterOrHeader();
|
2017-11-21 05:53:09 -05:00
|
|
|
this.autoHighlight();
|
2018-01-26 08:42:24 -05:00
|
|
|
this._setCollectionHeaderComputedContent();
|
2018-01-11 03:39:51 -05:00
|
|
|
this._setHeaderComputedContent();
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
2017-11-09 13:57:53 -05:00
|
|
|
collapse() {
|
|
|
|
this.set("isExpanded", false);
|
|
|
|
Ember.run.schedule("afterRender", () => this._removeFixedPosition() );
|
2018-01-11 03:39:51 -05:00
|
|
|
this._setHeaderComputedContent();
|
2017-10-19 15:51:08 -04:00
|
|
|
},
|
|
|
|
|
2017-11-09 13:57:53 -05:00
|
|
|
// lose focus of the component in two steps
|
2017-11-21 05:53:09 -05:00
|
|
|
// first collapse and keep focus and then remove focus
|
|
|
|
unfocus(event) {
|
2017-11-09 13:57:53 -05:00
|
|
|
if (this.get("isExpanded") === true) {
|
2017-11-21 05:53:09 -05:00
|
|
|
this.collapse(event);
|
|
|
|
this.focus(event);
|
2017-11-09 13:57:53 -05:00
|
|
|
} else {
|
2017-11-21 05:53:09 -05:00
|
|
|
this.close(event);
|
2017-11-09 13:57:53 -05:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
2017-11-21 05:53:09 -05:00
|
|
|
_destroyEvent(event) {
|
2017-10-19 15:51:08 -04:00
|
|
|
event.preventDefault();
|
|
|
|
event.stopPropagation();
|
2017-11-09 13:57:53 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_applyDirection() {
|
|
|
|
let options = { left: "auto", bottom: "auto", top: "auto" };
|
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
const discourseHeader = $(".d-header")[0];
|
|
|
|
const discourseHeaderHeight = discourseHeader ? (discourseHeader.getBoundingClientRect().top + this._computedStyle(discourseHeader, "height")) : 0;
|
|
|
|
const bodyHeight = this._computedStyle(this.$body()[0], "height");
|
2017-11-09 13:57:53 -05:00
|
|
|
const windowWidth = $(window).width();
|
2017-12-28 10:12:45 -05:00
|
|
|
const componentHeight = this._computedStyle(this.get("element"), "height");
|
|
|
|
const componentWidth = this._computedStyle(this.get("element"), "width");
|
|
|
|
const offsetTop = this.get("element").getBoundingClientRect().top;
|
|
|
|
const offsetBottom = this.get("element").getBoundingClientRect().bottom;
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-11-26 11:21:39 -05:00
|
|
|
if (this.get("fullWidthOnMobile") && (this.site && this.site.isMobileDevice)) {
|
2017-11-09 13:57:53 -05:00
|
|
|
const margin = 10;
|
|
|
|
const relativeLeft = this.$().offset().left - $(window).scrollLeft();
|
|
|
|
options.left = margin - relativeLeft;
|
|
|
|
options.width = windowWidth - margin * 2;
|
|
|
|
options.maxWidth = options.minWidth = "unset";
|
|
|
|
} else {
|
2017-12-28 10:12:45 -05:00
|
|
|
const bodyWidth = this._computedStyle(this.$body()[0], "width");
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
if (this._isRTL()) {
|
|
|
|
const horizontalSpacing = this.get("element").getBoundingClientRect().right;
|
2017-11-09 13:57:53 -05:00
|
|
|
const hasHorizontalSpace = horizontalSpacing - (this.get("horizontalOffset") + bodyWidth) > 0;
|
|
|
|
if (hasHorizontalSpace) {
|
|
|
|
this.setProperties({ isLeftAligned: true, isRightAligned: false });
|
|
|
|
options.left = bodyWidth + this.get("horizontalOffset");
|
|
|
|
} else {
|
|
|
|
this.setProperties({ isLeftAligned: false, isRightAligned: true });
|
2017-11-21 05:53:09 -05:00
|
|
|
options.right = - (bodyWidth - componentWidth + this.get("horizontalOffset"));
|
2017-11-09 13:57:53 -05:00
|
|
|
}
|
|
|
|
} else {
|
2017-12-28 10:12:45 -05:00
|
|
|
const horizontalSpacing = this.get("element").getBoundingClientRect().left;
|
2017-11-09 13:57:53 -05:00
|
|
|
const hasHorizontalSpace = (windowWidth - (this.get("horizontalOffset") + horizontalSpacing + bodyWidth) > 0);
|
|
|
|
if (hasHorizontalSpace) {
|
|
|
|
this.setProperties({ isLeftAligned: true, isRightAligned: false });
|
|
|
|
options.left = this.get("horizontalOffset");
|
|
|
|
} else {
|
|
|
|
this.setProperties({ isLeftAligned: false, isRightAligned: true });
|
|
|
|
options.right = this.get("horizontalOffset");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-11-21 05:53:09 -05:00
|
|
|
const fullHeight = this.get("verticalOffset") + bodyHeight + componentHeight;
|
2017-12-28 10:12:45 -05:00
|
|
|
const hasBelowSpace = $(window).height() - offsetBottom - fullHeight > 0;
|
|
|
|
const hasAboveSpace = offsetTop - fullHeight - discourseHeaderHeight > 0;
|
|
|
|
const headerHeight = this._computedStyle(this.$header()[0], "height");
|
2017-11-09 13:57:53 -05:00
|
|
|
if (hasBelowSpace || (!hasBelowSpace && !hasAboveSpace)) {
|
|
|
|
this.setProperties({ isBelow: true, isAbove: false });
|
2017-12-28 10:12:45 -05:00
|
|
|
options.top = headerHeight + this.get("verticalOffset");
|
2017-11-09 13:57:53 -05:00
|
|
|
} else {
|
|
|
|
this.setProperties({ isBelow: false, isAbove: true });
|
2017-12-28 10:12:45 -05:00
|
|
|
options.bottom = headerHeight + this.get("verticalOffset");
|
2017-11-09 13:57:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
this.$body().css(options);
|
|
|
|
},
|
|
|
|
|
|
|
|
_applyFixedPosition() {
|
2017-12-28 10:12:45 -05:00
|
|
|
if (this.get("isExpanded") !== true) return;
|
|
|
|
if (this.$fixedPlaceholder().length === 1) return;
|
|
|
|
if (this.$scrollableParent().length === 0) return;
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
const width = this._computedStyle(this.get("element"), "width");
|
|
|
|
const height = this._computedStyle(this.get("element"), "height");
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
this._previousScrollParentOverflow = this._previousScrollParentOverflow ||
|
|
|
|
this.$scrollableParent().css("overflow");
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
this._previousCSSContext = this._previousCSSContext || {
|
|
|
|
width,
|
2017-11-09 13:57:53 -05:00
|
|
|
minWidth: this.$().css("min-width"),
|
2017-12-28 10:12:45 -05:00
|
|
|
maxWidth: this.$().css("max-width"),
|
|
|
|
top: this.$().css("top"),
|
|
|
|
left: this.$().css("left"),
|
|
|
|
marginLeft: this.$().css("margin-left"),
|
|
|
|
marginRight: this.$().css("margin-right"),
|
|
|
|
position: this.$().css("position")
|
2017-11-09 13:57:53 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
const componentStyles = {
|
2017-12-28 10:12:45 -05:00
|
|
|
top: this.get("element").getBoundingClientRect().top,
|
2017-11-09 13:57:53 -05:00
|
|
|
width,
|
2017-12-28 10:12:45 -05:00
|
|
|
left: this.get("element").getBoundingClientRect().left,
|
|
|
|
marginLeft: 0,
|
|
|
|
marginRight: 0,
|
2017-11-09 13:57:53 -05:00
|
|
|
minWidth: "unset",
|
2017-12-28 10:12:45 -05:00
|
|
|
maxWidth: "unset",
|
|
|
|
position: "fixed"
|
2017-11-09 13:57:53 -05:00
|
|
|
};
|
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
const $placeholderTemplate = $(`<div class='select-kit-fixed-placeholder-${this.elementId}'></div>`);
|
|
|
|
$placeholderTemplate.css({
|
|
|
|
display: "inline-block",
|
|
|
|
width,
|
|
|
|
height,
|
|
|
|
"vertical-align": "middle"
|
|
|
|
});
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
this.$()
|
|
|
|
.before($placeholderTemplate)
|
|
|
|
.css(componentStyles);
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
this.$scrollableParent().css({ overflow: "hidden" });
|
2017-11-09 13:57:53 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_removeFixedPosition() {
|
2017-12-28 10:12:45 -05:00
|
|
|
this.$fixedPlaceholder().remove();
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
if (!this.element || this.isDestroying || this.isDestroyed) return;
|
|
|
|
if (this.$scrollableParent().length === 0) return;
|
|
|
|
|
|
|
|
this.$().css(this._previousCSSContext || {});
|
|
|
|
this.$scrollableParent().css("overflow", this._previousScrollParentOverflow || {});
|
2017-11-09 13:57:53 -05:00
|
|
|
},
|
|
|
|
|
|
|
|
_positionWrapper() {
|
2017-12-28 10:12:45 -05:00
|
|
|
const elementWidth = this._computedStyle(this.get("element"), "width");
|
|
|
|
const headerHeight = this._computedStyle(this.$header()[0], "height");
|
|
|
|
const bodyHeight = this._computedStyle(this.$body()[0], "height");
|
2017-11-09 13:57:53 -05:00
|
|
|
|
2017-12-28 10:12:45 -05:00
|
|
|
this.$wrapper().css({
|
|
|
|
width: elementWidth,
|
|
|
|
height: headerHeight + bodyHeight
|
2017-11-09 13:57:53 -05:00
|
|
|
});
|
|
|
|
},
|
2017-12-28 10:12:45 -05:00
|
|
|
|
|
|
|
_isRTL() {
|
|
|
|
return $("html").css("direction") === "rtl";
|
|
|
|
},
|
|
|
|
|
|
|
|
_computedStyle(element, style) {
|
|
|
|
if (!element) return 0;
|
|
|
|
|
|
|
|
let value;
|
|
|
|
|
|
|
|
if (window.getComputedStyle) {
|
|
|
|
value = window.getComputedStyle(element, null)[style];
|
|
|
|
} else {
|
|
|
|
value = $(element).css(style);
|
|
|
|
}
|
|
|
|
|
|
|
|
return this._getFloat(value);
|
|
|
|
},
|
|
|
|
|
|
|
|
_getFloat(value) {
|
|
|
|
value = parseFloat(value);
|
|
|
|
return $.isNumeric(value) ? value : 0;
|
|
|
|
}
|
2017-10-19 15:51:08 -04:00
|
|
|
});
|