[PR #854] [MERGED] Feat/view lens #4392

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/854
Author: @appflowy
Created: 8/15/2022
Status: Merged
Merged: 8/15/2022
Merged by: @appflowy

Base: mainHead: feat/view_lens


📝 Commits (5)

  • b15439f chore: add grid_view_table
  • 080c655 chore: update down.sql of ext_data
  • 0da9865 chore: update down.sql of user_tablea
  • 0514b00 feat: config view lens
  • 4611600 chore: create grid view when create grid

📊 Changes

38 files changed (+925 additions, -385 deletions)

View changed files

📝 frontend/rust-lib/Cargo.lock (+1 -0)
📝 frontend/rust-lib/flowy-database/migrations/2021-07-14-022241_user-add-col/down.sql (+1 -1)
📝 frontend/rust-lib/flowy-database/migrations/2022-06-11-090029_view-add-col/down.sql (+2 -1)
frontend/rust-lib/flowy-database/migrations/2022-08-15-020544_grid-view/down.sql (+2 -0)
frontend/rust-lib/flowy-database/migrations/2022-08-15-020544_grid-view/up.sql (+11 -0)
📝 frontend/rust-lib/flowy-database/src/macros.rs (+7 -7)
📝 frontend/rust-lib/flowy-database/src/schema.rs (+12 -0)
📝 frontend/rust-lib/flowy-folder/src/services/folder_editor.rs (+2 -3)
📝 frontend/rust-lib/flowy-grid/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-grid/src/entities/group_entities/board_card.rs (+6 -9)
📝 frontend/rust-lib/flowy-grid/src/entities/row_entities.rs (+2 -0)
📝 frontend/rust-lib/flowy-grid/src/event_handler.rs (+3 -3)
📝 frontend/rust-lib/flowy-grid/src/manager.rs (+28 -9)
📝 frontend/rust-lib/flowy-grid/src/services/block_editor.rs (+3 -3)
📝 frontend/rust-lib/flowy-grid/src/services/block_manager.rs (+11 -15)
📝 frontend/rust-lib/flowy-grid/src/services/filter/filter_cache.rs (+7 -4)
📝 frontend/rust-lib/flowy-grid/src/services/filter/filter_service.rs (+7 -0)
📝 frontend/rust-lib/flowy-grid/src/services/grid_editor.rs (+41 -73)
📝 frontend/rust-lib/flowy-grid/src/services/grid_view_editor.rs (+156 -7)
frontend/rust-lib/flowy-grid/src/services/grid_view_manager.rs (+217 -0)

...and 18 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/854 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 8/15/2022 **Status:** ✅ Merged **Merged:** 8/15/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/view_lens` --- ### 📝 Commits (5) - [`b15439f`](https://github.com/AppFlowy-IO/AppFlowy/commit/b15439fb70a9dc3abcf2488ca746aa9f38bd38f1) chore: add grid_view_table - [`080c655`](https://github.com/AppFlowy-IO/AppFlowy/commit/080c65562749536ee376b9601b70244ad23c8071) chore: update down.sql of ext_data - [`0da9865`](https://github.com/AppFlowy-IO/AppFlowy/commit/0da986553cc71612ea98c353ed5165eab8d45aa0) chore: update down.sql of user_tablea - [`0514b00`](https://github.com/AppFlowy-IO/AppFlowy/commit/0514b005cab4d4bf66a7d4efcb74fd589f88de4f) feat: config view lens - [`4611600`](https://github.com/AppFlowy-IO/AppFlowy/commit/461160094c63d8f70493fc70f11a48f7feddc890) chore: create grid view when create grid ### 📊 Changes **38 files changed** (+925 additions, -385 deletions) <details> <summary>View changed files</summary> 📝 `frontend/rust-lib/Cargo.lock` (+1 -0) 📝 `frontend/rust-lib/flowy-database/migrations/2021-07-14-022241_user-add-col/down.sql` (+1 -1) 📝 `frontend/rust-lib/flowy-database/migrations/2022-06-11-090029_view-add-col/down.sql` (+2 -1) ➕ `frontend/rust-lib/flowy-database/migrations/2022-08-15-020544_grid-view/down.sql` (+2 -0) ➕ `frontend/rust-lib/flowy-database/migrations/2022-08-15-020544_grid-view/up.sql` (+11 -0) 📝 `frontend/rust-lib/flowy-database/src/macros.rs` (+7 -7) 📝 `frontend/rust-lib/flowy-database/src/schema.rs` (+12 -0) 📝 `frontend/rust-lib/flowy-folder/src/services/folder_editor.rs` (+2 -3) 📝 `frontend/rust-lib/flowy-grid/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-grid/src/entities/group_entities/board_card.rs` (+6 -9) 📝 `frontend/rust-lib/flowy-grid/src/entities/row_entities.rs` (+2 -0) 📝 `frontend/rust-lib/flowy-grid/src/event_handler.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-grid/src/manager.rs` (+28 -9) 📝 `frontend/rust-lib/flowy-grid/src/services/block_editor.rs` (+3 -3) 📝 `frontend/rust-lib/flowy-grid/src/services/block_manager.rs` (+11 -15) 📝 `frontend/rust-lib/flowy-grid/src/services/filter/filter_cache.rs` (+7 -4) 📝 `frontend/rust-lib/flowy-grid/src/services/filter/filter_service.rs` (+7 -0) 📝 `frontend/rust-lib/flowy-grid/src/services/grid_editor.rs` (+41 -73) 📝 `frontend/rust-lib/flowy-grid/src/services/grid_view_editor.rs` (+156 -7) ➕ `frontend/rust-lib/flowy-grid/src/services/grid_view_manager.rs` (+217 -0) _...and 18 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:37:36 +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#4392
No description provided.