Skip to content
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

Added satori and improved react email #1877

Merged
merged 6 commits into from
Apr 3, 2025
Merged

Added satori and improved react email #1877

merged 6 commits into from
Apr 3, 2025

Conversation

D-K-P
Copy link
Member

@D-K-P D-K-P commented Apr 3, 2025

Summary by CodeRabbit

  • Documentation
    • Refined the list of example guides by updating and restructuring available resources.
    • Enhanced the React Email guide with improved explanations, a new video demonstration, and an added email template.
    • Improved the React PDF guide with a direct resource link for better clarity.
    • Introduced a new guide for generating dynamic OG images.
    • Added a "Cursor rules" section to provide users with guidance and a linked installation guide.

Copy link

changeset-bot bot commented Apr 3, 2025

⚠️ No Changeset found

Latest commit: 644520e

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

Copy link
Contributor

coderabbitai bot commented Apr 3, 2025

Walkthrough

This pull request updates the documentation by restructuring the "Example tasks" in the pages array and revising several example files. The updates include changes to text, link additions, reordering sections, and renaming headers in the react-email and react-pdf guides. A new guide for generating OG images using Satori has been added along with a corresponding task implementation. Additionally, a new "Cursor rules" section has been introduced in the introduction document to assist users in building tasks.

Changes

File(s) Change Summary
docs/docs.json Updated the pages array in the "Example tasks" group by adding new entries (react-pdf, react-email, resend-email-sequence, satori) and removing previous instances of three of them.
docs/guides/examples/react-email.mdx
docs/guides/examples/react-pdf.mdx
For react-email.mdx: Modified overview text with hyperlink to React Email, re-arranged email providers, added a "Using Cursor / AI to build your emails" section with a video and generated email template, and introduced the TriggerDevWelcomeEmail component.
For react-pdf.mdx: Updated the description by replacing inline code with a hyperlink to the official site.
docs/guides/examples/satori.mdx
trigger/generateOgImage.ts
Added a new guide for generating OG images using Satori. The document details a task to generate an OG image with a text overlay, including code snippets. A new task generateOgImage is implemented to fetch a font, retrieve an image, generate an SVG using Satori, convert it to JPEG using Sharp, and return the file details.
docs/guides/introduction.mdx Added a new section titled "Cursor rules" which provides guidance and a link to an installation guide for Cursor rules.

Sequence Diagram(s)

sequenceDiagram
    participant U as User
    participant T as TriggerDev Task (generateOgImage)
    participant F as Font Service
    participant I as Image Service
    participant S as Satori Library
    participant SH as Sharp Library

    U->>T: Provide title, imageUrl, dimensions
    T->>F: Fetch font from URL
    T->>I: Retrieve image from imageUrl
    I-->>T: Return image data (base64)
    T->>S: Generate SVG with JSX markup
    S-->>T: Return SVG
    T->>SH: Convert SVG to JPEG
    SH-->>T: Return file path and dimensions
    T->>U: Return OG image details
Loading

Possibly related PRs

Suggested reviewers

  • matt-aitken

Poem

I'm a rabbit with a skip in my feet,
Hopping through docs with a rhythm so sweet.
New links and guides light up my day,
Code and content in a chic display.
With each bright change, I cheer and prance—
Hoppy as ever, in a joyful dance!
🐰🌟


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Contributor

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 0

🧹 Nitpick comments (2)
docs/guides/examples/react-email.mdx (1)

125-140: New Section for Using Cursor / AI to Build Emails

The new section "Using Cursor / AI to build your emails" is a valuable addition. It provides clear instructions and a video demo, which enhances the guide by showing a practical example of how to build a welcome email using Cursor.

Minor nitpick: Consider adding a comma after "In this video" for improved readability.

🧰 Tools
🪛 LanguageTool

[typographical] ~127-~127: It appears that a comma is missing.
Context: ...rsor / AI to build your emails In this video you can see how we use Cursor to build ...

(DURING_THAT_TIME_COMMA)

