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

Add user manga notes (mihonapp/mihon#428) #813

Closed
wants to merge 2 commits into from
Closed

Conversation

cuong-tran
Copy link
Collaborator

@cuong-tran cuong-tran commented Mar 30, 2025

Co-authored-by: AntsyLich [email protected]
(cherry picked from commit 8fbe630308b962043c7b59422878c94f80156e9f)

Summary by Sourcery

Add user manga notes feature, allowing users to add and edit personal notes for individual manga

New Features:

  • Implement a rich text editor for manga notes with support for basic formatting like bold, italic, underline, and lists
  • Add ability to edit and save notes for individual manga

Enhancements:

  • Create a new screen for editing manga notes
  • Add notes section to manga details screen
  • Implement character limit and formatting options for notes

Co-authored-by: AntsyLich <[email protected]>
(cherry picked from commit 8fbe630308b962043c7b59422878c94f80156e9f)
Copy link

sourcery-ai bot commented Mar 30, 2025

Reviewer's Guide by Sourcery

This pull request introduces the ability for users to add and edit notes to manga entries. It includes UI changes to display and edit notes, database schema updates to store the notes, and backup/restore functionality to preserve the notes. A rich text editor is used for editing the notes.

Sequence diagram for editing manga notes

sequenceDiagram
    participant User
    participant MangaScreen
    participant MangaNotesScreen
    participant UpdateMangaNotes
    participant MangaRepository

    User->>MangaScreen: Clicks on "Edit Notes"
    MangaScreen->>MangaNotesScreen: Navigates to MangaNotesScreen
    MangaNotesScreen->>User: Displays notes editor
    User->>MangaNotesScreen: Edits notes
    MangaNotesScreen->>UpdateMangaNotes: Updates notes
    UpdateMangaNotes->>MangaRepository: Updates manga notes in database
Loading

File-Level Changes

Change Details Files
Added the ability to add and edit user notes for manga.
  • Added UI elements for displaying and editing notes in the manga info header and manga screen.
  • Added a new screen for editing manga notes using a rich text editor.
  • Implemented saving and restoring notes to and from the database.
  • Added a button to the manga toolbar to open the edit notes screen.
  • Added notes to backup and restore functionality.
app/src/main/java/eu/kanade/presentation/manga/components/MangaInfoHeader.kt
app/src/main/java/eu/kanade/tachiyomi/ui/browse/migration/MigrationFlags.kt
app/src/main/java/eu/kanade/presentation/manga/MangaScreen.kt
app/src/main/java/eu/kanade/presentation/manga/components/MangaToolbar.kt
i18n/src/commonMain/moko-resources/base/strings.xml
app/src/main/java/eu/kanade/tachiyomi/ui/browse/migration/advanced/design/MigrationBottomSheetDialog.kt
app/src/main/java/eu/kanade/tachiyomi/ui/browse/migration/advanced/process/MigrationListScreenModel.kt
data/src/main/java/tachiyomi/data/manga/MangaMapper.kt
app/src/main/java/eu/kanade/tachiyomi/data/backup/models/BackupManga.kt
app/src/main/java/eu/kanade/tachiyomi/data/backup/restore/restorers/MangaRestorer.kt
app/src/main/java/eu/kanade/domain/DomainModule.kt
app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaScreen.kt
domain/src/main/java/tachiyomi/domain/manga/model/Manga.kt
domain/src/main/java/tachiyomi/domain/manga/model/MangaUpdate.kt
gradle/libs.versions.toml
CHANGELOG.md
app/build.gradle.kts
app/src/main/java/eu/kanade/tachiyomi/data/backup/create/creators/MangaBackupCreator.kt
data/src/main/java/tachiyomi/data/manga/MangaRepositoryImpl.kt
data/src/main/sqldelight/tachiyomi/data/mangas.sq
app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesTextArea.kt
app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesSection.kt
app/src/main/java/eu/kanade/tachiyomi/ui/manga/notes/MangaNotesScreen.kt
app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesDisplay.kt
app/src/main/java/eu/kanade/presentation/manga/MangaNotesScreen.kt
domain/src/main/java/tachiyomi/domain/manga/interactor/UpdateMangaNotes.kt
data/src/main/sqldelight/tachiyomi/migrations/38.sqm

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Hello @cuong-tran, I'm Gemini Code Assist1! I'm currently reviewing this pull request and will post my feedback shortly. In the meantime, here's a summary to help you and other reviewers quickly get up to speed!

Summary of Changes

This pull request introduces the ability for users to add and edit notes to manga within the application. It includes changes to the UI to display and edit these notes, as well as updates to the data layer to persist them. The notes are stored as markdown, and a rich text editor is used for editing.

Highlights

  • UI Changes: A new screen, MangaNotesScreen.kt, is added to allow users to edit manga notes using a rich text editor. The MangaScreen.kt is updated to include a button to navigate to the notes screen.
  • Data Layer Changes: The Manga data class in the domain layer is updated to include a notes field. The data and SQLDelight layers are updated to persist this field. An interactor UpdateMangaNotes is added to update the notes in the database.
  • Rich Text Editor: The pull request adds a rich text editor using the richeditor-compose library, allowing users to format their notes with bold, italic, underline, and lists.
  • Backup and Restore: The backup and restore functionality is updated to include the manga notes, ensuring that notes are preserved during backup and restore operations.

Changelog

Click here to see the changelog
  • CHANGELOG.md
  • app/build.gradle.kts
    • Added implementation(libs.richeditor.compose) to include the rich text editor library.
  • app/src/main/java/eu/kanade/domain/DomainModule.kt
    • Added UpdateMangaNotes interactor to the DomainModule.
  • app/src/main/java/eu/kanade/presentation/manga/MangaNotesScreen.kt
    • Created a new composable screen for editing manga notes.
  • app/src/main/java/eu/kanade/presentation/manga/MangaScreen.kt
    • Added a button to navigate to the MangaNotesScreen.
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaInfoHeader.kt
    • Added notes to the expandable manga description and an edit button.
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesDisplay.kt
    • Created a composable to display the manga notes using a rich text view.
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesSection.kt
    • Created a composable section to display notes with an edit button.
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesTextArea.kt
    • Created a composable text area for editing manga notes with formatting options.
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaToolbar.kt
    • Added an overflow menu item for editing notes.
  • data/src/main/java/tachiyomi/data/manga/MangaMapper.kt
    • Added notes mapping to the MangaMapper.
  • data/src/main/java/tachiyomi/data/manga/MangaRepositoryImpl.kt
    • Added notes to the manga repository implementation.
  • data/src/main/sqldelight/tachiyomi/data/mangas.sq
    • Added notes column to the mangas table.
  • data/src/main/sqldelight/tachiyomi/migrations/38.sqm
    • Added a migration script to add the notes column.
  • domain/src/main/java/tachiyomi/domain/manga/interactor/UpdateMangaNotes.kt
    • Created an interactor to update manga notes.
  • domain/src/main/java/tachiyomi/domain/manga/model/Manga.kt
    • Added notes field to the Manga data class.
  • domain/src/main/java/tachiyomi/domain/manga/model/MangaUpdate.kt
    • Added notes field to the MangaUpdate data class.
  • eu/kanade/tachiyomi/data/backup/create/creators/MangaBackupCreator.kt
    • Added notes to the backup manga data.
  • eu/kanade/tachiyomi/data/backup/models/BackupManga.kt
    • Added notes field to the BackupManga data class.
  • eu/kanade/tachiyomi/data/backup/restore/restorers/MangaRestorer.kt
    • Restored notes during manga restore.
  • eu/kanade/tachiyomi/ui/manga/MangaScreen.kt
    • Added navigation to MangaNotesScreen.
  • eu/kanade/tachiyomi/ui/manga/notes/MangaNotesScreen.kt
    • Created a screen to manage and edit manga notes.
  • i18n/src/commonMain/moko-resources/base/strings.xml
    • Added string resources for notes functionality.
Using Gemini Code Assist

The full guide for Gemini Code Assist can be found on our documentation page, here are some quick tips.

Invoking Gemini

You can request assistance from Gemini at any point in your pull request via creating an issue comment (i.e. comment on the pull request page) using either /gemini <command> or @gemini-code-assist <command>. Below is a summary of the supported commands.

Feature Command Description
Code Review /gemini review Performs a code review for the current pull request in its current state.
Pull Request Summary /gemini summary Provides a summary of the current pull request in its current state.
Comment @gemini-code-assist Responds in comments when explicitly tagged, both in issue comments and review comments.
Help /gemini help Displays a list of available commands.

Customization

To customize Gemini Code Assist for GitHub experience, repository maintainers can create a configuration file and/or provide a custom code review style guide (such as PEP-8 for Python) by creating and adding files to a .gemini/ folder in the base of the repository. Detailed instructions can be found here.

Limitations & Feedback

Gemini Code Assist is currently in preview and may make mistakes. Please leave feedback on any instances where its feedback is incorrect or counter productive. You can react with 👍 and 👎 on @gemini-code-assist comments to provide feedback.

You can also get AI-powered code generation, chat, as well as code reviews directly in the IDE at no cost with the Gemini Code Assist IDE Extension.


Trivia time!

What is Markdown, the format used for storing manga notes in this pull request?

Click here for the answer
Markdown is a lightweight markup language with plain text formatting syntax. It is designed to be easy to read and write, and it is often used for formatting readme files, writing messages in online forums, and creating rich text using a plain text editor.

Footnotes

  1. Review the Privacy Notices, Generative AI Prohibited Use Policy, Terms of Service, and learn how to configure Gemini Code Assist in GitHub here. Gemini can make mistakes, so double check it and use code with caution.

Copy link

@gemini-code-assist gemini-code-assist bot left a comment

Choose a reason for hiding this comment

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

Code Review

This pull request introduces a new feature that allows users to add and edit personal notes for individual manga. The implementation involves adding a rich text editor, creating a new screen for editing notes, and adding a notes section to the manga details screen. Overall, the code seems well-structured and addresses the intended functionality. However, there are a few areas that could benefit from further review and potential improvements.

Summary of Findings

  • Missing null check: In MangaNotesSection.kt, the MangaNotesDisplay composable is called regardless of whether the content is blank. This could lead to unnecessary rendering and potential issues if MangaNotesDisplay doesn't handle empty content gracefully. A check for blank content before calling MangaNotesDisplay would improve efficiency.
  • Potential performance issue with animateContentSize: In MangaNotesDisplay.kt, animateContentSize is used only when contentUpdatedOnce is true. This might prevent the initial content from being animated. Consider whether the initial content should also be animated for a smoother user experience.
  • Inconsistent use of Modifier parameter: In MangaNotesSection.kt, the modifier parameter is passed to both the Column and the MangaNotesDisplay composables. This could lead to unexpected behavior if the modifiers conflict. It's generally better to apply modifiers to the outermost composable or to document clearly how the modifiers are intended to be used.
  • Hardcoded max length: In MangaNotesTextArea.kt, the MAX_LENGTH constant is hardcoded. Consider making this configurable or providing a way to adjust it based on user preferences or other factors.

Merge Readiness

The pull request introduces a valuable feature and is generally well-implemented. However, addressing the issues identified in the review comments, particularly the missing null check and potential performance issue, would improve the code's robustness and user experience. I am unable to approve this pull request, and recommend that others review and approve this code before merging. I recommend that the pull request not be merged until the high severity issues are addressed.

Copy link

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

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

Hey @cuong-tran - I've reviewed your changes - here's some feedback:

Overall Comments:

  • Consider adding a loading state or other visual indicator while the notes are being saved to avoid accidental data loss.
  • The rich text editor is a great addition, but consider if it's adding a lot to the app size.
Here's what I looked at during the review
  • 🟢 General issues: all looks good
  • 🟢 Security: all looks good
  • 🟢 Testing: all looks good
  • 🟢 Complexity: all looks good
  • 🟢 Documentation: all looks good

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

@cuong-tran cuong-tran requested a review from Copilot March 31, 2025 06:09
Copy link

@Copilot Copilot AI left a 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 adds the user manga notes feature by updating documentation in the changelog.

  • Document the new user manga notes feature in CHANGELOG.md
  • Reference the new feature and its contributors in the update
Files not reviewed (19)
  • app/build.gradle.kts: Language not supported
  • app/src/main/java/eu/kanade/domain/DomainModule.kt: Language not supported
  • app/src/main/java/eu/kanade/presentation/manga/MangaNotesScreen.kt: Language not supported
  • app/src/main/java/eu/kanade/presentation/manga/MangaScreen.kt: Language not supported
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaInfoHeader.kt: Language not supported
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesDisplay.kt: Language not supported
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesSection.kt: Language not supported
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaNotesTextArea.kt: Language not supported
  • app/src/main/java/eu/kanade/presentation/manga/components/MangaToolbar.kt: Language not supported
  • app/src/main/java/eu/kanade/tachiyomi/data/backup/create/creators/MangaBackupCreator.kt: Language not supported
  • app/src/main/java/eu/kanade/tachiyomi/data/backup/models/BackupManga.kt: Language not supported
  • app/src/main/java/eu/kanade/tachiyomi/data/backup/restore/restorers/MangaRestorer.kt: Language not supported
  • app/src/main/java/eu/kanade/tachiyomi/ui/browse/migration/MigrationFlags.kt: Language not supported
  • app/src/main/java/eu/kanade/tachiyomi/ui/browse/migration/advanced/design/MigrationBottomSheetDialog.kt: Language not supported
  • app/src/main/java/eu/kanade/tachiyomi/ui/browse/migration/advanced/process/MigrationListScreenModel.kt: Language not supported
  • app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaScreen.kt: Language not supported
  • app/src/main/java/eu/kanade/tachiyomi/ui/manga/notes/MangaNotesScreen.kt: Language not supported
  • data/src/main/java/tachiyomi/data/manga/MangaMapper.kt: Language not supported
  • data/src/main/java/tachiyomi/data/manga/MangaRepositoryImpl.kt: Language not supported

@cuong-tran cuong-tran closed this Apr 2, 2025
@cuong-tran cuong-tran deleted the manga-notes branch April 2, 2025 17:36
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