forked from github/plane
72 lines
1.7 KiB
TypeScript
72 lines
1.7 KiB
TypeScript
import { observable, action, makeObservable, runInAction } from "mobx";
|
|
// types
|
|
import { IInstance, IInstanceConfig } from "@plane/types";
|
|
// services
|
|
import { InstanceService } from "@/services/instance.service";
|
|
|
|
type TError = {
|
|
status: string;
|
|
message: string;
|
|
data?: {
|
|
is_activated: boolean;
|
|
is_setup_done: boolean;
|
|
};
|
|
};
|
|
|
|
export interface IInstanceStore {
|
|
// issues
|
|
isLoading: boolean;
|
|
instance: IInstance | undefined;
|
|
config: IInstanceConfig | undefined;
|
|
error: TError | undefined;
|
|
// action
|
|
fetchInstanceInfo: () => Promise<void>;
|
|
}
|
|
|
|
export class InstanceStore implements IInstanceStore {
|
|
isLoading: boolean = true;
|
|
instance: IInstance | undefined = undefined;
|
|
config: IInstanceConfig | undefined = undefined;
|
|
error: TError | undefined = undefined;
|
|
// services
|
|
instanceService;
|
|
|
|
constructor() {
|
|
makeObservable(this, {
|
|
// observable
|
|
isLoading: observable.ref,
|
|
instance: observable,
|
|
config: observable,
|
|
error: observable,
|
|
// actions
|
|
fetchInstanceInfo: action,
|
|
});
|
|
// services
|
|
this.instanceService = new InstanceService();
|
|
}
|
|
|
|
/**
|
|
* @description fetching instance information
|
|
*/
|
|
fetchInstanceInfo = async () => {
|
|
try {
|
|
this.isLoading = true;
|
|
this.error = undefined;
|
|
const instanceInfo = await this.instanceService.getInstanceInfo();
|
|
runInAction(() => {
|
|
this.isLoading = false;
|
|
this.instance = instanceInfo.instance;
|
|
this.config = instanceInfo.config;
|
|
});
|
|
} catch (error) {
|
|
runInAction(() => {
|
|
this.isLoading = false;
|
|
this.error = {
|
|
status: "error",
|
|
message: "Failed to fetch instance info",
|
|
};
|
|
});
|
|
}
|
|
};
|
|
}
|