mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
928ebdf632
* refactor: issues filter logic * fix: removed fetch logic from hooks * feat: filter by assignee and label * chore: remove filter buttons * feat: filter options * fix: mutation for issue update on both kanban & list --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
100 lines
2.4 KiB
TypeScript
100 lines
2.4 KiB
TypeScript
import { createContext, useCallback, useReducer, useEffect } from "react";
|
|
import { useRouter } from "next/router";
|
|
// swr
|
|
import useSWR from "swr";
|
|
// components
|
|
import ToastAlert from "components/toast-alert";
|
|
// services
|
|
import projectService from "services/project.service";
|
|
// fetch-keys
|
|
import { USER_PROJECT_VIEW } from "constants/fetch-keys";
|
|
// constants
|
|
|
|
export const themeContext = createContext<ContextType>({} as ContextType);
|
|
|
|
type ThemeProps = {
|
|
collapsed: boolean;
|
|
};
|
|
|
|
type ReducerActionType = {
|
|
type: "TOGGLE_SIDEBAR" | "REHYDRATE_THEME";
|
|
payload?: Partial<ThemeProps>;
|
|
};
|
|
|
|
type ContextType = {
|
|
collapsed: boolean;
|
|
toggleCollapsed: () => void;
|
|
};
|
|
|
|
type StateType = {
|
|
collapsed: boolean;
|
|
};
|
|
type ReducerFunctionType = (state: StateType, action: ReducerActionType) => StateType;
|
|
|
|
export const initialState: StateType = {
|
|
collapsed: false,
|
|
};
|
|
|
|
export const reducer: ReducerFunctionType = (state, action) => {
|
|
const { type, payload } = action;
|
|
|
|
switch (type) {
|
|
case "TOGGLE_SIDEBAR":
|
|
const newState = {
|
|
...state,
|
|
collapsed: !state.collapsed,
|
|
};
|
|
localStorage.setItem("collapsed", JSON.stringify(newState.collapsed));
|
|
return newState;
|
|
|
|
case "REHYDRATE_THEME": {
|
|
let collapsed: any = localStorage.getItem("collapsed");
|
|
collapsed = collapsed ? JSON.parse(collapsed) : false;
|
|
return { ...initialState, ...payload, collapsed };
|
|
}
|
|
|
|
default: {
|
|
return state;
|
|
}
|
|
}
|
|
};
|
|
|
|
export const ThemeContextProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => {
|
|
const [state, dispatch] = useReducer(reducer, initialState);
|
|
|
|
const router = useRouter();
|
|
const { workspaceSlug, projectId } = router.query;
|
|
|
|
const { data: myViewProps } = useSWR(
|
|
workspaceSlug && projectId ? USER_PROJECT_VIEW(projectId as string) : null,
|
|
workspaceSlug && projectId
|
|
? () => projectService.projectMemberMe(workspaceSlug as string, projectId as string)
|
|
: null
|
|
);
|
|
|
|
const toggleCollapsed = useCallback(() => {
|
|
dispatch({
|
|
type: "TOGGLE_SIDEBAR",
|
|
});
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
dispatch({
|
|
type: "REHYDRATE_THEME",
|
|
payload: myViewProps?.view_props as any,
|
|
});
|
|
}, [myViewProps]);
|
|
|
|
return (
|
|
<themeContext.Provider
|
|
value={{
|
|
collapsed: state.collapsed,
|
|
toggleCollapsed,
|
|
}}
|
|
>
|
|
<ToastAlert />
|
|
{children}
|
|
</themeContext.Provider>
|
|
);
|
|
};
|