forked from github/plane
de581102e3
* fix: page transaction model * fix: page transaction model * feat: updated ui for page route * chore: initailized `document-editor` package for plane * fix: format persistence while pasting markdown in editor * feat: Inititalized Document-Editor and Editor with Ref * feat: added tooltip component and slash command for editor * feat: added `document-editor` extensions * feat: added custom search component for embedding labels * feat: added top bar menu component * feat: created document-editor exposed components * feat: integrated `document-editor` in `pages` route * chore: updated dependencies * feat: merge conflict resolution * chore: modified configuration for document editor * feat: added content browser menu for document editor summary * feat: added fixed menu and editor instances * feat: added document edittor instances and summary table * feat: implemented document-editor in PageDetail * chore: css and export fixes * fix: migration and optimisation * fix: added `on_create` hook in the core editor * feat: added conditional menu bar action in document-editor * feat: added menu actions from single page view * feat: added services for archiving, unarchiving and retriving archived pages * feat: added services for page archives * feat: implemented page archives in page list view * feat: implemented page archives in document-editor * feat: added editor marking hook * chore: seperated editor header from the main content * chore: seperated editor summary utilities from the main editor * chore: refactored necessary components from the document editor * chore: removed summary sidebar component from the main content editor * chore: removed scrollSummaryDependency from Header and Sidebar * feat: seperated page renderer as a seperate component * chore: seperated page_renderer and sidebar as component from index * feat: added locked property to IPage type * feat: added lock/unlock services in page service * chore: seperated DocumentDetails as exported interface from index * feat: seperated document editor configs as seperate interfaces * chore: seperated menu options from the editor header component * fix: fixed page_lock performing lock/unlock operation on queryset instead of single instance * fix: css positioning changes * feat: added archive/lock alert labels * feat: added boolean props in menu-actions/options * feat: added lock/unlock & archive/unarchive services * feat: added on update mutations for archived pages in page-view * feat: added archive/lock on_update mutations in single page vieq * feat: exported readonly editor for locked pages * chore: seperated kanban menu props and saved over passing redundant data * fix: readonly editor not generating markings on first render * fix: cheveron overflowing from editor-header * chore: removed unused utility actions * fix: enabled sidebar view by default * feat: removed locking on pages in archived state * feat: added indentation in heading component * fix: button classnames in vertical dropdowns * feat: added `last_archived_at` and `last_edited_at` details in editor-header * feat: changed types for archived updates and document last updates * feat: updated editor and header props * feat: updated queryset according to new page query format * feat: added parameters in page view for shared / private pages * feat: updated other-page-view to shared page view && same with private pages * feat: added page-view as shared / private * fix: replaced deleting to archiving for pages * feat: handle restoring of page from archived section from list view * feat: made previledge based option render for pages * feat: removed layout view for page list view * feat: linting changes * fix: adding mobx changes to pages * fix: removed uneccessary migrations * fix: mobx store changes * fix: adding date-fns pacakge * fix: updating yarn lock * fix: removing unneccessary method params * chore: added access specifier to the create/update page modal * fix: tab view layout changes * chore: delete endpoint for page * fix: page actions, including- archive, favorite, access control, delete * chore: remove archive page modal * fix: build errors --------- Co-authored-by: NarayanBavisetti <narayan3119@gmail.com> Co-authored-by: sriramveeraghanta <veeraghanta.sriram@gmail.com> Co-authored-by: Aaryan Khandelwal <aaryankhandu123@gmail.com> |
||
---|---|---|
.. | ||
src | ||
package.json | ||
postcss.config.js | ||
Readme.md | ||
tailwind.config.js | ||
tsconfig.json | ||
tsup.config.ts |
@plane/editor-core
Description
The @plane/editor-core
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 extensions
Extension[]
An array of custom extensions you want to add into the editor to extend it's core features editorProps
EditorProps
Extend 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. value
html string
The initial content of the editor. 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 in case of content not being "saved". forwardedRef
any
Pass 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 value
string
The initial content of the editor. forwardedRef
any
Pass this in whenever you want to control the editor's state from an external component extensions
Extension[]
An array of custom extensions you want to add into the editor to extend it's core features editorProps
EditorProps
Extend 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.
"web#develop": {
"cache": false,
"persistent": true,
"dependsOn": [
"@plane/lite-text-editor#build",
"@plane/rich-text-editor#build"
]
},
"space#develop": {
"cache": false,
"persistent": true,
"dependsOn": [
"@plane/lite-text-editor#build",
"@plane/rich-text-editor#build"
]
},
"web#build": {
"cache": true,
"dependsOn": [
"@plane/lite-text-editor#build",
"@plane/rich-text-editor#build"
]
},
"space#build": {
"cache": true,
"dependsOn": [
"@plane/lite-text-editor#build",
"@plane/rich-text-editor#build"
]
},
Base extensions included
- BulletList
- OrderedList
- Blockquote
- Code
- Gapcursor
- Link
- Image
- Basic Marks
- Underline
- TextStyle
- Color
- TaskList
- Markdown
- Table