mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
6b4084287c
* chore: improve access field for comments for public boards (#1956) Co-authored-by: Bavisetti Narayan <72156168+NarayanBavisetti@users.noreply.github.com> * chore: update user activity endpoint to return only workspace activities (#1980) * fix: n+1 in issue history and issue automation tasks (#1994) * fix: issue exports in self hosted instances (#1996) * fix: issue exports in self hosted instances * dev: remove print logs * dev: update url creation function * fix: changed the presigned url for self hosted exports --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> * dev: remove gunicorn config (#1999) * feat: mark all read notifications (#1963) * feat: mark all read notifications * fix: changed string to boolean * fix: changed snoozed condition * chore: project public board issue retrieve (#2003) * chore: project public board issue retrieve * dev: project issues list endpoint * fix: issue public retrieve endpoint * fix: only external comments will show in deploy boards (#2010) * fix: issue votes (#2006) * fix: issue votes * fix: added default as 1 in vote * fix: issue vote migration file * fix: access creation in comments (#2013) * dev: user timezone select option (#2002) * fix: start date filter not working on the platform (#2007) * feat: access selector for comment (#2012) * dev: access specifier for comment * chore: change access order * style: revamp of the issue details sidebar (#2014) * chore: update module status icons and colors (#2011) * chore: update module status icons and colors * refactor: import statements * fix: add default alue to module status * chore: track public board comments and reaction users for public deploy boards (#1972) * chore: track project deploy board comment and reaction users for public deploy boards * dev: remove tracking from project viewsets * feat: user timezones (#2009) * dev: user timezones * feat: user timezones * fix: user created by stats (#2016) * fix: asset key validation (#1938) * fix: asset key validation * chore: asset key validation in user assets --------- Co-authored-by: Bavisetti Narayan <narayan@Bavisettis-MacBook-Pro.local> * dev: revamp peek overview (#2021) * dev: mobx for issues store * refactor: peek overview component * chore: update open issue button * fix: issue mutation after any crud action * chore: remove peek overview from gantt * chore: refactor code * chore: tracking the history of issue reactions and votes. (#2020) * chore: tracking the issues reaction and vote history * fix: changed the keywords for vote and reaction * chore: added validation * dev: revamp publish project modal (#2022) * dev: revamp publish project modal * chore: sidebar dropdown text * fix: bugs on the user profile page (#2018) * chore: return issue votes in public issue list endpoint (#2026) * style: list view * [feat]: Tiptap table integration (#2008) * added basic table support * fixed table position at bottom * fixed image node deletion logic's regression issue * added compatible styles * enabled slash commands * disabled slash command and bubble menu's node selector for table cells * added dropcursor support to type below the table/image * blocked image uploads for handledrop and paste actions * style: kanban view * style: tiptap table (#2033) * style: theming added * chore: issue reactions and votes --------- Co-authored-by: Nikhil <118773738+pablohashescobar@users.noreply.github.com> Co-authored-by: Bavisetti Narayan <72156168+NarayanBavisetti@users.noreply.github.com> Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: Bavisetti Narayan <narayan@Bavisettis-MacBook-Pro.local> Co-authored-by: M. Palanikannan <73993394+Palanikannan1437@users.noreply.github.com>
316 lines
6.7 KiB
TypeScript
316 lines
6.7 KiB
TypeScript
import { createContext, useCallback, useReducer } from "react";
|
|
|
|
// components
|
|
import ToastAlert from "components/toast-alert";
|
|
// types
|
|
import {
|
|
IIssueFilterOptions,
|
|
TIssueViewOptions,
|
|
TIssueGroupByOptions,
|
|
TIssueOrderByOptions,
|
|
Properties,
|
|
} from "types";
|
|
|
|
export const profileIssuesContext = createContext<ContextType>({} as ContextType);
|
|
|
|
type IssueViewProps = {
|
|
issueView: TIssueViewOptions;
|
|
groupByProperty: TIssueGroupByOptions;
|
|
orderBy: TIssueOrderByOptions;
|
|
showEmptyGroups: boolean;
|
|
showSubIssues: boolean;
|
|
filters: IIssueFilterOptions;
|
|
properties: Properties;
|
|
};
|
|
|
|
type ReducerActionType = {
|
|
type:
|
|
| "SET_ISSUE_VIEW"
|
|
| "SET_ORDER_BY_PROPERTY"
|
|
| "SET_SHOW_EMPTY_STATES"
|
|
| "SET_FILTERS"
|
|
| "SET_PROPERTIES"
|
|
| "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;
|
|
setFilters: (filters: Partial<IIssueFilterOptions>) => void;
|
|
setProperties: (key: keyof Properties) => void;
|
|
setIssueView: (property: TIssueViewOptions) => void;
|
|
};
|
|
|
|
type StateType = {
|
|
issueView: TIssueViewOptions;
|
|
groupByProperty: TIssueGroupByOptions;
|
|
orderBy: TIssueOrderByOptions;
|
|
showEmptyGroups: boolean;
|
|
showSubIssues: boolean;
|
|
filters: IIssueFilterOptions;
|
|
properties: Properties;
|
|
};
|
|
type ReducerFunctionType = (state: StateType, action: ReducerActionType) => StateType;
|
|
|
|
export const initialState: StateType = {
|
|
issueView: "list",
|
|
groupByProperty: null,
|
|
orderBy: "-created_at",
|
|
showEmptyGroups: true,
|
|
showSubIssues: true,
|
|
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,
|
|
},
|
|
properties: {
|
|
assignee: true,
|
|
start_date: true,
|
|
due_date: true,
|
|
key: true,
|
|
labels: true,
|
|
priority: true,
|
|
state: true,
|
|
sub_issue_count: true,
|
|
attachment_count: true,
|
|
link: true,
|
|
estimate: true,
|
|
created_on: true,
|
|
updated_on: true,
|
|
},
|
|
};
|
|
|
|
export const reducer: ReducerFunctionType = (state, action) => {
|
|
const { type, payload } = action;
|
|
|
|
switch (type) {
|
|
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_FILTERS": {
|
|
const newState = {
|
|
...state,
|
|
filters: {
|
|
...state.filters,
|
|
...payload?.filters,
|
|
},
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
...newState,
|
|
};
|
|
}
|
|
|
|
case "SET_PROPERTIES": {
|
|
const newState = {
|
|
...state,
|
|
properties: {
|
|
...state.properties,
|
|
...payload?.properties,
|
|
},
|
|
};
|
|
|
|
return {
|
|
...state,
|
|
...newState,
|
|
};
|
|
}
|
|
|
|
default: {
|
|
return state;
|
|
}
|
|
}
|
|
};
|
|
|
|
export const ProfileIssuesContextProvider: React.FC<{ children: React.ReactNode }> = ({
|
|
children,
|
|
}) => {
|
|
const [state, dispatch] = useReducer(reducer, initialState);
|
|
|
|
const setIssueView = useCallback(
|
|
(property: TIssueViewOptions) => {
|
|
dispatch({
|
|
type: "SET_ISSUE_VIEW",
|
|
payload: {
|
|
issueView: property,
|
|
},
|
|
});
|
|
|
|
if (property === "kanban" && state.groupByProperty === null) {
|
|
dispatch({
|
|
type: "SET_GROUP_BY_PROPERTY",
|
|
payload: {
|
|
groupByProperty: "state_detail.group",
|
|
},
|
|
});
|
|
}
|
|
},
|
|
[state]
|
|
);
|
|
|
|
const setGroupByProperty = useCallback((property: TIssueGroupByOptions) => {
|
|
dispatch({
|
|
type: "SET_GROUP_BY_PROPERTY",
|
|
payload: {
|
|
groupByProperty: property,
|
|
},
|
|
});
|
|
}, []);
|
|
|
|
const setOrderBy = useCallback((property: TIssueOrderByOptions) => {
|
|
dispatch({
|
|
type: "SET_ORDER_BY_PROPERTY",
|
|
payload: {
|
|
orderBy: property,
|
|
},
|
|
});
|
|
}, []);
|
|
|
|
const setShowEmptyGroups = useCallback((property: boolean) => {
|
|
dispatch({
|
|
type: "SET_SHOW_EMPTY_STATES",
|
|
payload: {
|
|
showEmptyGroups: property,
|
|
},
|
|
});
|
|
}, []);
|
|
|
|
const setShowSubIssues = useCallback((property: boolean) => {
|
|
dispatch({
|
|
type: "SET_SHOW_SUB_ISSUES",
|
|
payload: {
|
|
showSubIssues: property,
|
|
},
|
|
});
|
|
}, []);
|
|
|
|
const setFilters = useCallback(
|
|
(property: Partial<IIssueFilterOptions>) => {
|
|
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,
|
|
},
|
|
},
|
|
});
|
|
},
|
|
[state]
|
|
);
|
|
|
|
const setProperties = useCallback(
|
|
(key: keyof Properties) => {
|
|
dispatch({
|
|
type: "SET_PROPERTIES",
|
|
payload: {
|
|
properties: {
|
|
...state.properties,
|
|
[key]: !state.properties[key],
|
|
},
|
|
},
|
|
});
|
|
},
|
|
[state]
|
|
);
|
|
|
|
return (
|
|
<profileIssuesContext.Provider
|
|
value={{
|
|
issueView: state.issueView,
|
|
setIssueView,
|
|
groupByProperty: state.groupByProperty,
|
|
setGroupByProperty,
|
|
orderBy: state.orderBy,
|
|
setOrderBy,
|
|
showEmptyGroups: state.showEmptyGroups,
|
|
setShowEmptyGroups,
|
|
showSubIssues: state.showSubIssues,
|
|
setShowSubIssues,
|
|
filters: state.filters,
|
|
setFilters,
|
|
properties: state.properties,
|
|
setProperties,
|
|
}}
|
|
>
|
|
<ToastAlert />
|
|
{children}
|
|
</profileIssuesContext.Provider>
|
|
);
|
|
};
|