-
Notifications
You must be signed in to change notification settings - Fork 24
Issues/1478 integrate tiptap for writing emails #1831
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
This PR integrates TipTap as a rich text editor for composing emails, replacing the previous plain textarea implementation with a full-featured formatting toolbar and editor.
Changes:
- Added TipTap dependencies and configured editor with formatting extensions (bold, italic, underline, lists, links, blockquote)
- Implemented a new MailBodyEditor component with formatting toolbar and link modal
- Updated MailComposeForm and MailWidget to support the new editor with toggle for formatting toolbar
Reviewed changes
Copilot reviewed 8 out of 9 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| packages/web-app-mail/src/views/MailCompose.vue | New email compose view with basic form structure and account loading |
| packages/web-app-mail/src/components/MailWidget.vue | Updated widget layout to accommodate TipTap editor with formatting toolbar toggle |
| packages/web-app-mail/src/components/MailSearch.vue | Contains placeholder/note text instead of actual implementation |
| packages/web-app-mail/src/components/MailComposeFormattingToolbar.vue | New toolbar component with formatting buttons for the TipTap editor |
| packages/web-app-mail/src/components/MailComposeForm.vue | Updated to use MailBodyEditor instead of textarea |
| packages/web-app-mail/src/components/MailBodyEditor.vue | New TipTap-based rich text editor with modal for link insertion |
| packages/web-app-mail/package.json | Added TipTap dependencies and DOMPurify |
| packages/design-system/src/components/OcModal/OcModal.vue | Renamed modal slot from 'headerActions' to 'modal-slot-header-actions' |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull request overview
Copilot reviewed 7 out of 8 changed files in this pull request and generated 2 comments.
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Integrate TipTap for writing emails #1478