import set from "lodash/set";
import { observable, action, makeObservable, runInAction } from "mobx";
// types
import { IInstance } from "@plane/types";
// services
import { InstanceService } from "@/services/instance.service";
// store types
import { RootStore } from "@/store/root.store";
type TError = {
status: string;
message: string;
data?: {
is_activated: boolean;
is_setup_done: boolean;
};
export interface IInstanceStore {
// observables
isLoading: boolean;
instance: IInstance | undefined;
error: TError | undefined;
// action
fetchInstanceInfo: () => Promise<void>;
hydrate: (data: IInstance) => void;
}
export class InstanceStore implements IInstanceStore {
isLoading: boolean = true;
instance: IInstance | undefined = undefined;
error: TError | undefined = undefined;
instanceService;
constructor(private store: RootStore) {
makeObservable(this, {
// observable
isLoading: observable.ref,
instance: observable,
error: observable,
// actions
fetchInstanceInfo: action,
hydrate: action,
});
this.instanceService = new InstanceService();
hydrate = (data: IInstance) => set(this, "instance", data);
/**
* @description fetching instance information
*/
fetchInstanceInfo = async () => {
try {
this.isLoading = true;
this.error = undefined;
const instance = await this.instanceService.getInstanceInfo();
runInAction(() => {
this.isLoading = false;
this.instance = instance;
} catch (error) {
this.error = {
status: "error",
message: "Failed to fetch instance info",