12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- import {createStore, StoreDefinition} from 'reflux';
- import {HookName, Hooks} from 'sentry/types/hooks';
- interface Internals {
- // XXX(epurkhiser): We could type this as {[H in HookName]?:
- // Array<Hooks[H]>}, however this causes typescript to produce a complex
- // union that it complains is 'too complex'
- hooks: any;
- }
- interface HookStoreDefinition extends StoreDefinition, Internals {
- add<H extends HookName>(hookName: H, callback: Hooks[H]): void;
- get<H extends HookName>(hookName: H): Array<Hooks[H]>;
- remove<H extends HookName>(hookName: H, callback: Hooks[H]): void;
- }
- const storeConfig: HookStoreDefinition = {
- hooks: {},
- init() {
- this.hooks = {};
- },
- add(hookName, callback) {
- if (this.hooks[hookName] === undefined) {
- this.hooks[hookName] = [];
- }
- this.hooks[hookName].push(callback);
- this.trigger(hookName, this.hooks[hookName]);
- },
- remove(hookName, callback) {
- if (this.hooks[hookName] === undefined) {
- return;
- }
- this.hooks[hookName] = this.hooks[hookName]!.filter(cb => cb !== callback);
- this.trigger(hookName, this.hooks[hookName]);
- },
- get(hookName) {
- return this.hooks[hookName]! || [];
- },
- };
- /**
- * HookStore is used to allow extensibility into Sentry's frontend via
- * registration of 'hook functions'.
- *
- * This functionality is primarily used by the SASS sentry.io product.
- */
- const HookStore = createStore(storeConfig);
- export default HookStore;
|