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.
31 lines
867 B
JavaScript
31 lines
867 B
JavaScript
import Ember from 'ember';
|
|
// See gh-tabs-manager.js for use
|
|
var TabPane = Ember.Component.extend({
|
|
classNameBindings: ['active'],
|
|
|
|
tabsManager: Ember.computed(function () {
|
|
return this.nearestWithProperty('isTabsManager');
|
|
}),
|
|
|
|
tab: Ember.computed('tabsManager.tabs.[]', 'tabsManager.tabPanes.[]', function () {
|
|
var index = this.get('tabsManager.tabPanes').indexOf(this),
|
|
tabs = this.get('tabsManager.tabs');
|
|
|
|
return tabs && tabs.objectAt(index);
|
|
}),
|
|
|
|
active: Ember.computed.alias('tab.active'),
|
|
|
|
willRender: function () {
|
|
// Register with the tabs manager
|
|
this.get('tabsManager').registerTabPane(this);
|
|
},
|
|
|
|
willDestroyElement: function () {
|
|
// Deregister with the tabs manager
|
|
this.get('tabsManager').unregisterTabPane(this);
|
|
}
|
|
});
|
|
|
|
export default TabPane;
|