-
Notifications
You must be signed in to change notification settings - Fork 4
chore(docs): added TextView section #24
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
Conversation
Reviewer's Guide by SourceryThis pull request adds documentation for the new Sequence diagram for TextView rendering processsequenceDiagram
actor Client
participant Router
participant Context
participant TextView
participant Template
Client->>Router: GET /sitemap.xml
Note over Client: Accept: application/xml
Router->>Context: Handle Request
Context->>TextView: View(DataModel)
TextView->>Template: Parse template
Template->>TextView: Return parsed template
TextView->>TextView: Apply DataModel
TextView->>Context: Return rendered content
Context->>Client: HTTP 200 OK<br/>Content-Type: text/xml
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
Here's the code health analysis summary for commits Analysis Summary
|
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.
Hey @cnlangzi - I've reviewed your changes and they look great!
Here's what I looked at during the review
- 🟡 General issues: 1 issue found
- 🟢 Security: all looks good
- 🟢 Testing: all looks good
- 🟢 Complexity: all looks good
- 🟢 Documentation: all looks good
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #24 +/- ##
=======================================
Coverage 89.79% 89.79%
=======================================
Files 32 32
Lines 1176 1176
=======================================
Hits 1056 1056
Misses 83 83
Partials 37 37
Flags with carried forward coverage won't be shown. Click here to find out more. ☔ View full report in Codecov by Sentry. |
Changed
Fixed
Added
TextView
section on README.mdTests
Tasks to complete before merging PR:
make unit-test
to check for any regressions 📋make lint
to check for any issuesSummary by Sourcery
Add documentation for text views, describing how to create and render them with data models. Update descriptions for views, layouts, and pages.
Enhancements:
Documentation: