mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
feac9682d0
- Refactor to handle deprecations including removal of all Views, ArrayControllers, and ItemControllers.
33 lines
892 B
JavaScript
33 lines
892 B
JavaScript
import Ember from 'ember';
|
|
// See gh-tabs-manager.js for use
|
|
var Tab = Ember.Component.extend({
|
|
tabsManager: Ember.computed(function () {
|
|
return this.nearestWithProperty('isTabsManager');
|
|
}),
|
|
|
|
active: Ember.computed('tabsManager.activeTab', function () {
|
|
return this.get('tabsManager.activeTab') === this;
|
|
}),
|
|
|
|
index: Ember.computed('tabsManager.tabs.@each', function () {
|
|
return this.get('tabsManager.tabs').indexOf(this);
|
|
}),
|
|
|
|
// Select on click
|
|
click: function () {
|
|
this.get('tabsManager').select(this);
|
|
},
|
|
|
|
willRender: function () {
|
|
// register the tabs with the tab manager
|
|
this.get('tabsManager').registerTab(this);
|
|
},
|
|
|
|
willDestroyElement: function () {
|
|
// unregister the tabs with the tab manager
|
|
this.get('tabsManager').unregisterTab(this);
|
|
}
|
|
});
|
|
|
|
export default Tab;
|