123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- import {createStore} from 'reflux';
- import {SidebarPanelKey} from 'sentry/components/sidebar/types';
- import {CommonStoreDefinition} from './types';
- type ActivePanelType = SidebarPanelKey | '';
- interface SidebarPanelStoreDefinition extends CommonStoreDefinition<ActivePanelType> {
- activatePanel(panel: SidebarPanelKey): void;
- activePanel: ActivePanelType;
- hidePanel(): void;
- togglePanel(panel: SidebarPanelKey): void;
- }
- const storeConfig: SidebarPanelStoreDefinition = {
- activePanel: '',
- activatePanel(panel: SidebarPanelKey) {
- this.activePanel = panel;
- this.trigger(this.activePanel);
- },
- togglePanel(panel: SidebarPanelKey) {
- if (this.activePanel === panel) {
- this.hidePanel();
- } else {
- this.activatePanel(panel);
- }
- },
- hidePanel() {
- this.activePanel = '';
- this.trigger(this.activePanel);
- },
- getState() {
- return this.activePanel;
- },
- };
- /**
- * This store is used to hold local user preferences
- * Side-effects (like reading/writing to cookies) are done in associated actionCreators
- */
- const SidebarPanelStore = createStore(storeConfig);
- export default SidebarPanelStore;
|