-
Notifications
You must be signed in to change notification settings - Fork 120
Enterprise - Customer Portal Customization #531
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
Merged
Merged
Changes from all commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
4bbb534
Add MailAppFrame integration to FramesPage and enhance email template…
softmarshmallow 52e5328
Add portal presets management and email template customization
softmarshmallow 56e85e1
Enhance portal login page customization and schema
softmarshmallow 4c7904e
Refactor portal presets and sidebar components
softmarshmallow a5aad19
Add guideline for component directory structure
softmarshmallow bc6e694
Refactor portal login component and introduce new template
softmarshmallow 0f76094
Refactor email components and replace MailAppFrame with EmailFrame
softmarshmallow 2426d3d
Implement email display name sanitization and add tests
softmarshmallow bcbaa53
chore: ui
softmarshmallow 49cf6a3
mv
softmarshmallow b73b6da
chore: style
softmarshmallow File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,42 +1,45 @@ | ||
| import MailAppFrame from "@/components/frames/mail-app-frame"; | ||
| import { | ||
| EmailFrame, | ||
| EmailFrameSubject, | ||
| EmailFrameSender, | ||
| EmailFrameBody, | ||
| } from "@/components/frames/email-frame"; | ||
|
|
||
| export default function MailFramePage() { | ||
| return ( | ||
| <MailAppFrame | ||
| sidebarHidden | ||
| message={{ | ||
| at: "2021-10-06T14:00:00Z", | ||
| from: { | ||
| name: "Grida Forms", | ||
| email: "notifications@forms.grida.co", | ||
| avatar: "GR", | ||
| }, | ||
| title: "New Feature Update", | ||
| }} | ||
| messages={[]} | ||
| > | ||
| <p>Dear team,</p> | ||
| <p> | ||
| Im excited to announce the release of our latest feature update. This | ||
| release includes several new capabilities that will help you work more | ||
| efficiently and effectively. | ||
| </p> | ||
| <p>Some of the key highlights include:</p> | ||
| <ul> | ||
| <li>Improved email search and filtering</li> | ||
| <li>Enhanced email templates and signatures</li> | ||
| <li>Seamless integration with our project management tools</li> | ||
| </ul> | ||
| <p> | ||
| Weve been working hard to deliver these improvements, and were confident | ||
| they will have a positive impact on your daily workflow. Please let me | ||
| know if you have any questions or feedback. | ||
| </p> | ||
| <p> | ||
| Best regards, | ||
| <br /> | ||
| Jared | ||
| </p> | ||
| </MailAppFrame> | ||
| <main className="container max-w-2xl mx-auto py-10"> | ||
| <EmailFrame className="flex flex-col"> | ||
| <EmailFrameSubject>New Feature Update</EmailFrameSubject> | ||
| <EmailFrameSender | ||
| name="Grida Forms" | ||
| email="notifications@forms.grida.co" | ||
| date="2021-10-06T14:00:00Z" | ||
| /> | ||
| <EmailFrameBody className="prose prose-stone dark:prose-invert max-w-none"> | ||
| <p>Dear team,</p> | ||
| <p> | ||
| Im excited to announce the release of our latest feature update. This | ||
| release includes several new capabilities that will help you work | ||
| more efficiently and effectively. | ||
| </p> | ||
| <p>Some of the key highlights include:</p> | ||
| <ul> | ||
| <li>Improved email search and filtering</li> | ||
| <li>Enhanced email templates and signatures</li> | ||
| <li>Seamless integration with our project management tools</li> | ||
| </ul> | ||
| <p> | ||
| Weve been working hard to deliver these improvements, and were | ||
| confident they will have a positive impact on your daily workflow. | ||
| Please let me know if you have any questions or feedback. | ||
| </p> | ||
| <p> | ||
| Best regards, | ||
| <br /> | ||
| Jared | ||
| </p> | ||
| </EmailFrameBody> | ||
| </EmailFrame> | ||
| </main> | ||
| ); | ||
| } | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Minor typos in demo text: missing apostrophes.
Lines 21, 32: "Im" → "I'm", "Weve" → "We've", "were" → "we're".
🤖 Prompt for AI Agents