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

Introduce mermaid flowchart syntax #24

Merged
merged 1 commit into from
May 6, 2024
Merged

Introduce mermaid flowchart syntax #24

merged 1 commit into from
May 6, 2024

Conversation

nao1215
Copy link
Owner

@nao1215 nao1215 commented May 6, 2024

Summary by CodeRabbit

  • New Features

    • Enhanced markdown support by adding Mermaid flowchart capabilities alongside sequence diagrams, entity relationship diagrams, and pie charts.
    • Introduced a new configuration structure for flowcharts, enabling customization of titles and orientations.
    • Expanded node and link types in flowcharts for increased diagramming versatility.
  • Bug Fixes

    • Implemented a centralized function for consistent line feed handling across files, ensuring platform-independent behavior.
  • Documentation

    • Included detailed documentation on flowchart generation and customization.

mermaid/flowchart/flowchart_test.go Outdated Show resolved Hide resolved
mermaid/flowchart/flowchart_test.go Outdated Show resolved Hide resolved
Copy link

coderabbitai bot commented May 6, 2024

Warning

Rate Limit Exceeded

@nao1215 has exceeded the limit for the number of commits or files that can be reviewed per hour. Please wait 14 minutes and 31 seconds before requesting another review.

How to resolve this issue?

After the wait time has elapsed, a review can be triggered using the @coderabbitai review command as a PR comment. Alternatively, push new commits to this PR.

We recommend that you space out your commits to avoid hitting the rate limit.

How do rate limits work?

CodeRabbit enforces hourly rate limits for each developer per organization.
Our paid plans have higher rate limits than the trial, open-source and free plans. In all cases, we re-allow further reviews after a brief timeout.
Please see our FAQ for further information.

Commits Files that changed from the base of the PR and between cbbac3b and 3f182a6.

Walkthrough

The recent updates to the Golang markdown package encompass the addition of Mermaid flowchart support, improved resource management with defer f.Close() statements in various files, and the introduction of flowchart generation capabilities in the doc/flowchart package. These changes enhance functionality, ensure proper resource cleanup, and expand the visualization options available to users.

Changes

Files Summary of Changes
README.md Added Mermaid flowchart support.
doc/alert/main.go, doc/generate/main.go, doc/er/main.go, doc/sequence/main.go Implemented defer f.Close() for proper file closure.
doc/badge/main.go, doc/piechart/main.go Added defer f.Close() for resource cleanup.
doc/flowchart/main.go Introduced flowchart generation using Mermaid library.
mermaid/flowchart/flowchart_test.go Added tests for building flowcharts in Mermaid syntax.

🐇💻✨

In the realm of code and light,
A rabbit dances with pure delight.
Flowcharts bloom, resources tidy,
With each link, the code's more tidy.
defer f.Close() ensures things are neat,
The rabbit's joy, a melody sweet!
🎉🖋️🌟


Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media?

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>.
    • 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 generate interesting stats about this repository and render them as a table.
    • @coderabbitai show all the console.log statements in this repository.
    • @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.

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 as PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger a review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai help to get help.

Additionally, you can add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.

CodeRabbit Configration 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.

This comment has been minimized.

Copy link

@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: 4

Out of diff range and nitpick comments (3)
doc/flowchart/generated.md (3)

1-1: Ensure headings are surrounded by blank lines for better readability and to adhere to Markdown best practices.


2-2: Fenced code blocks should be surrounded by blank lines to maintain consistency and readability in Markdown files.


15-15: Files should end with a single newline character to conform to POSIX standards and ensure compatibility with various tools and systems.

Review Details

Configuration used: CodeRabbit UI
Review profile: CHILL

Commits Files that changed from the base of the PR and between cbbac3b and 1b28ab0.
Files selected for processing (18)
  • README.md (3 hunks)
  • doc/flowchart/generated.md (1 hunks)
  • doc/flowchart/main.go (1 hunks)
  • internal/lf.go (1 hunks)
  • internal/lf_test.go (1 hunks)
  • markdown.go (8 hunks)
  • markdown_test.go (6 hunks)
  • mermaid/er/entity.go (2 hunks)
  • mermaid/er/entity_relationship.go (4 hunks)
  • mermaid/flowchart/config.go (1 hunks)
  • mermaid/flowchart/flowchart.go (1 hunks)
  • mermaid/flowchart/flowchart_test.go (1 hunks)
  • mermaid/flowchart/link.go (1 hunks)
  • mermaid/flowchart/node.go (1 hunks)
  • mermaid/flowchart/oriental.go (1 hunks)
  • mermaid/piechart/pie_chart.go (3 hunks)
  • mermaid/sequence/sequence.go (3 hunks)
  • mermaid/sequence/sequence_test.go (2 hunks)
