mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 05:50:35 +03:00
32 lines
872 B
JavaScript
32 lines
872 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);
|
|
},
|
|
|
|
// Registration methods
|
|
registerWithTabs: function () {
|
|
this.get('tabsManager').registerTab(this);
|
|
}.on('didInsertElement'),
|
|
|
|
unregisterWithTabs: function () {
|
|
this.get('tabsManager').unregisterTab(this);
|
|
}.on('willDestroyElement')
|
|
});
|
|
|
|
export default Tab;
|