[PR #5425] [MERGED] feat: support web layout setting and breadcrumbs #6809

Closed
opened 2026-03-23 23:16:46 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5425
Author: @qinluhe
Created: 5/28/2024
Status: Merged
Merged: 5/29/2024
Merged by: @qinluhe

Base: mainHead: feat/support-web-layout-setting


📝 Commits (7)

  • 773ebb4 fix: some bugs
  • 0a680f9 fix: performance
  • dd25aee feat: support system dark mode and different language
  • d379de8 feat: support breadcrumb
  • a24238a feat: support breadcrumb
  • 446167a feat: support new doucment title
  • 38408ad feat: support new doucment title

📊 Changes

113 files changed (+2126 additions, -2155 deletions)

View changed files

📝 frontend/appflowy_web_app/index.html (+32 -3)
📝 frontend/appflowy_web_app/package.json (+3 -2)
📝 frontend/appflowy_web_app/pnpm-lock.yaml (+460 -336)
frontend/appflowy_web_app/scripts/generateTailwindColors.cjs (+61 -0)
📝 frontend/appflowy_web_app/src/application/collab.type.ts (+21 -4)
📝 frontend/appflowy_web_app/src/application/database-yjs/context.ts (+16 -3)
📝 frontend/appflowy_web_app/src/application/database-yjs/selector.ts (+184 -66)
📝 frontend/appflowy_web_app/src/application/folder-yjs/context.ts (+45 -4)
frontend/appflowy_web_app/src/application/folder-yjs/folder.type.ts (+8 -0)
📝 frontend/appflowy_web_app/src/application/folder-yjs/selector.ts (+2 -2)
📝 frontend/appflowy_web_app/src/application/services/js-services/database.service.ts (+36 -19)
📝 frontend/appflowy_web_app/src/application/services/js-services/db/index.ts (+1 -8)
📝 frontend/appflowy_web_app/src/application/services/js-services/storage/collab.ts (+33 -17)
📝 frontend/appflowy_web_app/src/application/services/services.type.ts (+1 -0)
📝 frontend/appflowy_web_app/src/application/services/tauri-services/database.service.ts (+4 -0)
📝 frontend/appflowy_web_app/src/application/slate-yjs/plugins/withYjs.ts (+1 -3)
📝 frontend/appflowy_web_app/src/application/slate-yjs/utils/applySlateOpts.ts (+3 -2)
📝 frontend/appflowy_web_app/src/application/slate-yjs/utils/convert.ts (+2 -24)
📝 frontend/appflowy_web_app/src/components/_shared/context-provider/FolderProvider.tsx (+20 -6)
📝 frontend/appflowy_web_app/src/components/_shared/not-found/RecordNotFound.tsx (+3 -3)

...and 80 more files

📄 Description

Feature Preview

image
image
image


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • I've listed at least one issue that this PR fixes in the description above.
  • I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes.
  • All existing tests are passing.

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/AppFlowy-IO/AppFlowy/pull/5425 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 5/28/2024 **Status:** ✅ Merged **Merged:** 5/29/2024 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `feat/support-web-layout-setting` --- ### 📝 Commits (7) - [`773ebb4`](https://github.com/AppFlowy-IO/AppFlowy/commit/773ebb4fa2e9a302fd2b5c964ad9f406f67a7afe) fix: some bugs - [`0a680f9`](https://github.com/AppFlowy-IO/AppFlowy/commit/0a680f9eef491edfd306a387b32a63d1a7405676) fix: performance - [`dd25aee`](https://github.com/AppFlowy-IO/AppFlowy/commit/dd25aee7305433972f76fe4bd4e9b05e7843169b) feat: support system dark mode and different language - [`d379de8`](https://github.com/AppFlowy-IO/AppFlowy/commit/d379de82dee56dca885514c5759cd2d588591592) feat: support breadcrumb - [`a24238a`](https://github.com/AppFlowy-IO/AppFlowy/commit/a24238a637187620da4eb3ff90fc0187afe70a3e) feat: support breadcrumb - [`446167a`](https://github.com/AppFlowy-IO/AppFlowy/commit/446167a4ecb5ff78ad6a5da6e9b9ae5bbd2d4ddf) feat: support new doucment title - [`38408ad`](https://github.com/AppFlowy-IO/AppFlowy/commit/38408ad490ed92dc9cb63c2668b45cf1fc70690e) feat: support new doucment title ### 📊 Changes **113 files changed** (+2126 additions, -2155 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_web_app/index.html` (+32 -3) 📝 `frontend/appflowy_web_app/package.json` (+3 -2) 📝 `frontend/appflowy_web_app/pnpm-lock.yaml` (+460 -336) ➕ `frontend/appflowy_web_app/scripts/generateTailwindColors.cjs` (+61 -0) 📝 `frontend/appflowy_web_app/src/application/collab.type.ts` (+21 -4) 📝 `frontend/appflowy_web_app/src/application/database-yjs/context.ts` (+16 -3) 📝 `frontend/appflowy_web_app/src/application/database-yjs/selector.ts` (+184 -66) 📝 `frontend/appflowy_web_app/src/application/folder-yjs/context.ts` (+45 -4) ➕ `frontend/appflowy_web_app/src/application/folder-yjs/folder.type.ts` (+8 -0) 📝 `frontend/appflowy_web_app/src/application/folder-yjs/selector.ts` (+2 -2) 📝 `frontend/appflowy_web_app/src/application/services/js-services/database.service.ts` (+36 -19) 📝 `frontend/appflowy_web_app/src/application/services/js-services/db/index.ts` (+1 -8) 📝 `frontend/appflowy_web_app/src/application/services/js-services/storage/collab.ts` (+33 -17) 📝 `frontend/appflowy_web_app/src/application/services/services.type.ts` (+1 -0) 📝 `frontend/appflowy_web_app/src/application/services/tauri-services/database.service.ts` (+4 -0) 📝 `frontend/appflowy_web_app/src/application/slate-yjs/plugins/withYjs.ts` (+1 -3) 📝 `frontend/appflowy_web_app/src/application/slate-yjs/utils/applySlateOpts.ts` (+3 -2) 📝 `frontend/appflowy_web_app/src/application/slate-yjs/utils/convert.ts` (+2 -24) 📝 `frontend/appflowy_web_app/src/components/_shared/context-provider/FolderProvider.tsx` (+20 -6) 📝 `frontend/appflowy_web_app/src/components/_shared/not-found/RecordNotFound.tsx` (+3 -3) _...and 80 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview ![image](https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/0ef631cd-ee19-4663-80bf-7315fc8bffdf) ![image](https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/fdcda76a-1952-4afd-9de3-a4dcddf26d15) ![image](https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/02e961da-482f-4258-9926-1d181d49edae) <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] I've listed at least one issue that this PR fixes in the description above. - [ ] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [ ] All existing tests are passing. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:16:46 +00:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
AppFlowy-IO/AppFlowy#6809
No description provided.