forked from github/plane
e1ae0d3b56
* remirror instances commented out to avoid prosemirror conflicts * styles migrated for remirror to tiptap transition * added bubblemenu support with extensions * fixed css for task lists and code with syntax highlighting * added support for slash command * fixed bubble menu to match styles and added better seperation in UI * saving with debounce logic added and it's stored in backend * added migration support by updating to html * Image uploads done * improved file structure and delete image function implemented * Integrated tiptap with Issue Modal * added additional props and Tiptap Integration with Comments * added tiptap integration with user activity feeds * added ref control support and bubble menu support for readonly editor * added tiptap support for plane pages * added tiptap support to gpt assistant modal (yet to be tested) * removed remirror instances and cleaned up code * improved code structure for extracting props in Tiptap * fixing ts errors for next build * fixing node ts error for Horizontal Rule * added ts fix for node types * temp fix * temp fix * added min height for issue description in modal * added resolutions to prosemirror-model version * trying pnpm overrides * explicitly added prosemirror deps * bugfixes * removed extra gap at the top and moved saved indicator to the bottom * fix: slash command scroll position * chore: update custom css variables * matched theme colours * fixed gpt-assistant modal * updated yarn lock * added debounced updates for the title and removed saved state after timeout * added css animations for saved state * build fixes and remove remirror instances * minor commenting fixes --------- Co-authored-by: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com>
113 lines
3.3 KiB
TypeScript
113 lines
3.3 KiB
TypeScript
import { useState, useEffect, useCallback } from "react";
|
|
|
|
import useSWR from "swr";
|
|
|
|
// services
|
|
import issueServices from "services/issues.service";
|
|
// hooks
|
|
import useUser from "hooks/use-user";
|
|
// types
|
|
import { IssuePriorities, Properties } from "types";
|
|
|
|
const initialValues: 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,
|
|
};
|
|
|
|
const useIssuesProperties = (workspaceSlug?: string, projectId?: string) => {
|
|
const [properties, setProperties] = useState<Properties>(initialValues);
|
|
|
|
const { user } = useUser();
|
|
|
|
const { data: issueProperties, mutate: mutateIssueProperties } = useSWR<IssuePriorities>(
|
|
workspaceSlug && projectId
|
|
? `/api/workspaces/${workspaceSlug}/projects/${projectId}/issue-properties/`
|
|
: null,
|
|
workspaceSlug && projectId
|
|
? () => issueServices.getIssueProperties(workspaceSlug, projectId)
|
|
: null
|
|
);
|
|
|
|
useEffect(() => {
|
|
if (!issueProperties || !workspaceSlug || !projectId || !user) return;
|
|
|
|
setProperties({ ...initialValues, ...issueProperties.properties });
|
|
|
|
if (Object.keys(issueProperties).length === 0)
|
|
issueServices.createIssueProperties(workspaceSlug, projectId, {
|
|
properties: { ...initialValues },
|
|
user: user.id,
|
|
});
|
|
else if (Object.keys(issueProperties?.properties).length === 0)
|
|
issueServices.patchIssueProperties(workspaceSlug, projectId, issueProperties.id, {
|
|
properties: { ...initialValues },
|
|
user: user.id,
|
|
});
|
|
}, [issueProperties, workspaceSlug, projectId, user]);
|
|
|
|
const updateIssueProperties = useCallback(
|
|
(key: keyof Properties) => {
|
|
if (!workspaceSlug || !user) return;
|
|
|
|
setProperties((prev) => ({ ...prev, [key]: !prev[key] }));
|
|
|
|
if (issueProperties && projectId) {
|
|
mutateIssueProperties(
|
|
(prev: any) =>
|
|
({
|
|
...prev,
|
|
properties: { ...prev?.properties, [key]: !prev?.properties?.[key] },
|
|
} as IssuePriorities),
|
|
false
|
|
);
|
|
if (Object.keys(issueProperties).length > 0) {
|
|
issueServices.patchIssueProperties(workspaceSlug, projectId, issueProperties.id, {
|
|
properties: {
|
|
...issueProperties.properties,
|
|
[key]: !issueProperties.properties[key],
|
|
},
|
|
user: user.id,
|
|
});
|
|
} else {
|
|
issueServices.createIssueProperties(workspaceSlug, projectId, {
|
|
properties: { ...initialValues },
|
|
user: user.id,
|
|
});
|
|
}
|
|
}
|
|
},
|
|
[workspaceSlug, projectId, issueProperties, user, mutateIssueProperties]
|
|
);
|
|
|
|
const newProperties: Properties = {
|
|
assignee: properties.assignee,
|
|
start_date: properties.start_date,
|
|
due_date: properties.due_date,
|
|
key: properties.key,
|
|
labels: properties.labels,
|
|
priority: properties.priority,
|
|
state: properties.state,
|
|
sub_issue_count: properties.sub_issue_count,
|
|
attachment_count: properties.attachment_count,
|
|
link: properties.link,
|
|
estimate: properties.estimate,
|
|
created_on: properties.created_on,
|
|
updated_on: properties.updated_on,
|
|
};
|
|
|
|
return [newProperties, updateIssueProperties] as const;
|
|
};
|
|
|
|
export default useIssuesProperties;
|