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>
769 lines
18 KiB
TypeScript
769 lines
18 KiB
TypeScript
import { createContext, useCallback, useEffect, useReducer } from "react";
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
import useSWR, { mutate } from "swr";
|
|
|
|
// components
|
|
import ToastAlert from "components/toast-alert";
|
|
// services
|
|
import projectService from "services/project.service";
|
|
import cyclesService from "services/cycles.service";
|
|
import modulesService from "services/modules.service";
|
|
import viewsService from "services/views.service";
|
|
// types
|
|
import {
|
|
IIssueFilterOptions,
|
|
TIssueViewOptions,
|
|
IProjectMember,
|
|
TIssueGroupByOptions,
|
|
TIssueOrderByOptions,
|
|
ICurrentUserResponse,
|
|
} from "types";
|
|
// fetch-keys
|
|
import {
|
|
CYCLE_DETAILS,
|
|
MODULE_DETAILS,
|
|
USER_PROJECT_VIEW,
|
|
VIEW_DETAILS,
|
|
} from "constants/fetch-keys";
|
|
import useUserAuth from "hooks/use-user-auth";
|
|
|
|
export const issueViewContext = createContext<ContextType>({} as ContextType);
|
|
|
|
type IssueViewProps = {
|
|
issueView: TIssueViewOptions;
|
|
groupByProperty: TIssueGroupByOptions;
|
|
orderBy: TIssueOrderByOptions;
|
|
showEmptyGroups: boolean;
|
|
showSubIssues: boolean;
|
|
calendarDateRange: string;
|
|
filters: IIssueFilterOptions;
|
|
};
|
|
|
|
type ReducerActionType = {
|
|
type:
|
|
| "REHYDRATE_THEME"
|
|
| "SET_ISSUE_VIEW"
|
|
| "SET_ORDER_BY_PROPERTY"
|
|
| "SET_SHOW_EMPTY_STATES"
|
|
| "SET_CALENDAR_DATE_RANGE"
|
|
| "SET_FILTERS"
|
|
| "SET_GROUP_BY_PROPERTY"
|
|
| "RESET_TO_DEFAULT"
|
|
| "SET_SHOW_SUB_ISSUES";
|
|
payload?: Partial<IssueViewProps>;
|
|
};
|
|
|
|
type ContextType = IssueViewProps & {
|
|
setGroupByProperty: (property: TIssueGroupByOptions) => void;
|
|
setOrderBy: (property: TIssueOrderByOptions) => void;
|
|
setShowEmptyGroups: (property: boolean) => void;
|
|
setShowSubIssues: (value: boolean) => void;
|
|
setCalendarDateRange: (property: string) => void;
|
|
setFilters: (filters: Partial<IIssueFilterOptions>, saveToServer?: boolean) => void;
|
|
resetFilterToDefault: () => void;
|
|
setNewFilterDefaultView: () => void;
|
|
setIssueView: (property: TIssueViewOptions) => void;
|
|
};
|
|
|
|
type StateType = {
|
|
issueView: TIssueViewOptions;
|
|
groupByProperty: TIssueGroupByOptions;
|
|
orderBy: TIssueOrderByOptions;
|
|
showEmptyGroups: boolean;
|
|
showSubIssues: boolean;
|
|
calendarDateRange: string;
|
|
filters: IIssueFilterOptions;
|
|
};
|
|
type ReducerFunctionType = (state: StateType, action: ReducerActionType) => StateType;
|
|
|
|
export const initialState: StateType = {
|
|
issueView: "list",
|
|
groupByProperty: null,
|
|
orderBy: "-created_at",
|
|
showEmptyGroups: true,
|
|
showSubIssues: true,
|
|
calendarDateRange: "",
|
|
filters: {
|
|
type: null,
|
|
priority: null,
|
|
assignees: null,
|
|
labels: null,
|
|
state: null,
|
|
state_group: null,
|
|
subscriber: null,
|
|
created_by: null,
|
|
start_date: null,
|
|
target_date: null,
|
|
},
|
|
};
|
|
|
|
export const reducer: ReducerFunctionType = (state, action) => {
|
|
const { type, payload } = action;
|
|
|
|
switch (type) {
|
|
case "REHYDRATE_THEME": {
|
|
let collapsed: any = localStorage.getItem("collapsed");
|
|
collapsed = collapsed ? JSON.parse(collapsed) : false;
|
|
|
|
return { ...initialState, ...payload, collapsed };
|
|
}
|
|
|
|
case "SET_ISSUE_VIEW": {
|
|
const newState = {
|
|
...state,
|
|
issueView: payload?.issueView || "list",
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
...newState,
|
|
};
|
|
}
|
|
|
|
case "SET_GROUP_BY_PROPERTY": {
|
|
const newState = {
|
|
...state,
|
|
groupByProperty: payload?.groupByProperty || null,
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
...newState,
|
|
};
|
|
}
|
|
|
|
case "SET_ORDER_BY_PROPERTY": {
|
|
const newState = {
|
|
...state,
|
|
orderBy: payload?.orderBy || "-created_at",
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
...newState,
|
|
};
|
|
}
|
|
|
|
case "SET_SHOW_EMPTY_STATES": {
|
|
const newState = {
|
|
...state,
|
|
showEmptyGroups: payload?.showEmptyGroups || true,
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
...newState,
|
|
};
|
|
}
|
|
|
|
case "SET_SHOW_SUB_ISSUES": {
|
|
const newState = {
|
|
...state,
|
|
showSubIssues: payload?.showSubIssues || true,
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
...newState,
|
|
};
|
|
}
|
|
|
|
case "SET_CALENDAR_DATE_RANGE": {
|
|
const newState = {
|
|
...state,
|
|
calendarDateRange: payload?.calendarDateRange || "",
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
...newState,
|
|
};
|
|
}
|
|
|
|
case "SET_FILTERS": {
|
|
const newState = {
|
|
...state,
|
|
filters: {
|
|
...state.filters,
|
|
...payload?.filters,
|
|
},
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
...newState,
|
|
};
|
|
}
|
|
|
|
case "RESET_TO_DEFAULT": {
|
|
return {
|
|
...initialState,
|
|
...payload,
|
|
};
|
|
}
|
|
|
|
default: {
|
|
return state;
|
|
}
|
|
}
|
|
};
|
|
|
|
const saveDataToServer = async (workspaceSlug: string, projectID: string, state: any) => {
|
|
mutate<IProjectMember>(
|
|
workspaceSlug && projectID ? USER_PROJECT_VIEW(projectID as string) : null,
|
|
(prevData) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: state,
|
|
};
|
|
},
|
|
false
|
|
);
|
|
|
|
await projectService.setProjectView(workspaceSlug, projectID, {
|
|
view_props: state,
|
|
});
|
|
};
|
|
|
|
const saveCycleFilters = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
cycleId: string,
|
|
state: any,
|
|
user: ICurrentUserResponse | undefined
|
|
) => {
|
|
await cyclesService.patchCycle(
|
|
workspaceSlug,
|
|
projectId,
|
|
cycleId,
|
|
{
|
|
...state,
|
|
},
|
|
user
|
|
);
|
|
};
|
|
|
|
const saveModuleFilters = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
moduleId: string,
|
|
state: any,
|
|
user: ICurrentUserResponse | undefined
|
|
) => {
|
|
await modulesService.patchModule(
|
|
workspaceSlug,
|
|
projectId,
|
|
moduleId,
|
|
{
|
|
...state,
|
|
},
|
|
user
|
|
);
|
|
};
|
|
|
|
const saveViewFilters = async (
|
|
workspaceSlug: string,
|
|
projectId: string,
|
|
viewId: string,
|
|
state: any,
|
|
user: ICurrentUserResponse | undefined
|
|
) => {
|
|
await viewsService.patchView(
|
|
workspaceSlug,
|
|
projectId,
|
|
viewId,
|
|
{
|
|
...state,
|
|
},
|
|
user
|
|
);
|
|
};
|
|
|
|
const setNewDefault = async (workspaceSlug: string, projectId: string, state: any) => {
|
|
mutate<IProjectMember>(
|
|
workspaceSlug && projectId ? USER_PROJECT_VIEW(projectId as string) : null,
|
|
(prevData) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: state,
|
|
};
|
|
},
|
|
false
|
|
);
|
|
|
|
await projectService.setProjectView(workspaceSlug, projectId, {
|
|
view_props: state,
|
|
default_props: state,
|
|
});
|
|
};
|
|
|
|
export const IssueViewContextProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => {
|
|
const [state, dispatch] = useReducer(reducer, initialState);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId, cycleId, moduleId, viewId } = router.query;
|
|
|
|
const { user } = useUserAuth();
|
|
|
|
const { data: myViewProps, mutate: mutateMyViewProps } = useSWR(
|
|
workspaceSlug && projectId ? USER_PROJECT_VIEW(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.projectMemberMe(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const { data: viewDetails, mutate: mutateViewDetails } = useSWR(
|
|
workspaceSlug && projectId && viewId ? VIEW_DETAILS(viewId as string) : null,
|
|
workspaceSlug && projectId && viewId
|
|
? () =>
|
|
viewsService.getViewDetails(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
viewId as string
|
|
)
|
|
: null
|
|
);
|
|
|
|
const { data: cycleDetails, mutate: mutateCycleDetails } = useSWR(
|
|
workspaceSlug && projectId && cycleId ? CYCLE_DETAILS(cycleId as string) : null,
|
|
workspaceSlug && projectId && cycleId
|
|
? () =>
|
|
cyclesService.getCycleDetails(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
cycleId.toString()
|
|
)
|
|
: null
|
|
);
|
|
|
|
const { data: moduleDetails, mutate: mutateModuleDetails } = useSWR(
|
|
workspaceSlug && projectId && moduleId ? MODULE_DETAILS(moduleId.toString()) : null,
|
|
workspaceSlug && projectId && moduleId
|
|
? () =>
|
|
modulesService.getModuleDetails(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
moduleId.toString()
|
|
)
|
|
: null
|
|
);
|
|
|
|
const setIssueView = useCallback(
|
|
(property: TIssueViewOptions) => {
|
|
dispatch({
|
|
type: "SET_ISSUE_VIEW",
|
|
payload: {
|
|
issueView: property,
|
|
},
|
|
});
|
|
|
|
const additionalProperties = {
|
|
groupByProperty: state.groupByProperty,
|
|
orderBy: state.orderBy,
|
|
};
|
|
|
|
if (property === "kanban" && state.groupByProperty === null) {
|
|
additionalProperties.groupByProperty = "state";
|
|
dispatch({
|
|
type: "SET_GROUP_BY_PROPERTY",
|
|
payload: {
|
|
groupByProperty: "state",
|
|
},
|
|
});
|
|
}
|
|
if (property === "calendar") {
|
|
additionalProperties.groupByProperty = null;
|
|
dispatch({
|
|
type: "SET_GROUP_BY_PROPERTY",
|
|
payload: {
|
|
groupByProperty: null,
|
|
},
|
|
});
|
|
}
|
|
if (property === "gantt_chart") {
|
|
additionalProperties.orderBy = "sort_order";
|
|
dispatch({
|
|
type: "SET_ORDER_BY_PROPERTY",
|
|
payload: {
|
|
orderBy: "sort_order",
|
|
},
|
|
});
|
|
}
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
...state,
|
|
issueView: property,
|
|
...additionalProperties,
|
|
});
|
|
},
|
|
[workspaceSlug, projectId, state]
|
|
);
|
|
|
|
const setGroupByProperty = useCallback(
|
|
(property: TIssueGroupByOptions) => {
|
|
dispatch({
|
|
type: "SET_GROUP_BY_PROPERTY",
|
|
payload: {
|
|
groupByProperty: property,
|
|
},
|
|
});
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
mutateMyViewProps((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: {
|
|
...state,
|
|
groupByProperty: property,
|
|
},
|
|
};
|
|
}, false);
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
...state,
|
|
groupByProperty: property,
|
|
});
|
|
},
|
|
[projectId, workspaceSlug, state, mutateMyViewProps]
|
|
);
|
|
|
|
const setOrderBy = useCallback(
|
|
(property: TIssueOrderByOptions) => {
|
|
dispatch({
|
|
type: "SET_ORDER_BY_PROPERTY",
|
|
payload: {
|
|
orderBy: property,
|
|
},
|
|
});
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
mutateMyViewProps((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: {
|
|
...state,
|
|
orderBy: property,
|
|
},
|
|
};
|
|
}, false);
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
...state,
|
|
orderBy: property,
|
|
});
|
|
},
|
|
[projectId, workspaceSlug, state, mutateMyViewProps]
|
|
);
|
|
|
|
const setShowEmptyGroups = useCallback(
|
|
(property: boolean) => {
|
|
dispatch({
|
|
type: "SET_SHOW_EMPTY_STATES",
|
|
payload: {
|
|
showEmptyGroups: property,
|
|
},
|
|
});
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
mutateMyViewProps((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: {
|
|
...state,
|
|
showEmptyGroups: property,
|
|
},
|
|
};
|
|
}, false);
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
...state,
|
|
showEmptyGroups: property,
|
|
});
|
|
},
|
|
[projectId, workspaceSlug, state, mutateMyViewProps]
|
|
);
|
|
|
|
const setShowSubIssues = useCallback(
|
|
(property: boolean) => {
|
|
dispatch({
|
|
type: "SET_SHOW_SUB_ISSUES",
|
|
payload: {
|
|
showSubIssues: property,
|
|
},
|
|
});
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
mutateMyViewProps((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: {
|
|
...state,
|
|
showSubIssues: property,
|
|
},
|
|
};
|
|
}, false);
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
...state,
|
|
showSubIssues: property,
|
|
});
|
|
},
|
|
[projectId, workspaceSlug, state, mutateMyViewProps]
|
|
);
|
|
|
|
const setCalendarDateRange = useCallback(
|
|
(value: string) => {
|
|
dispatch({
|
|
type: "SET_CALENDAR_DATE_RANGE",
|
|
payload: {
|
|
calendarDateRange: value,
|
|
},
|
|
});
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
mutateMyViewProps((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: {
|
|
...state,
|
|
calendarDateRange: value,
|
|
},
|
|
};
|
|
}, false);
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
...state,
|
|
calendarDateRange: value,
|
|
});
|
|
},
|
|
[projectId, workspaceSlug, state, mutateMyViewProps]
|
|
);
|
|
|
|
const setFilters = useCallback(
|
|
(property: Partial<IIssueFilterOptions>, saveToServer = true) => {
|
|
Object.keys(property).forEach((key) => {
|
|
if (property[key as keyof typeof property]?.length === 0)
|
|
property[key as keyof typeof property] = null;
|
|
});
|
|
|
|
dispatch({
|
|
type: "SET_FILTERS",
|
|
payload: {
|
|
filters: {
|
|
...state.filters,
|
|
...property,
|
|
},
|
|
},
|
|
});
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
if (cycleId) {
|
|
mutateCycleDetails((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: {
|
|
filters: {
|
|
...state.filters,
|
|
...property,
|
|
},
|
|
},
|
|
};
|
|
}, false);
|
|
|
|
saveCycleFilters(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
cycleId.toString(),
|
|
{
|
|
view_props: {
|
|
filters: {
|
|
...state.filters,
|
|
...property,
|
|
},
|
|
},
|
|
},
|
|
user
|
|
);
|
|
} else if (moduleId) {
|
|
mutateModuleDetails((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: {
|
|
filters: {
|
|
...state.filters,
|
|
...property,
|
|
},
|
|
},
|
|
};
|
|
}, false);
|
|
|
|
saveModuleFilters(
|
|
workspaceSlug.toString(),
|
|
projectId.toString(),
|
|
moduleId.toString(),
|
|
{
|
|
view_props: {
|
|
filters: {
|
|
...state.filters,
|
|
...property,
|
|
},
|
|
},
|
|
},
|
|
user
|
|
);
|
|
} else if (viewId) {
|
|
mutateViewDetails((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
return {
|
|
...prevData,
|
|
query_data: {
|
|
...state.filters,
|
|
...property,
|
|
},
|
|
};
|
|
}, false);
|
|
if (saveToServer)
|
|
saveViewFilters(
|
|
workspaceSlug as string,
|
|
projectId as string,
|
|
viewId as string,
|
|
{
|
|
query_data: {
|
|
...state.filters,
|
|
...property,
|
|
},
|
|
},
|
|
user
|
|
);
|
|
} else {
|
|
mutateMyViewProps((prevData: any) => {
|
|
if (!prevData) return prevData;
|
|
|
|
return {
|
|
...prevData,
|
|
view_props: {
|
|
...state,
|
|
filters: {
|
|
...state.filters,
|
|
...property,
|
|
},
|
|
},
|
|
};
|
|
}, false);
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
...state,
|
|
filters: {
|
|
...state.filters,
|
|
...property,
|
|
},
|
|
});
|
|
}
|
|
},
|
|
[
|
|
projectId,
|
|
workspaceSlug,
|
|
state,
|
|
mutateMyViewProps,
|
|
cycleId,
|
|
mutateCycleDetails,
|
|
moduleId,
|
|
mutateModuleDetails,
|
|
viewId,
|
|
mutateViewDetails,
|
|
user,
|
|
]
|
|
);
|
|
|
|
const setNewDefaultView = useCallback(() => {
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
setNewDefault(workspaceSlug as string, projectId as string, state).then(() => {
|
|
mutateMyViewProps();
|
|
});
|
|
}, [projectId, workspaceSlug, state, mutateMyViewProps]);
|
|
|
|
const resetToDefault = useCallback(() => {
|
|
dispatch({
|
|
type: "RESET_TO_DEFAULT",
|
|
payload: myViewProps?.default_props,
|
|
});
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, myViewProps?.default_props);
|
|
}, [projectId, workspaceSlug, myViewProps]);
|
|
|
|
useEffect(() => {
|
|
dispatch({
|
|
type: "REHYDRATE_THEME",
|
|
payload: {
|
|
...myViewProps?.view_props,
|
|
filters: {
|
|
...(cycleId
|
|
? cycleDetails?.view_props.filters
|
|
: moduleId
|
|
? moduleDetails?.view_props.filters
|
|
: viewId
|
|
? viewDetails?.query_data
|
|
: myViewProps?.view_props?.filters),
|
|
} as any,
|
|
},
|
|
});
|
|
}, [myViewProps, cycleId, cycleDetails, moduleId, moduleDetails, viewId, viewDetails]);
|
|
|
|
return (
|
|
<issueViewContext.Provider
|
|
value={{
|
|
issueView: state.issueView,
|
|
groupByProperty: state.groupByProperty,
|
|
setGroupByProperty,
|
|
orderBy: state.orderBy,
|
|
showEmptyGroups: state.showEmptyGroups,
|
|
showSubIssues: state.showSubIssues,
|
|
calendarDateRange: state.calendarDateRange,
|
|
setCalendarDateRange,
|
|
setOrderBy,
|
|
setShowEmptyGroups,
|
|
setShowSubIssues,
|
|
filters: state.filters,
|
|
setFilters,
|
|
resetFilterToDefault: resetToDefault,
|
|
setNewFilterDefaultView: setNewDefaultView,
|
|
setIssueView,
|
|
}}
|
|
>
|
|
<ToastAlert />
|
|
{children}
|
|
</issueViewContext.Provider>
|
|
);
|
|
};
|