-
Notifications
You must be signed in to change notification settings - Fork 5
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
52 render notes from the left side to the main screen #55
52 render notes from the left side to the main screen #55
Conversation
…st cases have been produced accordingly and pass
This issue is now ready for review and to be merged to main. The entire note object is now passed to the ToolPage which will now allow us to render any of the content on mobile on the web as it is all now there with types preserved. Test cases are also written ensuring that the required text is being rendered into the component when the note that is being passed in changes. This concludes the PR and resolves issue 52. |
…render-notes-from-the-left-side-to-the-main-screen
…render-notes-from-the-left-side-to-the-main-screen
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.
it checks out good work on fetching the notes onto the page now onto images and audio
Approving the PR
A long PR for a long issue title.
This was not the easiest issue I have had, the text now renders on the main page. I had to pass note body text from the note_listview into the sidebar into the main page then from the main page pass it into the note component in order to render the text.
The proper parameter text was not available in the note and I found the type BodyText present. This is because the data conversion was not being made. I imported data conversion from the mobile app's codebase and made the necessary conversion.
This week I must add some test cases for this issue as well as pass along the entire note, instead of just the note's body text.