[PR #5222] [MERGED] feat: parse folder collab and display document title/icon/cover #6712

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5222
Author: @qinluhe
Created: 4/29/2024
Status: Merged
Merged: 4/30/2024
Merged by: @qinluhe

Base: mainHead: feat/support-web-view


📝 Commits (6)

  • 95a8105 feat: support web document and cypress test
  • 96b3295 fix: support blocks
  • 8714e19 fix: support table and outline
  • 287d575 fix: update nginx
  • fb2a137 fix: support document title, icon, cover
  • 5723f3e Merge remote-tracking branch 'upstream/main' into feat/support-web-view

📊 Changes

83 files changed (+1355 additions, -363 deletions)

View changed files

📝 .github/workflows/ios_ci.yaml (+2 -0)
📝 frontend/appflowy_web_app/cypress/support/component.ts (+0 -1)
📝 frontend/appflowy_web_app/cypress/support/document.ts (+1 -14)
📝 frontend/appflowy_web_app/package.json (+2 -0)
📝 frontend/appflowy_web_app/pnpm-lock.yaml (+15 -0)
📝 frontend/appflowy_web_app/src/application/collab.type.ts (+294 -14)
frontend/appflowy_web_app/src/application/folder-yjs/context.ts (+8 -0)
frontend/appflowy_web_app/src/application/folder-yjs/index.ts (+2 -0)
frontend/appflowy_web_app/src/application/folder-yjs/selector.ts (+62 -0)
📝 frontend/appflowy_web_app/src/application/services/js-services/db/index.ts (+1 -1)
📝 frontend/appflowy_web_app/src/application/services/js-services/document.service.ts (+1 -2)
frontend/appflowy_web_app/src/application/services/js-services/folder.service.ts (+45 -0)
📝 frontend/appflowy_web_app/src/application/services/js-services/index.ts (+5 -0)
📝 frontend/appflowy_web_app/src/application/services/js-services/storage/document.ts (+1 -1)
frontend/appflowy_web_app/src/application/services/js-services/storage/folder.ts (+21 -0)
📝 frontend/appflowy_web_app/src/application/services/js-services/storage/token.ts (+37 -36)
📝 frontend/appflowy_web_app/src/application/services/js-services/user.service.ts (+2 -4)
📝 frontend/appflowy_web_app/src/application/services/js-services/wasm/client_api.ts (+11 -9)
📝 frontend/appflowy_web_app/src/application/services/services.type.ts (+6 -1)
frontend/appflowy_web_app/src/application/services/tauri-services/folder.service.ts (+12 -0)

...and 63 more files

📄 Description

Feature Preview

https://test.appflowy.com

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/5222 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 4/29/2024 **Status:** ✅ Merged **Merged:** 4/30/2024 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `feat/support-web-view` --- ### 📝 Commits (6) - [`95a8105`](https://github.com/AppFlowy-IO/AppFlowy/commit/95a8105e3e5688e61419ae89f69488aacbda5051) feat: support web document and cypress test - [`96b3295`](https://github.com/AppFlowy-IO/AppFlowy/commit/96b3295bf702de2b14feb8f4f43515053cfbc474) fix: support blocks - [`8714e19`](https://github.com/AppFlowy-IO/AppFlowy/commit/8714e19a6936f8db198b3f42c6ca5acbb9c67ebe) fix: support table and outline - [`287d575`](https://github.com/AppFlowy-IO/AppFlowy/commit/287d5750a40c27eb88034b6994fabc9c2bd7317e) fix: update nginx - [`fb2a137`](https://github.com/AppFlowy-IO/AppFlowy/commit/fb2a137ff857425fdb67bd3f8daecda7acc45ba4) fix: support document title, icon, cover - [`5723f3e`](https://github.com/AppFlowy-IO/AppFlowy/commit/5723f3e9db0793a29e0a7ab51a824340f72af810) Merge remote-tracking branch 'upstream/main' into feat/support-web-view ### 📊 Changes **83 files changed** (+1355 additions, -363 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/ios_ci.yaml` (+2 -0) 📝 `frontend/appflowy_web_app/cypress/support/component.ts` (+0 -1) 📝 `frontend/appflowy_web_app/cypress/support/document.ts` (+1 -14) 📝 `frontend/appflowy_web_app/package.json` (+2 -0) 📝 `frontend/appflowy_web_app/pnpm-lock.yaml` (+15 -0) 📝 `frontend/appflowy_web_app/src/application/collab.type.ts` (+294 -14) ➕ `frontend/appflowy_web_app/src/application/folder-yjs/context.ts` (+8 -0) ➕ `frontend/appflowy_web_app/src/application/folder-yjs/index.ts` (+2 -0) ➕ `frontend/appflowy_web_app/src/application/folder-yjs/selector.ts` (+62 -0) 📝 `frontend/appflowy_web_app/src/application/services/js-services/db/index.ts` (+1 -1) 📝 `frontend/appflowy_web_app/src/application/services/js-services/document.service.ts` (+1 -2) ➕ `frontend/appflowy_web_app/src/application/services/js-services/folder.service.ts` (+45 -0) 📝 `frontend/appflowy_web_app/src/application/services/js-services/index.ts` (+5 -0) 📝 `frontend/appflowy_web_app/src/application/services/js-services/storage/document.ts` (+1 -1) ➕ `frontend/appflowy_web_app/src/application/services/js-services/storage/folder.ts` (+21 -0) 📝 `frontend/appflowy_web_app/src/application/services/js-services/storage/token.ts` (+37 -36) 📝 `frontend/appflowy_web_app/src/application/services/js-services/user.service.ts` (+2 -4) 📝 `frontend/appflowy_web_app/src/application/services/js-services/wasm/client_api.ts` (+11 -9) 📝 `frontend/appflowy_web_app/src/application/services/services.type.ts` (+6 -1) ➕ `frontend/appflowy_web_app/src/application/services/tauri-services/folder.service.ts` (+12 -0) _...and 63 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 https://test.appflowy.com ![image](https://github.com/AppFlowy-IO/AppFlowy/assets/108015703/128af5e8-64c9-42f5-bf99-290d5eaa6337) <!--- 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:19 +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#6712
No description provided.