I'm trying to fix Mobile navigation experience with note links
More specifically: When you click on a Joplin note link in note 1 to navigate to note 2, you can click the hardware "back" button to go back to note 1. Currently, it always goes back to the notebook view.
I'm stuck at joplin/Note.tsx at dev · laurent22/joplin · GitHub . Look like the Note view does not allow hot-swapping the content. So the current hack is to first navigate back to the notebook view and navigate to note 2. My questions are:
- What prevents the
Note
view to reload another note? Is it easy to fix? - There seems to be a lot of workarounds to avoid refactoring the note navigation history(see joplin/root.tsx at dev · laurent22/joplin · GitHub) Have someone though about how to refactor it? I don't want to add more hacks on top of it to support the note-to-note navigation.