mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
1e152c666c
* chore: moved app & space from apps to root * chore: modified workspace configuration * chore: modified dockerfiles for space and web * chore: modified icons for space * feat: updated files for new svg icons supported by next-images * chore: added /spaces base path for next * chore: added compose config for space * chore: updated husky configuration * chore: updated workflows for new configuration * chore: changed app name to web * fix: resolved build errors with web * chore: reset file tracing root for both projects * chore: added nginx config for deploy * fix: eslint and tsconfig settings for space app * husky setup fixes based on new dir * eslint fixes * prettier formatting --------- Co-authored-by: Henit Chobisa <chobisa.henit@gmail.com>
129 lines
3.9 KiB
TypeScript
129 lines
3.9 KiB
TypeScript
import { useContext } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// contexts
|
|
import { issueViewContext } from "contexts/issue-view.context";
|
|
// services
|
|
import issuesService from "services/issues.service";
|
|
import cyclesService from "services/cycles.service";
|
|
import modulesService from "services/modules.service";
|
|
// types
|
|
import { IIssue } from "types";
|
|
// fetch-keys
|
|
import {
|
|
CYCLE_ISSUES_WITH_PARAMS,
|
|
MODULE_ISSUES_WITH_PARAMS,
|
|
PROJECT_ISSUES_LIST_WITH_PARAMS,
|
|
VIEW_ISSUES,
|
|
} from "constants/fetch-keys";
|
|
|
|
const useSpreadsheetIssuesView = () => {
|
|
const {
|
|
issueView,
|
|
orderBy,
|
|
setOrderBy,
|
|
filters,
|
|
setFilters,
|
|
resetFilterToDefault,
|
|
setNewFilterDefaultView,
|
|
setIssueView,
|
|
} = useContext(issueViewContext);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, cycleId, moduleId, viewId } = router.query;
|
|
|
|
const params: any = {
|
|
order_by: orderBy,
|
|
assignees: filters?.assignees ? filters?.assignees.join(",") : undefined,
|
|
state: filters?.state ? filters?.state.join(",") : undefined,
|
|
priority: filters?.priority ? filters?.priority.join(",") : undefined,
|
|
type: filters?.type ? filters?.type : undefined,
|
|
labels: filters?.labels ? filters?.labels.join(",") : undefined,
|
|
created_by: filters?.created_by ? filters?.created_by.join(",") : undefined,
|
|
start_date: filters?.start_date ? filters?.start_date.join(",") : undefined,
|
|
target_date: filters?.target_date ? filters?.target_date.join(",") : undefined,
|
|
sub_issue: "false",
|
|
};
|
|
|
|
const { data: projectSpreadsheetIssues, mutate: mutateProjectSpreadsheetIssues } = useSWR(
|
|
workspaceSlug && projectId
|
|
? PROJECT_ISSUES_LIST_WITH_PARAMS(projectId.toString(), params)
|
|
: null,
|
|
workspaceSlug && projectId
|
|
? () =>
|
|
issuesService.getIssuesWithParams(workspaceSlug.toString(), projectId.toString(), params)
|
|
: null
|
|
);
|
|
|
|
const { data: cycleSpreadsheetIssues, mutate: mutateCycleSpreadsheetIssues } = useSWR(
|
|
workspaceSlug && projectId && cycleId
|
|
? CYCLE_ISSUES_WITH_PARAMS(cycleId.toString(), params)
|
|
: null,
|
|
workspaceSlug && projectId && cycleId
|
|
? () =>
|
|
cyclesService.getCycleIssuesWithParams(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
cycleId.toString(),
|
|
params
|
|
)
|
|
: null
|
|
);
|
|
|
|
const { data: moduleSpreadsheetIssues, mutate: mutateModuleSpreadsheetIssues } = useSWR(
|
|
workspaceSlug && projectId && moduleId
|
|
? MODULE_ISSUES_WITH_PARAMS(moduleId.toString(), params)
|
|
: null,
|
|
workspaceSlug && projectId && moduleId
|
|
? () =>
|
|
modulesService.getModuleIssuesWithParams(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
moduleId.toString(),
|
|
params
|
|
)
|
|
: null
|
|
);
|
|
|
|
const { data: viewSpreadsheetIssues, mutate: mutateViewSpreadsheetIssues } = useSWR(
|
|
workspaceSlug && projectId && viewId && params ? VIEW_ISSUES(viewId.toString(), params) : null,
|
|
workspaceSlug && projectId && viewId && params
|
|
? () =>
|
|
issuesService.getIssuesWithParams(workspaceSlug.toString(), projectId.toString(), params)
|
|
: null
|
|
);
|
|
|
|
const spreadsheetIssues = cycleId
|
|
? (cycleSpreadsheetIssues as IIssue[])
|
|
: moduleId
|
|
? (moduleSpreadsheetIssues as IIssue[])
|
|
: viewId
|
|
? (viewSpreadsheetIssues as IIssue[])
|
|
: (projectSpreadsheetIssues as IIssue[]);
|
|
|
|
return {
|
|
issueView,
|
|
mutateIssues: cycleId
|
|
? mutateCycleSpreadsheetIssues
|
|
: moduleId
|
|
? mutateModuleSpreadsheetIssues
|
|
: viewId
|
|
? mutateViewSpreadsheetIssues
|
|
: mutateProjectSpreadsheetIssues,
|
|
spreadsheetIssues: spreadsheetIssues ?? [],
|
|
orderBy,
|
|
setOrderBy,
|
|
filters,
|
|
setFilters,
|
|
params,
|
|
resetFilterToDefault,
|
|
setNewFilterDefaultView,
|
|
setIssueView,
|
|
} as const;
|
|
};
|
|
|
|
export default useSpreadsheetIssuesView;
|