[PR #2677] [MERGED] feat: switch database layout #5362

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2677
Author: @appflowy
Created: 6/1/2023
Status: Merged
Merged: 6/1/2023
Merged by: @appflowy

Base: developHead: feat/switch_view_layout


📝 Commits (10+)

  • 736590f chore: rename update at and create at
  • 5d37675 chore: support switching view layout
  • a0f41bb Merge branch 'develop' into feat/switch_view_layout
  • 6ee0e7e Merge branch 'develop' into feat/switch_view_layout
  • 3689c39 chore: implement ui
  • 94c463e chore: update layout type
  • 70980c2 refactor: board/calendar/grid setting button
  • f5471ed chore: update UI after switch to other layout type
  • b37c131 fix: no date display in calendar
  • 781c6a0 chore: update patch

📊 Changes

98 files changed (+1601 additions, -1123 deletions)

View changed files

frontend/appflowy_flutter/assets/images/grid/setting/database_layout.svg (+6 -0)
📝 frontend/appflowy_flutter/assets/translations/en.json (+5 -3)
📝 frontend/appflowy_flutter/lib/plugins/blank/blank.dart (+4 -3)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/database_controller.dart (+29 -26)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/database_view_service.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/defines.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/layout/calendar_setting_listener.dart (+2 -2)
frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_bloc.dart (+56 -0)
frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_listener.dart (+50 -0)
frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_service.dart (+35 -0)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_setting_listener.dart (+6 -6)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/setting/setting_bloc.dart (+28 -2)
📝 frontend/appflowy_flutter/lib/plugins/database_view/application/view/view_cache.dart (+5 -5)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/application/board_bloc.dart (+13 -15)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/board.dart (+5 -4)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/board_page.dart (+1 -9)
frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/toolbar/board_setting.dart (+0 -192)
📝 frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/toolbar/board_toolbar.dart (+5 -70)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/application/calendar_bloc.dart (+16 -19)
📝 frontend/appflowy_flutter/lib/plugins/database_view/calendar/calendar.dart (+5 -4)

...and 78 more files

📄 Description

PR Checklist

  • My code adheres to the AppFlowy Style Guide
  • 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/2677 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 6/1/2023 **Status:** ✅ Merged **Merged:** 6/1/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `develop` ← **Head:** `feat/switch_view_layout` --- ### 📝 Commits (10+) - [`736590f`](https://github.com/AppFlowy-IO/AppFlowy/commit/736590fbe15885629e5cb3b6f15bb8ba76fa941d) chore: rename update at and create at - [`5d37675`](https://github.com/AppFlowy-IO/AppFlowy/commit/5d376752a5c3bd3265ece53bac935e387cc05411) chore: support switching view layout - [`a0f41bb`](https://github.com/AppFlowy-IO/AppFlowy/commit/a0f41bbec986528cfc3cf29740a9a9eee169849e) Merge branch 'develop' into feat/switch_view_layout - [`6ee0e7e`](https://github.com/AppFlowy-IO/AppFlowy/commit/6ee0e7e8aae7ff84cda831e7ac6e8e0ae0be94a5) Merge branch 'develop' into feat/switch_view_layout - [`3689c39`](https://github.com/AppFlowy-IO/AppFlowy/commit/3689c39b8f69f09bf421ccf7353194e62d03fb25) chore: implement ui - [`94c463e`](https://github.com/AppFlowy-IO/AppFlowy/commit/94c463ef3903c5fc351d00e33e96683eaa683316) chore: update layout type - [`70980c2`](https://github.com/AppFlowy-IO/AppFlowy/commit/70980c2a6f3d06e2ca726dc939cc3c1bc8bccd8f) refactor: board/calendar/grid setting button - [`f5471ed`](https://github.com/AppFlowy-IO/AppFlowy/commit/f5471ed47c67dc1e581837af300d43375a2a37cc) chore: update UI after switch to other layout type - [`b37c131`](https://github.com/AppFlowy-IO/AppFlowy/commit/b37c131101598f5b8f54a209aff4d26c77a98af8) fix: no date display in calendar - [`781c6a0`](https://github.com/AppFlowy-IO/AppFlowy/commit/781c6a0f559b0ddde31d92d139247bcdd1babdc3) chore: update patch ### 📊 Changes **98 files changed** (+1601 additions, -1123 deletions) <details> <summary>View changed files</summary> ➕ `frontend/appflowy_flutter/assets/images/grid/setting/database_layout.svg` (+6 -0) 📝 `frontend/appflowy_flutter/assets/translations/en.json` (+5 -3) 📝 `frontend/appflowy_flutter/lib/plugins/blank/blank.dart` (+4 -3) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/database_controller.dart` (+29 -26) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/database_view_service.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/defines.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/layout/calendar_setting_listener.dart` (+2 -2) ➕ `frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_bloc.dart` (+56 -0) ➕ `frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_listener.dart` (+50 -0) ➕ `frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_service.dart` (+35 -0) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/layout/layout_setting_listener.dart` (+6 -6) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/setting/setting_bloc.dart` (+28 -2) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/application/view/view_cache.dart` (+5 -5) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/application/board_bloc.dart` (+13 -15) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/board.dart` (+5 -4) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/board_page.dart` (+1 -9) ➖ `frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/toolbar/board_setting.dart` (+0 -192) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/board/presentation/toolbar/board_toolbar.dart` (+5 -70) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/application/calendar_bloc.dart` (+16 -19) 📝 `frontend/appflowy_flutter/lib/plugins/database_view/calendar/calendar.dart` (+5 -4) _...and 78 more files_ </details> ### 📄 Description #### PR Checklist - [ ] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [ ] 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 22:18:24 +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#5362
No description provided.