mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
d2a3d00e82
* fix profile issue filters and kanban * fix profile draft and archived issues
158 lines
4.9 KiB
TypeScript
158 lines
4.9 KiB
TypeScript
import { action, observable, makeObservable, computed, runInAction, autorun } from "mobx";
|
|
// base class
|
|
import { IssueBaseStore } from "store/issues";
|
|
// services
|
|
import { IssueArchiveService } from "services/issue";
|
|
// types
|
|
import { IIssueResponse, TLoader, IGroupedIssues, ISubGroupedIssues, TUnGroupedIssues, ViewFlags } from "../../types";
|
|
import { RootStore } from "store/root";
|
|
|
|
export interface IProjectArchivedIssuesStore {
|
|
// observable
|
|
loader: TLoader;
|
|
issues: { [project_id: string]: IIssueResponse } | undefined;
|
|
// computed
|
|
getIssues: IIssueResponse | undefined;
|
|
getIssuesIds: IGroupedIssues | ISubGroupedIssues | TUnGroupedIssues | undefined;
|
|
// actions
|
|
fetchIssues: (workspaceSlug: string, projectId: string, loadType: TLoader) => Promise<IIssueResponse>;
|
|
removeIssue: (workspaceSlug: string, projectId: string, issueId: string) => Promise<void>;
|
|
removeIssueFromArchived: (workspaceSlug: string, projectId: string, issueId: string) => Promise<void>;
|
|
|
|
quickAddIssue: undefined;
|
|
viewFlags: ViewFlags;
|
|
}
|
|
|
|
export class ProjectArchivedIssuesStore extends IssueBaseStore implements IProjectArchivedIssuesStore {
|
|
loader: TLoader = "init-loader";
|
|
issues: { [project_id: string]: IIssueResponse } | undefined = undefined;
|
|
// root store
|
|
rootStore;
|
|
// service
|
|
archivedIssueService;
|
|
|
|
//viewData
|
|
viewFlags = {
|
|
enableQuickAdd: false,
|
|
enableIssueCreation: false,
|
|
enableInlineEditing: true,
|
|
};
|
|
|
|
constructor(_rootStore: RootStore) {
|
|
super(_rootStore);
|
|
|
|
makeObservable(this, {
|
|
// observable
|
|
loader: observable.ref,
|
|
issues: observable.ref,
|
|
// computed
|
|
getIssues: computed,
|
|
getIssuesIds: computed,
|
|
// action
|
|
fetchIssues: action,
|
|
removeIssue: action,
|
|
removeIssueFromArchived: action,
|
|
});
|
|
|
|
this.rootStore = _rootStore;
|
|
this.archivedIssueService = new IssueArchiveService();
|
|
|
|
autorun(() => {
|
|
const workspaceSlug = this.rootStore.workspace.workspaceSlug;
|
|
const projectId = this.rootStore.project.projectId;
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
const userFilters = this.rootStore?.projectArchivedIssuesFilter?.issueFilters?.filters;
|
|
if (userFilters) this.fetchIssues(workspaceSlug, projectId, "mutation");
|
|
});
|
|
}
|
|
|
|
get getIssues() {
|
|
const projectId = this.rootStore?.project.projectId;
|
|
if (!projectId || !this.issues || !this.issues[projectId]) return undefined;
|
|
|
|
return this.issues[projectId];
|
|
}
|
|
|
|
get getIssuesIds() {
|
|
const projectId = this.rootStore?.project.projectId;
|
|
const displayFilters = this.rootStore?.projectArchivedIssuesFilter?.issueFilters?.displayFilters;
|
|
if (!displayFilters) return undefined;
|
|
|
|
const groupBy = displayFilters?.group_by;
|
|
const orderBy = displayFilters?.order_by;
|
|
const layout = displayFilters?.layout;
|
|
|
|
if (!projectId || !this.issues || !this.issues[projectId]) return undefined;
|
|
|
|
let issues: IIssueResponse | IGroupedIssues | ISubGroupedIssues | TUnGroupedIssues | undefined = undefined;
|
|
|
|
if (layout === "list" && orderBy) {
|
|
if (groupBy) issues = this.groupedIssues(groupBy, orderBy, this.issues[projectId]);
|
|
else issues = this.unGroupedIssues(orderBy, this.issues[projectId]);
|
|
}
|
|
|
|
return issues;
|
|
}
|
|
|
|
fetchIssues = async (workspaceSlug: string, projectId: string, loadType: TLoader = "init-loader") => {
|
|
try {
|
|
this.loader = loadType;
|
|
|
|
const params = this.rootStore?.projectArchivedIssuesFilter?.appliedFilters;
|
|
const response = await this.archivedIssueService.getV3ArchivedIssues(workspaceSlug, projectId, params);
|
|
|
|
const _issues = { ...this.issues, [projectId]: { ...response } };
|
|
|
|
runInAction(() => {
|
|
this.issues = _issues;
|
|
this.loader = undefined;
|
|
});
|
|
|
|
return response;
|
|
} catch (error) {
|
|
console.error(error);
|
|
this.loader = undefined;
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
removeIssue = async (workspaceSlug: string, projectId: string, issueId: string) => {
|
|
try {
|
|
let _issues = { ...this.issues };
|
|
if (!_issues) _issues = {};
|
|
if (!_issues[projectId]) _issues[projectId] = {};
|
|
delete _issues?.[projectId]?.[issueId];
|
|
|
|
runInAction(() => {
|
|
this.issues = _issues;
|
|
});
|
|
|
|
const response = await this.archivedIssueService.deleteArchivedIssue(workspaceSlug, projectId, issueId);
|
|
return response;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
removeIssueFromArchived = async (workspaceSlug: string, projectId: string, issueId: string) => {
|
|
try {
|
|
let _issues = { ...this.issues };
|
|
if (!_issues) _issues = {};
|
|
if (!_issues[projectId]) _issues[projectId] = {};
|
|
delete _issues?.[projectId]?.[issueId];
|
|
|
|
runInAction(() => {
|
|
this.issues = _issues;
|
|
});
|
|
|
|
const response = await this.archivedIssueService.unarchiveIssue(workspaceSlug, projectId, issueId);
|
|
return response;
|
|
} catch (error) {
|
|
throw error;
|
|
}
|
|
};
|
|
|
|
quickAddIssue: undefined;
|
|
}
|