forked from github/plane
e1e9a5ed96
* dev: Helpers * dev: views * dev: Chart views Month, Year and Day * dev: Chart Workflow updates * update: scroll functionality implementation * update: data vaidation * update: date renders and issue filter in the month view * update: new date render month view * update: scroll enabled left in chart * update: Item render from the date it created. * update: width implementation in chat view * dev: chart render functionality in the gantt chart * update: month view fix * dev: chart render issues resolved * update: fixed allchat views * update: updated week view default values * update: integrated chart view in issues * update: grabble and sidebar logic impleemntation and integrated gantt in issues * update: Preview gantt chart in month view * fix: mutation in gantt chart after creating a new issue * chore: cycles and modules list gantt chart * update: Ui changes on gantt view * fix: gantt chart height, chore: remove link from issue --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
49 lines
1.5 KiB
TypeScript
49 lines
1.5 KiB
TypeScript
import React, { createContext, useState } from "react";
|
|
// types
|
|
import { ChartContextData, ChartContextActionPayload, ChartContextReducer } from "../types";
|
|
// data
|
|
import { allViewsWithData, currentViewDataWithView } from "../data";
|
|
|
|
export const ChartContext = createContext<ChartContextReducer | undefined>(undefined);
|
|
|
|
const chartReducer = (
|
|
state: ChartContextData,
|
|
action: ChartContextActionPayload
|
|
): ChartContextData => {
|
|
switch (action.type) {
|
|
case "CURRENT_VIEW":
|
|
return { ...state, currentView: action.payload };
|
|
case "CURRENT_VIEW_DATA":
|
|
return { ...state, currentViewData: action.payload };
|
|
case "RENDER_VIEW":
|
|
return { ...state, currentViewData: action.payload };
|
|
case "PARTIAL_UPDATE":
|
|
return { ...state, ...action.payload };
|
|
default:
|
|
return state;
|
|
}
|
|
};
|
|
|
|
const initialView = "month";
|
|
|
|
export const ChartContextProvider: React.FC<{ children: React.ReactNode }> = ({ children }) => {
|
|
const [state, dispatch] = useState<ChartContextData>({
|
|
currentView: initialView,
|
|
currentViewData: currentViewDataWithView(initialView),
|
|
renderView: [],
|
|
allViews: allViewsWithData,
|
|
});
|
|
|
|
const handleDispatch = (action: ChartContextActionPayload): ChartContextData => {
|
|
const newState = chartReducer(state, action);
|
|
dispatch(() => newState);
|
|
return newState;
|
|
};
|
|
|
|
return (
|
|
<ChartContext.Provider value={{ ...state, dispatch: handleDispatch }}>
|
|
{children}
|
|
</ChartContext.Provider>
|
|
);
|
|
};
|