docs/guides/examples/satori.mdx (1)

14-114: Comprehensive Implementation for OG Image Generation Task

The task code demonstrates a robust implementation using Satori and Sharp, while incorporating Zod for payload validation. The process—from fetching the Roboto font to converting an image to base64 and generating an SVG before producing a JPEG—is clearly laid out.

Suggestion: Consider adding error handling for the font and image fetch operations to gracefully manage potential network failures.

📜 Review details

Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro

📥 Commits

Reviewing files that changed from the base of the PR and between 18ad897 and 644520e.

⛔ Files ignored due to path filters (2)
  • docs/images/react-email-welcome.png is excluded by !**/*.png
  • docs/images/react-satori-og.jpg is excluded by !**/*.jpg
📒 Files selected for processing (5)
  • docs/docs.json (1 hunks)
  • docs/guides/examples/react-email.mdx (3 hunks)
  • docs/guides/examples/react-pdf.mdx (1 hunks)
  • docs/guides/examples/satori.mdx (1 hunks)
  • docs/guides/introduction.mdx (1 hunks)
🧰 Additional context used
🪛 LanguageTool
docs/guides/examples/react-email.mdx

[typographical] ~127-~127: It appears that a comma is missing.
Context: ...rsor / AI to build your emails In this video you can see how we use Cursor to build ...

(DURING_THAT_TIME_COMMA)

⏰ Context from checks skipped due to timeout of 90000ms (1)
  • GitHub Check: Analyze (javascript-typescript)
🔇 Additional comments (11)
docs/guides/examples/react-pdf.mdx (1)

9-9: Enhanced Detail with Hyperlink for react-pdf Documentation

The updated sentence now includes a direct link to react-pdf, which improves clarity and provides immediate access to official resources.

docs/guides/introduction.mdx (1)

80-83: New "Cursor rules" Section Added Successfully

The newly introduced "Cursor rules" section offers valuable guidance for users leveraging Cursor. The inclusion of the installation guide link ensures that users have ready access to additional support material.

docs/docs.json (1)

335-338: Documentation Navigation Update for Example Tasks

The addition of the new entries—"guides/examples/react-pdf", "guides/examples/react-email", "guides/examples/resend-email-sequence", and "guides/examples/satori"—in the pages array effectively reorganizes the example tasks. This update aligns the documentation navigation with the enhanced guide content.

docs/guides/examples/react-email.mdx (4)

9-10: Updated Overview with Direct Link to React Email

The revised overview now explicitly links to React Email, which helps users quickly understand the context and find additional documentation.


11-15: Provider Note Clarification is Clear

The note detailing the use of [Resend] along with alternatives (e.g., [Loops], [SendGrid]) is informative and well-supported by the provided links. No further changes are needed here.


141-289: Well-Structured Generated Email Template Component

The generated email template code (for TriggerDevWelcomeEmail) is comprehensive and neatly organized. The use of React Email components and inline style objects enhances clarity and reusability, and the default export supports easy integration.


291-305: "Learn More" Section is Informative

The "Learn more" section with resource cards and links to React Email documentation further enriches the guide. This section effectively directs users to additional learning materials.

docs/guides/examples/satori.mdx (4)

1-5: New Satori OG Images Documentation Added

The header metadata is clear and sets the stage for introducing the OG image generation using Satori. The title, sidebarTitle, and description are well defined.


7-12: Clear and Concise Overview

The overview provides a succinct explanation of the task's purpose and includes a helpful link to Satori's repository for further details.


116-121: Image Example and Testing Instructions

The section clearly demonstrates the outcome by showing an example OG image and provides concise testing instructions.


122-134: Clear Testing Guidelines

The testing instructions include a well-formulated JSON payload example, enabling users to easily test the task in the Trigger.dev dashboard.

@D-K-P D-K-P merged commit 179a9c9 into main Apr 3, 2025
7 checks passed
@D-K-P D-K-P deleted the docs/react-updates branch April 3, 2025 15:43
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants