mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
167 lines
4.0 KiB
TypeScript
167 lines
4.0 KiB
TypeScript
|
import { action, makeObservable, observable, runInAction } from "mobx";
|
||
|
// services
|
||
|
import { UserService } from "services/user.service";
|
||
|
// types
|
||
|
import { TUserProfile } from "@plane/types";
|
||
|
|
||
|
type TError = {
|
||
|
status: string;
|
||
|
message: string;
|
||
|
};
|
||
|
|
||
|
export interface IProfileStore {
|
||
|
// observables
|
||
|
isLoading: boolean;
|
||
|
data: TUserProfile;
|
||
|
error: TError | undefined;
|
||
|
// actions
|
||
|
fetchUserProfile: () => Promise<TUserProfile | undefined>;
|
||
|
updateUserProfile: (data: Partial<TUserProfile>) => Promise<void>;
|
||
|
updateUserOnBoard: () => Promise<void>;
|
||
|
updateTourCompleted: () => Promise<void>;
|
||
|
}
|
||
|
|
||
|
export class ProfileStore implements IProfileStore {
|
||
|
isLoading: boolean = false;
|
||
|
data: TUserProfile = {
|
||
|
id: undefined,
|
||
|
user: undefined,
|
||
|
role: undefined,
|
||
|
last_workspace_id: undefined,
|
||
|
theme: {
|
||
|
theme: undefined,
|
||
|
text: undefined,
|
||
|
palette: undefined,
|
||
|
primary: undefined,
|
||
|
background: undefined,
|
||
|
darkPalette: undefined,
|
||
|
sidebarText: undefined,
|
||
|
sidebarBackground: undefined,
|
||
|
},
|
||
|
onboarding_step: {
|
||
|
workspace_join: false,
|
||
|
profile_complete: false,
|
||
|
workspace_create: false,
|
||
|
workspace_invite: false,
|
||
|
},
|
||
|
is_onboarded: false,
|
||
|
is_tour_completed: false,
|
||
|
use_case: undefined,
|
||
|
billing_address_country: undefined,
|
||
|
billing_address: undefined,
|
||
|
has_billing_address: false,
|
||
|
created_at: "",
|
||
|
updated_at: "",
|
||
|
};
|
||
|
error: TError | undefined = undefined;
|
||
|
// services
|
||
|
userService: UserService;
|
||
|
|
||
|
constructor() {
|
||
|
makeObservable(this, {
|
||
|
// observables
|
||
|
isLoading: observable.ref,
|
||
|
data: observable,
|
||
|
error: observable,
|
||
|
// actions
|
||
|
fetchUserProfile: action,
|
||
|
updateUserProfile: action,
|
||
|
updateUserOnBoard: action,
|
||
|
updateTourCompleted: action,
|
||
|
});
|
||
|
// services
|
||
|
this.userService = new UserService();
|
||
|
}
|
||
|
|
||
|
// actions
|
||
|
fetchUserProfile = async () => {
|
||
|
try {
|
||
|
runInAction(() => {
|
||
|
this.isLoading = true;
|
||
|
this.error = undefined;
|
||
|
});
|
||
|
const userProfile = await this.userService.getCurrentUserProfile();
|
||
|
runInAction(() => {
|
||
|
this.isLoading = false;
|
||
|
this.data = userProfile;
|
||
|
});
|
||
|
|
||
|
return userProfile;
|
||
|
} catch (error) {
|
||
|
runInAction(() => {
|
||
|
this.isLoading = true;
|
||
|
this.error = {
|
||
|
status: "error",
|
||
|
message: "Failed to fetch instance info",
|
||
|
};
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
updateUserProfile = async (data: Partial<TUserProfile>) => {
|
||
|
try {
|
||
|
runInAction(() => {
|
||
|
this.isLoading = true;
|
||
|
this.error = undefined;
|
||
|
});
|
||
|
const userProfile = await this.userService.updateCurrentUserProfile(data);
|
||
|
runInAction(() => {
|
||
|
this.isLoading = false;
|
||
|
this.data = userProfile;
|
||
|
});
|
||
|
} catch (error) {
|
||
|
console.log("Failed to fetch profile details");
|
||
|
runInAction(() => {
|
||
|
this.isLoading = true;
|
||
|
this.error = {
|
||
|
status: "error",
|
||
|
message: "Failed to fetch instance info",
|
||
|
};
|
||
|
});
|
||
|
}
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Updates the user onboarding status
|
||
|
* @returns Promise<void>
|
||
|
*/
|
||
|
updateUserOnBoard = async () => {
|
||
|
try {
|
||
|
runInAction(() => {
|
||
|
this.data = {
|
||
|
...this.data,
|
||
|
is_onboarded: true,
|
||
|
} as TUserProfile;
|
||
|
});
|
||
|
const user = this.data ?? undefined;
|
||
|
if (!user) return;
|
||
|
await this.userService.updateUserOnBoard();
|
||
|
} catch (error) {
|
||
|
this.fetchUserProfile();
|
||
|
throw error;
|
||
|
}
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* Updates the user tour completed status
|
||
|
* @returns Promise<void>
|
||
|
*/
|
||
|
updateTourCompleted = async () => {
|
||
|
try {
|
||
|
if (this.data) {
|
||
|
runInAction(() => {
|
||
|
this.data = {
|
||
|
...this.data,
|
||
|
is_tour_completed: true,
|
||
|
} as TUserProfile;
|
||
|
});
|
||
|
const response = await this.userService.updateUserTourCompleted();
|
||
|
return response;
|
||
|
}
|
||
|
} catch (error) {
|
||
|
this.fetchUserProfile();
|
||
|
throw error;
|
||
|
}
|
||
|
};
|
||
|
}
|