mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 14:43:08 +03:00
8d01fb5556
no issue - ran [ember-native-class-codemod](https://github.com/ember-codemods/ember-native-class-codemod) to convert the majority of remaining EmberObject based controllers and components to native class syntax using the `@classic` decorator - skipped older style modal components (`components/modal-*.js`) due to observed incompatibilities in some cases
25 lines
616 B
JavaScript
25 lines
616 B
JavaScript
import Component from '@ember/component';
|
|
import classic from 'ember-classic-decorator';
|
|
import {action} from '@ember/object';
|
|
import {classNameBindings, tagName} from '@ember-decorators/component';
|
|
import {schedule} from '@ember/runloop';
|
|
|
|
@classic
|
|
@classNameBindings('active')
|
|
@tagName('li')
|
|
export default class GhActivatingListItem extends Component {
|
|
active = false;
|
|
linkClasses = null;
|
|
|
|
@action
|
|
setActive(value) {
|
|
schedule('afterRender', this, function () {
|
|
this.set('active', value);
|
|
});
|
|
}
|
|
|
|
click() {
|
|
this.element.querySelector('a').blur();
|
|
}
|
|
}
|