Files skipped from review due to trivial changes (4)
  • internal/lf.go
  • mermaid/flowchart/config.go
  • mermaid/flowchart/oriental.go
  • mermaid/sequence/sequence_test.go
Additional comments not posted (45)
internal/lf_test.go (1)

9-28: The test cases for LineFeed function are well-implemented and cover different operating systems. This is crucial for ensuring the function behaves correctly across environments.

mermaid/flowchart/flowchart.go (1)

24-60: The Flowchart struct and its methods are well-implemented, providing a robust way to build and manage flowcharts. The error handling in the Build method is particularly well-done, ensuring that errors are properly propagated.

mermaid/er/entity_relationship.go (1)

Line range hint 46-64: The String method in Diagram struct effectively constructs the entity relationship diagram string. The use of internal.LineFeed() ensures consistent newline characters across different operating systems.

mermaid/piechart/pie_chart.go (1)

61-61: The String method in PieChart struct correctly joins the pie chart body parts using the appropriate line feed, ensuring compatibility across different operating systems.

mermaid/flowchart/link.go (1)

5-57: The methods for adding links to the flowchart are well-implemented, using clear and concise string formatting. The chaining of methods allows for a fluent interface, enhancing the usability of the API.

mermaid/er/entity.go (1)

29-31: The string method in Entity struct effectively constructs the string representation of an entity, using internal.LineFeed() to ensure consistent newline characters. This is crucial for maintaining readability and compatibility across different operating systems.

mermaid/sequence/sequence.go (1)

42-42: Replace local lineFeed() with internal.LineFeed() to ensure consistent line feed handling across platforms.

mermaid/flowchart/node.go (18)

5-9: Ensure that the basic node addition function correctly formats the node name.


11-16: Support for Unicode in node text is a good feature, enhancing the flexibility of node content.


18-22: Using markdown within nodes allows for rich text formatting, which is a valuable feature for users needing detailed node descriptions.


24-28: Handling new lines within nodes correctly is crucial for maintaining the readability of the flowchart when node descriptions are long or need formatting.


30-34: Round edges on nodes can help differentiate certain types of nodes visually, which is useful for complex diagrams.


36-40: Stadium-shaped nodes are correctly formatted and provide another visual tool for diagram creators.


42-46: Subroutine nodes are a specific type of node often used in flowcharts to represent repeated processes, and they are correctly implemented here.


48-52: Cylindrical nodes are typically used to represent databases or data stores in diagrams, which is correctly implemented.


54-58: Reusing the CylindricalNode function for database nodes avoids code duplication and maintains consistency in node representation.


60-64: Circle nodes are a basic shape that is essential for many diagram types, correctly added here.


66-70: Asymmetric nodes can represent conditional or decision points in a flowchart, adding to the diagram's expressiveness.


72-76: Rhombus nodes are often used to represent decision points in flowcharts, which are correctly formatted here.


78-82: Hexagon nodes can be used for specific annotations or highlights in a flowchart, adding to the visual diversity.


84-88: Parallelogram nodes are typically used to depict inputs or outputs in a flowchart, correctly implemented here.


90-94: Alternative parallelogram nodes provide additional visual options for diagram creators.


96-100: Trapezoid nodes can represent specific stages in a process, such as data collection or output stages, which are correctly formatted here.


102-106: Alternative trapezoid nodes provide stylistic variations for users, enhancing the customizability of the flowchart.


108-112: Double circle nodes are often used to represent final states in automata or other state diagrams, which are correctly implemented here.

mermaid/flowchart/flowchart_test.go (7)

13-57: Comprehensive test for building a flowchart with various nodes and links ensures that the flowchart functionality works as expected.


59-79: Testing the flowchart orientation (top to bottom) is crucial for ensuring that the diagrams are generated correctly for different layout preferences.


82-101: Testing another orientation (top down) provides coverage for different user preferences and diagram requirements.


104-124: Testing the bottom to top orientation ensures that the flowchart can be correctly visualized in this less common layout.


