2023-01-30 14:05:18 +00:00
|
|
|
import { createContext, useCallback, useEffect, useReducer } from "react";
|
2023-01-26 18:12:20 +00:00
|
|
|
|
|
|
|
import { useRouter } from "next/router";
|
|
|
|
|
|
|
|
import useSWR from "swr";
|
|
|
|
|
|
|
|
// components
|
|
|
|
import ToastAlert from "components/toast-alert";
|
|
|
|
// services
|
|
|
|
import projectService from "services/project.service";
|
|
|
|
// types
|
|
|
|
import type { IIssue, NestedKeyOf } from "types";
|
|
|
|
// fetch-keys
|
|
|
|
import { USER_PROJECT_VIEW } from "constants/fetch-keys";
|
|
|
|
|
|
|
|
export const issueViewContext = createContext<ContextType>({} as ContextType);
|
|
|
|
|
|
|
|
type IssueViewProps = {
|
|
|
|
issueView: "list" | "kanban" | null;
|
|
|
|
groupByProperty: NestedKeyOf<IIssue> | null;
|
|
|
|
filterIssue: "activeIssue" | "backlogIssue" | null;
|
2023-02-20 13:49:46 +00:00
|
|
|
orderBy: NestedKeyOf<IIssue> | null;
|
2023-01-26 18:12:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
type ReducerActionType = {
|
|
|
|
type:
|
2023-01-30 14:05:18 +00:00
|
|
|
| "REHYDRATE_THEME"
|
2023-01-26 18:12:20 +00:00
|
|
|
| "SET_ISSUE_VIEW"
|
|
|
|
| "SET_ORDER_BY_PROPERTY"
|
|
|
|
| "SET_FILTER_ISSUES"
|
|
|
|
| "SET_GROUP_BY_PROPERTY"
|
|
|
|
| "RESET_TO_DEFAULT";
|
|
|
|
payload?: Partial<IssueViewProps>;
|
|
|
|
};
|
|
|
|
|
|
|
|
type ContextType = {
|
2023-02-20 13:49:46 +00:00
|
|
|
orderBy: NestedKeyOf<IIssue> | null;
|
2023-01-26 18:12:20 +00:00
|
|
|
issueView: "list" | "kanban" | null;
|
|
|
|
groupByProperty: NestedKeyOf<IIssue> | null;
|
|
|
|
filterIssue: "activeIssue" | "backlogIssue" | null;
|
|
|
|
setGroupByProperty: (property: NestedKeyOf<IIssue> | null) => void;
|
2023-02-20 13:49:46 +00:00
|
|
|
setOrderBy: (property: NestedKeyOf<IIssue> | null) => void;
|
2023-01-26 18:12:20 +00:00
|
|
|
setFilterIssue: (property: "activeIssue" | "backlogIssue" | null) => void;
|
|
|
|
resetFilterToDefault: () => void;
|
|
|
|
setNewFilterDefaultView: () => void;
|
|
|
|
setIssueViewToKanban: () => void;
|
|
|
|
setIssueViewToList: () => void;
|
|
|
|
};
|
|
|
|
|
|
|
|
type StateType = {
|
|
|
|
issueView: "list" | "kanban" | null;
|
|
|
|
groupByProperty: NestedKeyOf<IIssue> | null;
|
|
|
|
filterIssue: "activeIssue" | "backlogIssue" | null;
|
2023-02-20 13:49:46 +00:00
|
|
|
orderBy: NestedKeyOf<IIssue> | null;
|
2023-01-26 18:12:20 +00:00
|
|
|
};
|
|
|
|
type ReducerFunctionType = (state: StateType, action: ReducerActionType) => StateType;
|
|
|
|
|
|
|
|
export const initialState: StateType = {
|
|
|
|
issueView: "list",
|
|
|
|
groupByProperty: null,
|
2023-02-14 14:35:32 +00:00
|
|
|
orderBy: "created_at",
|
2023-01-26 18:12:20 +00:00
|
|
|
filterIssue: null,
|
|
|
|
};
|
|
|
|
|
|
|
|
export const reducer: ReducerFunctionType = (state, action) => {
|
|
|
|
const { type, payload } = action;
|
|
|
|
|
|
|
|
switch (type) {
|
2023-01-30 14:05:18 +00:00
|
|
|
case "REHYDRATE_THEME": {
|
|
|
|
let collapsed: any = localStorage.getItem("collapsed");
|
|
|
|
collapsed = collapsed ? JSON.parse(collapsed) : false;
|
|
|
|
return { ...initialState, ...payload, collapsed };
|
|
|
|
}
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
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 || null,
|
|
|
|
};
|
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
...newState,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
case "SET_FILTER_ISSUES": {
|
|
|
|
const newState = {
|
|
|
|
...state,
|
|
|
|
filterIssue: payload?.filterIssue || null,
|
|
|
|
};
|
|
|
|
return {
|
|
|
|
...state,
|
|
|
|
...newState,
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
case "RESET_TO_DEFAULT": {
|
|
|
|
return {
|
|
|
|
...initialState,
|
|
|
|
...payload,
|
|
|
|
};
|
|
|
|
}
|
2023-02-14 14:35:32 +00:00
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
default: {
|
|
|
|
return state;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const saveDataToServer = async (workspaceSlug: string, projectID: string, state: any) => {
|
|
|
|
await projectService.setProjectView(workspaceSlug, projectID, {
|
|
|
|
view_props: state,
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
const setNewDefault = async (workspaceSlug: string, projectID: string, state: any) => {
|
|
|
|
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 } = router.query;
|
|
|
|
|
|
|
|
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 setIssueViewToKanban = useCallback(() => {
|
|
|
|
dispatch({
|
|
|
|
type: "SET_ISSUE_VIEW",
|
|
|
|
payload: {
|
|
|
|
issueView: "kanban",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
dispatch({
|
|
|
|
type: "SET_GROUP_BY_PROPERTY",
|
|
|
|
payload: {
|
|
|
|
groupByProperty: "state_detail.name",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
|
|
...state,
|
|
|
|
issueView: "kanban",
|
|
|
|
groupByProperty: "state_detail.name",
|
|
|
|
});
|
|
|
|
}, [workspaceSlug, projectId, state]);
|
|
|
|
|
|
|
|
const setIssueViewToList = useCallback(() => {
|
|
|
|
dispatch({
|
|
|
|
type: "SET_ISSUE_VIEW",
|
|
|
|
payload: {
|
|
|
|
issueView: "list",
|
|
|
|
},
|
|
|
|
});
|
|
|
|
dispatch({
|
|
|
|
type: "SET_GROUP_BY_PROPERTY",
|
|
|
|
payload: {
|
|
|
|
groupByProperty: null,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
|
|
...state,
|
|
|
|
issueView: "list",
|
|
|
|
groupByProperty: null,
|
|
|
|
});
|
|
|
|
}, [workspaceSlug, projectId, state]);
|
|
|
|
|
|
|
|
const setGroupByProperty = useCallback(
|
|
|
|
(property: NestedKeyOf<IIssue> | null) => {
|
|
|
|
dispatch({
|
|
|
|
type: "SET_GROUP_BY_PROPERTY",
|
|
|
|
payload: {
|
|
|
|
groupByProperty: property,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
|
|
...state,
|
|
|
|
groupByProperty: property,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
[projectId, workspaceSlug, state]
|
|
|
|
);
|
|
|
|
|
|
|
|
const setOrderBy = useCallback(
|
2023-02-20 13:49:46 +00:00
|
|
|
(property: NestedKeyOf<IIssue> | null) => {
|
2023-01-26 18:12:20 +00:00
|
|
|
dispatch({
|
|
|
|
type: "SET_ORDER_BY_PROPERTY",
|
|
|
|
payload: {
|
|
|
|
orderBy: property,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, state);
|
|
|
|
},
|
|
|
|
[projectId, workspaceSlug, state]
|
|
|
|
);
|
|
|
|
|
|
|
|
const setFilterIssue = useCallback(
|
|
|
|
(property: "activeIssue" | "backlogIssue" | null) => {
|
|
|
|
dispatch({
|
|
|
|
type: "SET_FILTER_ISSUES",
|
|
|
|
payload: {
|
|
|
|
filterIssue: property,
|
|
|
|
},
|
|
|
|
});
|
|
|
|
|
|
|
|
if (!workspaceSlug || !projectId) return;
|
|
|
|
saveDataToServer(workspaceSlug as string, projectId as string, {
|
|
|
|
...state,
|
|
|
|
filterIssue: property,
|
|
|
|
});
|
|
|
|
},
|
|
|
|
[projectId, workspaceSlug, state]
|
|
|
|
);
|
|
|
|
|
|
|
|
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]);
|
|
|
|
|
2023-01-30 14:05:18 +00:00
|
|
|
useEffect(() => {
|
|
|
|
dispatch({
|
|
|
|
type: "REHYDRATE_THEME",
|
|
|
|
payload: myViewProps?.view_props,
|
|
|
|
});
|
|
|
|
}, [myViewProps]);
|
|
|
|
|
2023-01-26 18:12:20 +00:00
|
|
|
return (
|
|
|
|
<issueViewContext.Provider
|
|
|
|
value={{
|
|
|
|
issueView: state.issueView,
|
|
|
|
groupByProperty: state.groupByProperty,
|
|
|
|
setGroupByProperty,
|
|
|
|
orderBy: state.orderBy,
|
|
|
|
setOrderBy,
|
|
|
|
filterIssue: state.filterIssue,
|
|
|
|
setFilterIssue,
|
|
|
|
resetFilterToDefault: resetToDefault,
|
|
|
|
setNewFilterDefaultView: setNewDefaultView,
|
|
|
|
setIssueViewToKanban,
|
|
|
|
setIssueViewToList,
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<ToastAlert />
|
|
|
|
{children}
|
|
|
|
</issueViewContext.Provider>
|
|
|
|
);
|
|
|
|
};
|