docs: add native frontend architecture implementation plan#70
docs: add native frontend architecture implementation plan#70outlaw-dame wants to merge 5 commits into
Conversation
|
You have reached your Codex usage limits for code reviews. You can see your limits in the Codex usage dashboard. |
There was a problem hiding this comment.
Code Review
This pull request introduces a comprehensive implementation plan for migrating the frontend to a Framework7-first, OS-adaptive semantic architecture, and updates the .gitignore file to exclude internal documentation drafts. Feedback on the plan identifies an invalid HTML attribute value for enterkeyhint ("newline") in the composer examples, which should be corrected to "enter" to align with the HTML specification.
Important
The consumer version of Gemini Code Assist on GitHub is being sunset. Starting June 18, 2026, new organization installations will be blocked, and all code review activity will officially cease on July 17, 2026.
For more details on the timeline and next steps, please review the Help Documentation.
| Post composer: | ||
|
|
||
| ```html | ||
| <textarea enterkeyhint="newline" autocapitalize="sentences" autocorrect="on" spellcheck="true"></textarea> |
There was a problem hiding this comment.
According to the HTML specification, newline is not a valid value for the enterkeyhint attribute. The allowed values are enter, done, go, next, previous, search, and send. To indicate inserting a new line, use enter instead.
| <textarea enterkeyhint="newline" autocapitalize="sentences" autocorrect="on" spellcheck="true"></textarea> | |
| <textarea enterkeyhint="enter" autocapitalize="sentences" autocorrect="on" spellcheck="true"></textarea> |
Summary
Adds an internal implementation document for migrating Memory's frontend toward a Framework7-first, OS-adaptive, native-feeling UI architecture.
What changed
.gitignorecoverage fordocs/internal/so future local internal planning notes are not accidentally added.docs/internal/frontend-native-architecture-implementation.mdas the reviewed implementation reference.Notes
This PR is documentation-only. The branch originally had one interrupted placeholder file; it was removed before opening this PR, and the final diff only contains
.gitignoreplus the intended implementation document.