FIX: optimize collapse/expand select-kit codepath (#6818)

This commit is contained in:
Joffrey JAFFEUX 2018-12-27 23:38:01 +01:00 committed by GitHub
parent 1d62d3df6f
commit 942114b34c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 16 additions and 7 deletions

View File

@ -63,11 +63,6 @@ export default Ember.Mixin.create({
return this.$(this.filterInputSelector);
},
@on("didRender")
_schedulePositionRendering() {
Ember.run.debounce(this, this._adjustPosition, 50, true);
},
_adjustPosition() {
this._applyDirection();
this._applyFixedPosition();
@ -128,15 +123,27 @@ export default Ember.Mixin.create({
});
this.focusFilterOrHeader();
this.autoHighlight();
Ember.run.next(() => {
this._boundaryActionHandler("onExpand", this);
Ember.run.schedule("afterRender", () => {
if (!this.isDestroying && !this.isDestroyed) {
this._adjustPosition();
}
});
});
},
collapse() {
this.set("isExpanded", false);
Ember.run.next(() => {
Ember.run.schedule("afterRender", () => this._removeFixedPosition());
this._boundaryActionHandler("onCollapse", this);
Ember.run.schedule("afterRender", () => {
if (!this.isDestroying && !this.isDestroyed) {
this._removeFixedPosition();
}
});
});
},

View File

@ -24,6 +24,8 @@
z-index: z("dropdown");
.select-kit-body {
-webkit-animation: fadein 0.25s;
animation: fadein 0.25s;
display: flex;
flex-direction: column;
left: 0;