[PR #379] [MERGED] Refactor folder crate structs #4102

Closed
opened 2026-03-23 21:36:18 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/379
Author: @appflowy
Created: 2/24/2022
Status: Merged
Merged: 2/24/2022
Merged by: @appflowy

Base: mainHead: refactor_document


📝 Commits (5)

  • c123745 refactor: rename some class names
  • 67a3ba6 chore: merge main
  • b855a11 Merge branch 'main' into refactor_document
  • 93695dc chore: rename structs
  • ed9a48f chore: rename struct property

📊 Changes

84 files changed (+6534 additions, -1878 deletions)

View changed files

📝 frontend/app_flowy/lib/user/infrastructure/repos/auth_repo.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/application/doc/doc_bloc.dart (+32 -30)
frontend/app_flowy/lib/workspace/application/doc/doc_bloc.freezed.dart (+1225 -0)
frontend/app_flowy/lib/workspace/application/menu/menu_bloc.freezed.dart (+1049 -0)
frontend/app_flowy/lib/workspace/application/trash/trash_bloc.freezed.dart (+1129 -0)
frontend/app_flowy/lib/workspace/application/view/view_bloc.freezed.dart (+1155 -0)
frontend/app_flowy/lib/workspace/application/workspace/welcome_bloc.freezed.dart (+890 -0)
📝 frontend/app_flowy/lib/workspace/infrastructure/deps_resolver.dart (+4 -4)
📝 frontend/app_flowy/lib/workspace/infrastructure/repos/app_repo.dart (+5 -5)
📝 frontend/app_flowy/lib/workspace/infrastructure/repos/document_repo.dart (+7 -7)
📝 frontend/app_flowy/lib/workspace/infrastructure/repos/share_repo.dart (+1 -1)
📝 frontend/app_flowy/lib/workspace/infrastructure/repos/user_repo.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/infrastructure/repos/view_repo.dart (+4 -4)
📝 frontend/app_flowy/lib/workspace/infrastructure/repos/workspace_repo.dart (+3 -3)
📝 frontend/app_flowy/lib/workspace/presentation/stack_page/doc/doc_stack_page.dart (+2 -2)
📝 frontend/app_flowy/lib/workspace/presentation/stack_page/doc/document_page.dart (+16 -16)
📝 frontend/app_flowy/lib/workspace/presentation/stack_page/doc/widget/banner.dart (+2 -2)
📝 frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event/flowy-folder/dart_event.dart (+20 -20)
📝 frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event/flowy-user/dart_event.dart (+3 -3)
📝 frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-collaboration/document_info.pb.dart (+8 -8)

...and 64 more files

📄 Description

No description provided


🔄 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/379 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 2/24/2022 **Status:** ✅ Merged **Merged:** 2/24/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `refactor_document` --- ### 📝 Commits (5) - [`c123745`](https://github.com/AppFlowy-IO/AppFlowy/commit/c1237452ab162a99a90b7096b6e0a97c7550c2e9) refactor: rename some class names - [`67a3ba6`](https://github.com/AppFlowy-IO/AppFlowy/commit/67a3ba6b342671af0acaac2c4a71eef82442765c) chore: merge main - [`b855a11`](https://github.com/AppFlowy-IO/AppFlowy/commit/b855a1199d47f33091275486f74e7c8d64442b1b) Merge branch 'main' into refactor_document - [`93695dc`](https://github.com/AppFlowy-IO/AppFlowy/commit/93695dc4be0c134ef22cc9cdac9e0f402721aa41) chore: rename structs - [`ed9a48f`](https://github.com/AppFlowy-IO/AppFlowy/commit/ed9a48fc1c60789a959d2d0e0dc33dc5703e1e3e) chore: rename struct property ### 📊 Changes **84 files changed** (+6534 additions, -1878 deletions) <details> <summary>View changed files</summary> 📝 `frontend/app_flowy/lib/user/infrastructure/repos/auth_repo.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/application/doc/doc_bloc.dart` (+32 -30) ➕ `frontend/app_flowy/lib/workspace/application/doc/doc_bloc.freezed.dart` (+1225 -0) ➕ `frontend/app_flowy/lib/workspace/application/menu/menu_bloc.freezed.dart` (+1049 -0) ➕ `frontend/app_flowy/lib/workspace/application/trash/trash_bloc.freezed.dart` (+1129 -0) ➕ `frontend/app_flowy/lib/workspace/application/view/view_bloc.freezed.dart` (+1155 -0) ➕ `frontend/app_flowy/lib/workspace/application/workspace/welcome_bloc.freezed.dart` (+890 -0) 📝 `frontend/app_flowy/lib/workspace/infrastructure/deps_resolver.dart` (+4 -4) 📝 `frontend/app_flowy/lib/workspace/infrastructure/repos/app_repo.dart` (+5 -5) 📝 `frontend/app_flowy/lib/workspace/infrastructure/repos/document_repo.dart` (+7 -7) 📝 `frontend/app_flowy/lib/workspace/infrastructure/repos/share_repo.dart` (+1 -1) 📝 `frontend/app_flowy/lib/workspace/infrastructure/repos/user_repo.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/infrastructure/repos/view_repo.dart` (+4 -4) 📝 `frontend/app_flowy/lib/workspace/infrastructure/repos/workspace_repo.dart` (+3 -3) 📝 `frontend/app_flowy/lib/workspace/presentation/stack_page/doc/doc_stack_page.dart` (+2 -2) 📝 `frontend/app_flowy/lib/workspace/presentation/stack_page/doc/document_page.dart` (+16 -16) 📝 `frontend/app_flowy/lib/workspace/presentation/stack_page/doc/widget/banner.dart` (+2 -2) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event/flowy-folder/dart_event.dart` (+20 -20) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/dispatch/dart_event/flowy-user/dart_event.dart` (+3 -3) 📝 `frontend/app_flowy/packages/flowy_sdk/lib/protobuf/flowy-collaboration/document_info.pb.dart` (+8 -8) _...and 64 more files_ </details> ### 📄 Description _No description provided_ --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 21:36:18 +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#4102
No description provided.