123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- import {createStore} from 'reflux';
- import type {Committer, ReleaseCommitter} from 'sentry/types';
- type State = {
- // Use `getCommitterStoreKey` to generate key
- [key: string]: {
- committers?: Committer[];
- committersError?: Error;
- committersLoading?: boolean;
- releaseCommitters?: ReleaseCommitter[];
- };
- };
- interface CommitterStoreDefinition extends Reflux.StoreDefinition {
- get(
- orgSlug: string,
- projectSlug: string,
- eventId: string
- ): {
- committers?: Committer[];
- committersError?: Error;
- committersLoading?: boolean;
- };
- getState(): State;
- init(): void;
- load(orgSlug: string, projectSlug: string, eventId: string): void;
- loadError(orgSlug: string, projectSlug: string, eventId: string, error: Error): void;
- loadSuccess(
- orgSlug: string,
- projectSlug: string,
- eventId: string,
- committers: Committer[],
- releaseCommitters?: ReleaseCommitter[]
- ): void;
- state: State;
- }
- export const storeConfig: CommitterStoreDefinition = {
- state: {},
- init() {
- this.reset();
- },
- reset() {
- this.state = {};
- this.trigger(this.state);
- },
- load(orgSlug: string, projectSlug: string, eventId: string) {
- const key = getCommitterStoreKey(orgSlug, projectSlug, eventId);
- this.state = {
- ...this.state,
- [key]: {
- committers: undefined,
- committersLoading: true,
- committersError: undefined,
- },
- };
- this.trigger(this.state);
- },
- loadError(orgSlug: string, projectSlug: string, eventId: string, err: Error) {
- const key = getCommitterStoreKey(orgSlug, projectSlug, eventId);
- this.state = {
- ...this.state,
- [key]: {
- committers: undefined,
- committersLoading: false,
- committersError: err,
- },
- };
- this.trigger(this.state);
- },
- loadSuccess(
- orgSlug: string,
- projectSlug: string,
- eventId: string,
- committers: Committer[],
- releaseCommitters?: ReleaseCommitter[]
- ) {
- const key = getCommitterStoreKey(orgSlug, projectSlug, eventId);
- this.state = {
- ...this.state,
- [key]: {
- committers,
- releaseCommitters,
- committersLoading: false,
- committersError: undefined,
- },
- };
- this.trigger(this.state);
- },
- get(orgSlug: string, projectSlug: string, eventId: string) {
- const key = getCommitterStoreKey(orgSlug, projectSlug, eventId);
- return {...this.state[key]};
- },
- getState() {
- return this.state;
- },
- };
- export function getCommitterStoreKey(
- orgSlug: string,
- projectSlug: string,
- eventId: string
- ): string {
- return `${orgSlug} ${projectSlug} ${eventId}`;
- }
- const CommitterStore = createStore(storeConfig);
- export default CommitterStore;
|