mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-28 22:43:30 +03:00
29 lines
661 B
JavaScript
29 lines
661 B
JavaScript
import Component from '@ember/component';
|
|
import layout from '../templates/components/kg-action-bar';
|
|
import {computed} from '@ember/object';
|
|
|
|
export default Component.extend({
|
|
layout,
|
|
|
|
tagName: '',
|
|
|
|
instantClose: false,
|
|
isVisible: false,
|
|
style: null,
|
|
|
|
animationClasses: computed('isVisible', 'instantClose', function () {
|
|
let {instantClose, isVisible} = this;
|
|
let classes = [];
|
|
|
|
if (!instantClose || (instantClose && isVisible)) {
|
|
classes.push('anim-fast-bezier');
|
|
}
|
|
|
|
if (!isVisible) {
|
|
classes.push('o-0 pop-down');
|
|
}
|
|
|
|
return classes.join(' ');
|
|
})
|
|
});
|