mirror of
https://github.com/makeplane/plane.git
synced 2026-07-12 21:40:18 +02:00
* [HACK-5] feat: de dupe implementation (#1600) * chore: plane ai icon added * chore: de-dupe services, constants and types added * chore: de-dupe constants and types updated * dev: de-dupe ui component added and implementation * chore: pi services and types updated * chore: useDebouncedDuplicateIssues hook added * chore: jsx to string helper function added * chore: useDebouncedDuplicateIssues implementation * chore-pi-color-variable * chore: pi service base url added * chore: pi endpoint updated * chore: pi endpoint updated * chore: pi endpoint updated * [HACK-5] chore: de dupe issue actions and code refactor (#1606) * chore: de-dupe action implementation and code refactoring * chore: code refactor * chore: pi color updated (#1608) * chore: structuring and UI components (#1596) * chore: structuring and UI components * fix: cleaning * fix: chat api integrations * fix: build issues * wip: pi editor * fix: integrated all apis * fix: integrational changes * fix: integrational changes * fix: build issues * fix: commented toolbar in history * fix: added streaming to pi messages * fix: scroll into view * chore: pi chat header and side panel improvements * fix: removed logs --------- Co-authored-by: Satish Gandham <satish.iitg@gmail.com> Co-authored-by: Anmol Singh Bhatia <anmolsinghbhatia@plane.so> * chore: pi chat history (#1615) * chore: structuring and UI components * fix: cleaning * fix: chat api integrations * fix: build issues * wip: pi editor * fix: integrated all apis * fix: integrational changes * fix: integrational changes * fix: build issues * fix: commented toolbar in history * fix: added streaming to pi messages * chore: pi chat header and side panel improvements * chore: pi chat history ui * chore: code refactor --------- Co-authored-by: gakshita <akshitagoyal1516@gmail.com> * Chore: pi improvement (#1619) * chore: de-dupe debounce time updated * chore: pi chat head title updated * chore: de-dupe button label and modal ux updated * fix: issue modal width * fix: pi-chat side panel * chore: added pi chat to side bar * chore: de-dupe modal --------- Co-authored-by: gakshita <akshitagoyal1516@gmail.com> * Fix build issue * chore: de-dupe modal theme (#1620) * fix: pi chat bug fixes and improvement (#1623) * fix: getAnswer error handling * fix: pi-chat layout and code refactor * fix: user message trim * chore: pi theme updated * chore: pi chat services update * chore: code refactor * chore: de-dupe modal transition added and height bug fixed (#1626) * chore: de dupe code splitting (#1628) * chore: code splitting * chore: code splitting * chore: code refactor * chore: code refactor * Fix: pi chat bug fixes and improvements (#1629) * fix: editor css + messages css * fix: submit on enter + mentions partial * fix: colors minor fixes * fix: build fixed * fix: enter key + editor css + shift key + feedback toast * fix: mentions dropdown untested * fix: css * fix: css * fix: build issues * fix: added latest conversation to history + layout fixing * fix: mentions key * fix: cn import in the pi editor * Fix build error * Fix pi chat api auth * chore: pi services endpoint updated * chore: code refactor * Fix floatin bot feature flag (#1651) * fix: floating bot + feature flagging * fix: minor fixes * fix: removed pi chat from community verison * fix: pi chat flag * chore de dupe flagging (#1657) * chore: de dupe feature flagging * chore: code refactor * chore: code refactor * chore: code refactor --------- Co-authored-by: Satish Gandham <satish.iitg@gmail.com> Co-authored-by: Pushya Mitra Thiruvooru <pushya@Pushyas-MacBook-Pro.local> Co-authored-by: Akshita Goyal <36129505+gakshita@users.noreply.github.com> Co-authored-by: gakshita <akshitagoyal1516@gmail.com>
@plane/editor
Description
The @plane/editor package serves as the foundation for our editor system. It provides the base functionality for our other editor packages, but it will not be used directly in any of the projects but only for extending other editors.
Utilities
We provide a wide range of utilities for extending the core itself.
- Merging classes and custom styling
- Adding new extensions
- Adding custom props
- Base menu items, and their commands
This allows for extensive customization and flexibility in the Editors created using our editor-core package.
Here's a detailed overview of what's exported
-
useEditor - A hook that you can use to extend the Plane editor.
Prop Type Description extensionsExtension[]An array of custom extensions you want to add into the editor to extend it's core features editorPropsEditorPropsExtend the editor props by passing in a custom props object uploadFile(file: File) => Promise<string>A function that handles file upload. It takes a file as input and handles the process of uploading that file. deleteFile(assetUrlWithWorkspaceId: string) => Promise<any>A function that handles deleting an image. It takes the asset url from your bucket and handles the process of deleting that image. valuehtml stringThe initial content of the editor. debouncedUpdatesEnabledbooleanIf set to true, the onChangeevent handler is debounced, meaning it will only be invoked after the specified delay (default 1500ms) once the user has stopped typing.onChange(json: any, html: string) => voidThis function is invoked whenever the content of the editor changes. It is passed the new content in both JSON and HTML formats. setIsSubmitting(isSubmitting: "submitting" | "submitted" | "saved") => voidThis function is called to update the submission status. setShouldShowAlert(showAlert: boolean) => voidThis function is used to show or hide an alert in case of content not being "saved". forwardedRefanyPass this in whenever you want to control the editor's state from an external component -
useReadOnlyEditor - A hook that can be used to extend a Read Only instance of the core editor.
Prop Type Description valuestringThe initial content of the editor. forwardedRefanyPass this in whenever you want to control the editor's state from an external component extensionsExtension[]An array of custom extensions you want to add into the editor to extend it's core features editorPropsEditorPropsExtend the editor props by passing in a custom props object -
Items and Commands - H1, H2, H3, task list, quote, code block, etc's methods.
-
UI Wrappers
EditorContainer- Wrap your Editor Container with this to apply base classes and styles.EditorContentWrapper- Use this to get Editor's Content and base menus.
- Extending with Custom Styles
const customEditorClassNames = getEditorClassNames({
noBorder,
borderOnFocus,
customClassName,
});
Core features
- Content Trimming: The Editor’s content is now automatically trimmed of empty line breaks from the start and end before submitting it to the backend. This ensures cleaner, more consistent data.
- Value Cleaning: The Editor’s value is cleaned at the editor core level, eliminating the need for additional validation before sending from our app. This results in cleaner code and less potential for errors.
- Turbo Pipeline: Added a turbo pipeline for both dev and build tasks for projects depending on the editor package.
Base extensions included
- BulletList
- OrderedList
- Blockquote
- Code
- Gapcursor
- Link
- Image
- Basic Marks
- Underline
- TextStyle
- Color
- TaskList
- Markdown
- Table