mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
3e2355e223
* fix: stroing the transactions in page * fix: page details changes * chore: page response change * chore: removed duplicated endpoints * chore: optimised the urls * chore: removed archived and favorite pages * chore: revamping pages store and components * mentions loading state part done * fixed mentions not showing in modals * removed comments and cleaned up types * removed unused types * reset: head * chore: pages store and component updates * style: pages list item UI * fix: improved colors and drag handle width * fix: slash commands are no more shown in the code blocks * fix: cleanup/hide drag handles post drop * fix: hide/cleanup drag handles post drag start * fix: aligning the drag handles better with the node post css changes of the length * fix: juggling back and forth of drag handles in ordered and unordered lists * chore: fix imports, ts errors and other things * fix: clearing nodes to default node i.e paragraph before converting it to other types of nodes For more reference on what this does, please refer https://tiptap.dev/docs/editor/api/commands/clear-nodes * chore: clearNodes after delete in case of selections being present * fix: hiding link selector in the bubble menu if inline code block is selected * chore: filtering, ordering and searching implemented * chore: updated pages store and updated UI * chore: new core editor just for document editor created * chore: removed setIsSubmitting prop in doc editor * fix: fixed submitting state for image uploads * refactor: setShouldShowAlert removed * refactor: rerenderOnPropsChange prop removed * chore: type inference magic in ref to expose an api for controlling editor menu items from outside * fix: naming imports * chore: change names of the exposed functions and removing old types * refactor: remove debouncedUpdatesEnabled prop; * refactor: editor heading markings now parsed using html * chore: removed unrelated components from the document editor * refactor: page details granular components * fix: remove onActionCompleteHandler * refactor: removed rerenderOnProps change prop * feat: added getMarkDown function * chore: update dropdown option actions * fix: sidebar markings update logic * chore: add image and to-do list actions to the toolbar * fix: handling refs and populating them via callbacks * feat: scroll to node api exposed * cleaning up editor refs when the editor is destroyed * feat: scrolling added to read only instance of the editor * fix: markings logic * fix: build errors with types * fix: build erros * fix: subscribing to transactions of editor via ref * chore: remove debug statements * fix: type errors * fix: temporary different slash commands for document editor * chore: inline code extension style * chore: remove border from readOnly editor * fix: editor bottom padding * chore: pages improvements * chore: handle Enter key on the page title * feat: added loading indicator logic in mentions * fix: mentions and slash commands now work well with multiple editors in one place * refactor: page store structure, filtering logic * feat: added better seperation in inline code blocks * feat: list autojoining added * fix: pages folder structure * fix: image refocus from external parts * working lists somewhat * chore: implement page reactions * fix: build errors * fix: build errors * fixed drag handles stuff * task list item fixed * working * fix: working on multiple nested lists * chore: remove debug statements * fix: Tab key on first list item handled to not go out of editor focus * feat: threshold auto scroll support added and multi nested list selection fixed * fix: caret color bug with improved inline code blocks * fix: node range error when bulk deleting with list * fix: removed slash commands from working in code blocks * chore: update typography margins * chore: new field added in page model * fix: better type inference in slash commands * chore: code block UI * feat: image insertion at correct position using ref added * feat: added improved mentions support for space * fix: type errors in mentions for comments in web app * sync: core with document-core * fix: build errors * fix: fallback for appendTo not being able to find active container instantly * fix: page store * fix: page description * fix: css quality issues * chore: code cleanup * chore: removed placeholder text in codeblocks * chore: archived pages response change * chore: archived pages response change * fix: initial pages list fetch * fix: pages list filters and ordering * chore: add access change option in the quick actions dropdown * fix: inline code block caret fixed * regression: removing extra text * chore: caret color removed * feat: copy code button added in code blocks * fix: initial load of page details * fix: initial load of page details * fix: image resizing weird behavior on click/expanding it too much fixed now * chore: copy page response * fix: todo list spacing * chore: description html in the copy page * chore: handle latest description on refetch * fix: saner scroll behaviours * fix: block menu positioning * fix: updated empty string description * feat: tab change sync support added * fix: infinite rerendering with markings * fix: block menu finally * fix: intial load on reload bug fixed * fix: nested lists alignment * fix: editor padding * fix: first level list items copyable * chore: list spacing * fix: title change * fix: pages list block items interaction * fix: saving chip position * fix: delete action from block menu to focus properly * fix: margin-bottom as 0 to avoid weird spacing when a paragraph node follows a list node * style: table, chore: lite text editor toolbar * fix: page description tab sync * fix: lists spacing and alignment * refactor: document editor props * feat: rich text editor wrapper created and migrated core * feat: created wrapper around lite text editor and merged core * chore: add lite text editor toolbar * fix: build errors * fix: type errors and addead live updation of toolbar * chore: pages migration * fix: inbox issue * refactor: remove redundant package * refactor: unused files * fix: add dompurify to space app * fix: inline code margin * fix: editor className props * fix: build errors * fix: traversing up the tree before assuming the parent is not a list item * fix: drag handle positions for list items fixed * fix: removed focus at end logic after deleting block * fix: image wrapper overflow scroll fix with block menu's position * fix: selection and deletion logic for nested lists fixed!! * fix: hiding the block menu while scrolling in the document/app * fix: merge conflicts resolved from develop * fix: inbox issue description * chore: move page title to the web app * fix: handling edge cases for table selection * chore: lint issues * refactor: list item functions moved to same file * refactor: use mention hook * fix: added try catch blocks for mention suggestions * chore: remove unused code * fix: remove console logs * fix: remove console logs --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: gurusainath <gurusainath007@gmail.com> Co-authored-by: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com>
435 lines
12 KiB
TypeScript
435 lines
12 KiB
TypeScript
// icons
|
|
import { Calendar, GanttChartSquare, Kanban, List, Sheet } from "lucide-react";
|
|
// types
|
|
import {
|
|
IIssueFilterOptions,
|
|
IIssueDisplayProperties,
|
|
TIssueExtraOptions,
|
|
TIssueGroupByOptions,
|
|
TIssueLayouts,
|
|
TIssueOrderByOptions,
|
|
TIssuePriorities,
|
|
TIssueTypeFilters,
|
|
} from "@plane/types";
|
|
|
|
export enum EIssuesStoreType {
|
|
GLOBAL = "GLOBAL",
|
|
PROFILE = "PROFILE",
|
|
PROJECT = "PROJECT",
|
|
CYCLE = "CYCLE",
|
|
MODULE = "MODULE",
|
|
PROJECT_VIEW = "PROJECT_VIEW",
|
|
ARCHIVED = "ARCHIVED",
|
|
DRAFT = "DRAFT",
|
|
DEFAULT = "DEFAULT",
|
|
}
|
|
|
|
export type TCreateModalStoreTypes =
|
|
| EIssuesStoreType.PROJECT
|
|
| EIssuesStoreType.PROJECT_VIEW
|
|
| EIssuesStoreType.PROFILE
|
|
| EIssuesStoreType.CYCLE
|
|
| EIssuesStoreType.MODULE;
|
|
|
|
export enum EIssueFilterType {
|
|
FILTERS = "filters",
|
|
DISPLAY_FILTERS = "display_filters",
|
|
DISPLAY_PROPERTIES = "display_properties",
|
|
KANBAN_FILTERS = "kanban_filters",
|
|
}
|
|
|
|
export enum EIssueCommentAccessSpecifier {
|
|
EXTERNAL = "EXTERNAL",
|
|
INTERNAL = "INTERNAL",
|
|
}
|
|
|
|
export const ISSUE_PRIORITIES: {
|
|
key: TIssuePriorities;
|
|
title: string;
|
|
}[] = [
|
|
{ key: "urgent", title: "Urgent" },
|
|
{ key: "high", title: "High" },
|
|
{ key: "medium", title: "Medium" },
|
|
{ key: "low", title: "Low" },
|
|
{ key: "none", title: "None" },
|
|
];
|
|
|
|
export const ISSUE_GROUP_BY_OPTIONS: {
|
|
key: TIssueGroupByOptions;
|
|
title: string;
|
|
}[] = [
|
|
{ key: "state", title: "States" },
|
|
{ key: "state_detail.group", title: "State Groups" },
|
|
{ key: "priority", title: "Priority" },
|
|
{ key: "project", title: "Project" }, // required this on my issues
|
|
{ key: "cycle", title: "Cycle" }, // required this on my issues
|
|
{ key: "module", title: "Module" }, // required this on my issues
|
|
{ key: "labels", title: "Labels" },
|
|
{ key: "assignees", title: "Assignees" },
|
|
{ key: "created_by", title: "Created By" },
|
|
{ key: null, title: "None" },
|
|
];
|
|
|
|
export const ISSUE_ORDER_BY_OPTIONS: {
|
|
key: TIssueOrderByOptions;
|
|
title: string;
|
|
}[] = [
|
|
{ key: "sort_order", title: "Manual" },
|
|
{ key: "-created_at", title: "Last Created" },
|
|
{ key: "-updated_at", title: "Last Updated" },
|
|
{ key: "start_date", title: "Start Date" },
|
|
{ key: "target_date", title: "Due Date" },
|
|
{ key: "-priority", title: "Priority" },
|
|
];
|
|
|
|
export const ISSUE_FILTER_OPTIONS: {
|
|
key: TIssueTypeFilters;
|
|
title: string;
|
|
}[] = [
|
|
{ key: null, title: "All" },
|
|
{ key: "active", title: "Active Issues" },
|
|
{ key: "backlog", title: "Backlog Issues" },
|
|
// { key: "draft", title: "Draft Issues" },
|
|
];
|
|
|
|
export const ISSUE_DISPLAY_PROPERTIES: {
|
|
key: keyof IIssueDisplayProperties;
|
|
title: string;
|
|
}[] = [
|
|
{ key: "assignee", title: "Assignee" },
|
|
{ key: "start_date", title: "Start date" },
|
|
{ key: "due_date", title: "Due date" },
|
|
{ key: "key", title: "ID" },
|
|
{ key: "labels", title: "Labels" },
|
|
{ key: "priority", title: "Priority" },
|
|
{ key: "state", title: "State" },
|
|
{ key: "sub_issue_count", title: "Sub issue count" },
|
|
{ key: "attachment_count", title: "Attachment count" },
|
|
{ key: "link", title: "Link" },
|
|
{ key: "estimate", title: "Estimate" },
|
|
{ key: "modules", title: "Modules" },
|
|
{ key: "cycle", title: "Cycle" },
|
|
];
|
|
|
|
export const ISSUE_EXTRA_OPTIONS: {
|
|
key: TIssueExtraOptions;
|
|
title: string;
|
|
}[] = [
|
|
{ key: "sub_issue", title: "Show sub-issues" }, // in spreadsheet its always false
|
|
{ key: "show_empty_groups", title: "Show empty groups" }, // filter on front-end
|
|
];
|
|
|
|
export const ISSUE_LAYOUTS: {
|
|
key: TIssueLayouts;
|
|
title: string;
|
|
icon: any;
|
|
}[] = [
|
|
{ key: "list", title: "List Layout", icon: List },
|
|
{ key: "kanban", title: "Kanban Layout", icon: Kanban },
|
|
{ key: "calendar", title: "Calendar Layout", icon: Calendar },
|
|
{ key: "spreadsheet", title: "Spreadsheet Layout", icon: Sheet },
|
|
{ key: "gantt_chart", title: "Gantt Chart Layout", icon: GanttChartSquare },
|
|
];
|
|
|
|
export interface ILayoutDisplayFiltersOptions {
|
|
filters: (keyof IIssueFilterOptions)[];
|
|
display_properties: boolean;
|
|
display_filters: {
|
|
group_by?: TIssueGroupByOptions[];
|
|
sub_group_by?: TIssueGroupByOptions[];
|
|
order_by?: TIssueOrderByOptions[];
|
|
type?: TIssueTypeFilters[];
|
|
};
|
|
extra_options: {
|
|
access: boolean;
|
|
values: TIssueExtraOptions[];
|
|
};
|
|
}
|
|
|
|
export const ISSUE_DISPLAY_FILTERS_BY_LAYOUT: {
|
|
[pageType: string]: { [layoutType: string]: ILayoutDisplayFiltersOptions };
|
|
} = {
|
|
profile_issues: {
|
|
list: {
|
|
filters: ["priority", "state_group", "labels", "start_date", "target_date"],
|
|
display_properties: true,
|
|
display_filters: {
|
|
group_by: ["state_detail.group", "priority", "project", "labels", null],
|
|
order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority"],
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["show_empty_groups"],
|
|
},
|
|
},
|
|
kanban: {
|
|
filters: ["priority", "state_group", "labels", "start_date", "target_date"],
|
|
display_properties: true,
|
|
display_filters: {
|
|
group_by: ["state_detail.group", "priority", "project", "labels"],
|
|
order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority"],
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["show_empty_groups"],
|
|
},
|
|
},
|
|
},
|
|
archived_issues: {
|
|
list: {
|
|
filters: [
|
|
"priority",
|
|
"state",
|
|
"cycle",
|
|
"module",
|
|
"assignees",
|
|
"created_by",
|
|
"labels",
|
|
"start_date",
|
|
"target_date",
|
|
],
|
|
display_properties: true,
|
|
display_filters: {
|
|
group_by: [
|
|
"state",
|
|
"cycle",
|
|
"module",
|
|
"state_detail.group",
|
|
"priority",
|
|
"labels",
|
|
"assignees",
|
|
"created_by",
|
|
null,
|
|
],
|
|
order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority"],
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["show_empty_groups"],
|
|
},
|
|
},
|
|
},
|
|
draft_issues: {
|
|
list: {
|
|
filters: ["priority", "state_group", "cycle", "module", "labels", "start_date", "target_date"],
|
|
display_properties: true,
|
|
display_filters: {
|
|
group_by: ["state_detail.group", "cycle", "module", "priority", "project", "labels", null],
|
|
order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority"],
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["show_empty_groups"],
|
|
},
|
|
},
|
|
kanban: {
|
|
filters: ["priority", "state_group", "cycle", "module", "labels", "start_date", "target_date"],
|
|
display_properties: true,
|
|
display_filters: {
|
|
group_by: ["state_detail.group", "cycle", "module", "priority", "project", "labels"],
|
|
order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority"],
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["show_empty_groups"],
|
|
},
|
|
},
|
|
},
|
|
my_issues: {
|
|
spreadsheet: {
|
|
filters: [
|
|
"priority",
|
|
"state_group",
|
|
"labels",
|
|
"assignees",
|
|
"created_by",
|
|
"subscriber",
|
|
"project",
|
|
"start_date",
|
|
"target_date",
|
|
],
|
|
display_properties: true,
|
|
display_filters: {
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["sub_issue"],
|
|
},
|
|
},
|
|
list: {
|
|
filters: [
|
|
"priority",
|
|
"state_group",
|
|
"labels",
|
|
"assignees",
|
|
"created_by",
|
|
"subscriber",
|
|
"project",
|
|
"start_date",
|
|
"target_date",
|
|
],
|
|
display_properties: true,
|
|
display_filters: {
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: false,
|
|
values: [],
|
|
},
|
|
},
|
|
},
|
|
issues: {
|
|
list: {
|
|
filters: [
|
|
"priority",
|
|
"state",
|
|
"cycle",
|
|
"module",
|
|
"assignees",
|
|
"mentions",
|
|
"created_by",
|
|
"labels",
|
|
"start_date",
|
|
"target_date",
|
|
],
|
|
display_properties: true,
|
|
display_filters: {
|
|
group_by: ["state", "priority", "cycle", "module", "labels", "assignees", "created_by", null],
|
|
order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority"],
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["show_empty_groups", "sub_issue"],
|
|
},
|
|
},
|
|
kanban: {
|
|
filters: [
|
|
"priority",
|
|
"state",
|
|
"cycle",
|
|
"module",
|
|
"assignees",
|
|
"mentions",
|
|
"created_by",
|
|
"labels",
|
|
"start_date",
|
|
"target_date",
|
|
],
|
|
display_properties: true,
|
|
display_filters: {
|
|
group_by: ["state", "priority", "cycle", "module", "labels", "assignees", "created_by"],
|
|
sub_group_by: ["state", "priority", "cycle", "module", "labels", "assignees", "created_by", null],
|
|
order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority", "target_date"],
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["show_empty_groups", "sub_issue"],
|
|
},
|
|
},
|
|
calendar: {
|
|
filters: ["priority", "state", "cycle", "module", "assignees", "mentions", "created_by", "labels", "start_date"],
|
|
display_properties: true,
|
|
display_filters: {
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["sub_issue"],
|
|
},
|
|
},
|
|
spreadsheet: {
|
|
filters: [
|
|
"priority",
|
|
"state",
|
|
"cycle",
|
|
"module",
|
|
"assignees",
|
|
"mentions",
|
|
"created_by",
|
|
"labels",
|
|
"start_date",
|
|
"target_date",
|
|
],
|
|
display_properties: true,
|
|
display_filters: {
|
|
order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority"],
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["sub_issue"],
|
|
},
|
|
},
|
|
gantt_chart: {
|
|
filters: [
|
|
"priority",
|
|
"state",
|
|
"cycle",
|
|
"module",
|
|
"assignees",
|
|
"mentions",
|
|
"created_by",
|
|
"labels",
|
|
"start_date",
|
|
"target_date",
|
|
],
|
|
display_properties: false,
|
|
display_filters: {
|
|
order_by: ["sort_order", "-created_at", "-updated_at", "start_date", "-priority"],
|
|
type: [null, "active", "backlog"],
|
|
},
|
|
extra_options: {
|
|
access: true,
|
|
values: ["sub_issue"],
|
|
},
|
|
},
|
|
},
|
|
};
|
|
|
|
export enum EIssueListRow {
|
|
HEADER = "HEADER",
|
|
ISSUE = "ISSUE",
|
|
NO_ISSUES = "NO_ISSUES",
|
|
QUICK_ADD = "QUICK_ADD",
|
|
}
|
|
|
|
export const getValueFromObject = (object: Object, key: string): string | number | boolean | null => {
|
|
const keys = key ? key.split(".") : [];
|
|
|
|
let value: any = object;
|
|
if (!value || keys.length === 0) return null;
|
|
|
|
for (const _key of keys) value = value?.[_key];
|
|
return value;
|
|
};
|
|
|
|
// issue reactions
|
|
export const issueReactionEmojis = ["128077", "128078", "128516", "128165", "128533", "129505", "9992", "128064"];
|
|
|
|
export const groupReactionEmojis = (reactions: any) => {
|
|
let _groupedEmojis: any = {};
|
|
|
|
issueReactionEmojis.map((_r) => {
|
|
_groupedEmojis = { ..._groupedEmojis, [_r]: [] };
|
|
});
|
|
|
|
if (reactions && reactions.length > 0) {
|
|
reactions.map((_reaction: any) => {
|
|
_groupedEmojis = {
|
|
..._groupedEmojis,
|
|
[_reaction.reaction]: [..._groupedEmojis[_reaction.reaction], _reaction],
|
|
};
|
|
});
|
|
}
|
|
|
|
return _groupedEmojis;
|
|
};
|