127-147: Right to left orientation test covers scenarios where diagram flow needs to be visualized from right to left, catering to specific user needs.


150-170: Left to right orientation is the most common layout for flowcharts, and testing this ensures that the basic functionality is solid.


173-251: This test case builds a flowchart with all possible node and link types, ensuring comprehensive coverage and functionality verification.

markdown_test.go (5)

121-121: Using internal.LineFeed() in Detailsf() ensures consistent line feed handling in generated markdown, which is crucial for maintaining formatting across different platforms.


193-193: The use of internal.LineFeed() in Blockquote() ensures that multi-line blockquotes are correctly formatted, which enhances the readability of the generated markdown.


213-213: Code blocks are a fundamental feature in markdown for displaying code snippets. Using internal.LineFeed() ensures that the code blocks are correctly formatted across different platforms.


283-283: The use of internal.LineFeed() in markdown tables ensures that the tables are rendered correctly across different platforms, which is crucial for maintaining the readability and structure of the tables.


392-392: Custom tables allow for additional formatting options, and the use of internal.LineFeed() ensures consistent rendering across platforms. This flexibility is important for users who need more control over table presentation.

markdown.go (7)

9-9: Importing the internal package allows for the use of the centralized LineFeed() function, which ensures consistent line feed handling across the markdown package.


129-129: Using internal.LineFeed() in the String() method ensures that the markdown content is correctly formatted with consistent line breaks across different platforms.


241-242: The Details() function correctly uses internal.LineFeed() to ensure that the details block in markdown is formatted with consistent line breaks, enhancing readability.


292-292: The Blockquote() function splits the input text by internal.LineFeed() and formats each line as a blockquote, ensuring that multi-line quotes are correctly displayed.


306-306: The CodeBlocks() function correctly formats code blocks with the specified syntax highlighting and uses internal.LineFeed() to ensure consistent line breaks within the code block.


349-349: The Table() function uses internal.LineFeed() to set the line breaks in the rendered markdown table, ensuring that the table is displayed correctly across different platforms.


383-383: The CustomTable() function provides additional table formatting options and uses internal.LineFeed() to ensure consistent rendering of tables across different platforms.

README.md (1)

37-37: Successfully added 'mermaid flowchart' to the list of supported diagrams.

README.md Outdated Show resolved Hide resolved
doc/flowchart/generated.md Show resolved Hide resolved
doc/flowchart/main.go Outdated Show resolved Hide resolved
doc/sequence/main.go Show resolved Hide resolved
doc/generate/main.go Show resolved Hide resolved
doc/alert/main.go Show resolved Hide resolved

This comment has been minimized.

doc/er/main.go Show resolved Hide resolved
doc/badge/main.go Show resolved Hide resolved
doc/piechart/main.go Show resolved Hide resolved
Copy link

github-actions bot commented May 6, 2024

Code Metrics Report

main (cbbac3b) #24 (e528633) +/-
Coverage 91.8% 93.0% +1.2%
Test Execution Time 1s 1s 0s
Details
  |                     | main (cbbac3b) | #24 (e528633) |  +/-  |
  |---------------------|----------------|---------------|-------|
+ | Coverage            |          91.8% |         93.0% | +1.2% |
  |   Files             |             18 |            24 |    +6 |
  |   Lines             |            437 |           511 |   +74 |
+ |   Covered           |            401 |           475 |   +74 |
  | Test Execution Time |             1s |            1s |    0s |

Code coverage of files in pull request scope (89.0% → 92.0%)

Files Coverage +/-
internal/lf.go 66.7% +66.7%
markdown.go 94.4% +0.9%
mermaid/er/entity.go 100.0% 0.0%
mermaid/er/entity_relationship.go 78.3% +1.3%
mermaid/flowchart/config.go 100.0% +100.0%
mermaid/flowchart/flowchart.go 81.2% +81.2%
mermaid/flowchart/link.go 100.0% +100.0%
mermaid/flowchart/node.go 100.0% +100.0%
mermaid/flowchart/oriental.go 100.0% +100.0%
mermaid/piechart/pie_chart.go 87.0% +2.3%
mermaid/sequence/sequence.go 83.9% +1.5%

Reported by octocov

@nao1215 nao1215 merged commit 4d412d0 into main May 6, 2024
18 checks passed
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.

None yet

1 participant