forked from github/plane
b5ac2f8078
* feat: added heading 3 in the editor summary markings * feat: fixed editor and summary bar sizing * feat: added `issue-embed` extension * feat: exposed issue embed extension * feat: added main embed config configuration to document editor body * feat: added peek overview and issue embed fetch function * feat: enabled slash commands to take additonal suggestions from editors * chore: replaced `IssueEmbedWidget` into widget extension * chore: removed issue embed from previous places * feat: added issue embed suggestion extension * feat: added issue embed suggestion renderer * feat: added issue embed suggestions into extensions module * feat: added issues in issueEmbedConfiguration in document editor * chore: package fixes * chore: removed log statements * feat: added title updation logic into document editor * fix: issue suggestion items, not rendering issue widget on enter * feat: added error card for issue widget * feat: improved focus logic for issue search and navigate * feat: appended transactionid for issueWidgetTransaction * chore: packages update * feat: disabled editing of title in readonly mode * feat: added issueEmbedConfig in readonly editor * fix: issue suggestions not loading after structure changed to object * feat: added toast messages for success/error messages from doc editor * fix: issue suggestions sorting issue * fix: formatting errors resolved * fix: infinite reloading of the readonly document editor * fix: css in avatar of issue widget card * feat: added show alert on pages reload * feat: added saving state for the pages editor * fix: issue with heading 3 in side bar view * style: updated issue suggestions dropdown ui * fix: Pages intiliazation and mutation with updated MobX store * fixed image uploads being cancelled on refocus due to swr * fix: issue with same description rerendering empty content fixed * fix: scroll in issue suggestion view * fix: added submission prop * fix: Updated the comment update to take issue id in inbox issues * feat:changed date representation in IssueEmbedCard * fix: page details mutation with optimistic updates using swr * fix: menu options in read only editor with auth fixed * fix: add error handling for title and page desc * fixed yarn.lock * fix: read-only editor title wrapping * fix: build error with rich text editor --------- Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> Co-authored-by: Palanikannan1437 <73993394+Palanikannan1437@users.noreply.github.com> |
||
---|---|---|
.. | ||
src | ||
package.json | ||
postcss.config.js | ||
Readme.md | ||
tailwind.config.js | ||
tsconfig.json | ||
tsup.config.ts |
@plane/editor-extensions
Description
The @plane/lite-text-editor
package extends from the editor-core
package, inheriting its base functionality while adding its own unique features of Custom control over Enter key, etc.
Key Features
-
Exported Components: There are two components exported from the Lite text editor (with and without Ref), you can choose to use the
withRef
instance whenever you want to control the Editor’s state via a side effect of some external action from within the application code.LiteTextEditor
&LiteTextEditorWithRef
-
Read Only Editor Instances: We have added a really light weight Read Only Editor instance for the Lite editor types (with and without Ref)
LiteReadOnlyEditor
&LiteReadOnlyEditorWithRef
LiteTextEditor
Prop | Type | Description |
---|---|---|
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. |
value |
html string |
The initial content of the editor. |
onEnterKeyPress |
(e) => void |
The event that happens on Enter key press |
debouncedUpdatesEnabled |
boolean |
If set to true, the onChange event 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) => void |
This 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") => void |
This function is called to update the submission status. |
setShouldShowAlert |
(showAlert: boolean) => void |
This function is used to show or hide an alert incase of content not being "saved". |
noBorder |
boolean |
If set to true, the editor will not have a border. |
borderOnFocus |
boolean |
If set to true, the editor will show a border when it is focused. |
customClassName |
string |
This is a custom CSS class that can be applied to the editor. |
editorContentCustomClassNames |
string |
This is a custom CSS class that can be applied to the editor content. |
Usage
- Here is an example of how to use the
RichTextEditor
component
<LiteTextEditor
onEnterKeyPress={handleSubmit(handleCommentUpdate)}
uploadFile={fileService.getUploadFileFunction(workspaceSlug)}
deleteFile={fileService.deleteImage}
value={value}
debouncedUpdatesEnabled={false}
customClassName="min-h-[50px] p-3 shadow-sm"
onChange={(comment_json: Object, comment_html: string) => {
onChange(comment_html);
}}
/>
- Example of how to use the
LiteTextEditorWithRef
component
const editorRef = useRef<any>(null);
// can use it to set the editor's value
editorRef.current?.setEditorValue(`${watch("description_html")}`);
// can use it to clear the editor
editorRef?.current?.clearEditor();
return (
<LiteTextEditorWithRef
onEnterKeyPress={handleSubmit(handleCommentUpdate)}
uploadFile={fileService.getUploadFileFunction(workspaceSlug)}
deleteFile={fileService.deleteImage}
ref={editorRef}
value={value}
debouncedUpdatesEnabled={false}
customClassName="min-h-[50px] p-3 shadow-sm"
onChange={(comment_json: Object, comment_html: string) => {
onChange(comment_html);
}}
/>
);
LiteReadOnlyEditor
Prop | Type | Description |
---|---|---|
value |
html string |
The initial content of the editor. |
noBorder |
boolean |
If set to true, the editor will not have a border. |
borderOnFocus |
boolean |
If set to true, the editor will show a border when it is focused. |
customClassName |
string |
This is a custom CSS class that can be applied to the editor. |
editorContentCustomClassNames |
string |
This is a custom CSS class that can be applied to the editor content. |
Usage
Here is an example of how to use the RichReadOnlyEditor
component
<LiteReadOnlyEditor
value={comment.comment_html}
customClassName="text-xs border border-custom-border-200 bg-custom-background-100"
/>