FIX: optimize collapse/expand select-kit codepath (#6818)
This commit is contained in:
parent
1d62d3df6f
commit
942114b34c
|
@ -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();
|
||||
}
|
||||
});
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue