mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-15 19:52:01 +03:00
097c78aad1
No issue - TabPanes weren't finding their tab due to not listing all their dependencies in Ember.computed
29 lines
848 B
JavaScript
29 lines
848 B
JavaScript
//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'),
|
|
|
|
// Register with the tabs manager
|
|
registerWithTabs: function () {
|
|
this.get('tabsManager').registerTabPane(this);
|
|
}.on('didInsertElement'),
|
|
unregisterWithTabs: function () {
|
|
this.get('tabsManager').unregisterTabPane(this);
|
|
}.on('willDestroyElement')
|
|
});
|
|
|
|
export default TabPane;
|