[PR #2022] [MERGED] move kanban blocks #5069

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2022
Author: @Ascarbek
Created: 3/19/2023
Status: Merged
Merged: 4/2/2023
Merged by: @appflowy

Base: mainHead: feat/tauri-kanban


📝 Commits (10+)

  • 3619fad chore: add edit / create field test
  • a3f4dfa chore: add delete field test
  • e5a1bd2 chore: change log class arguments
  • c743089 chore: delete/create row
  • fd135fb chore: set tracing log to debug level
  • f58c91f fix: filter notification with id
  • 2e4df44 chore: add get single select type option data
  • 08bb4e4 Merge remote-tracking branch 'origin/feat/appflowy_tauri_3' into feat/appflowy_tauri_3
  • c35db5c fix: high cpu usage
  • dcf8fd5 chore: format code

📊 Changes

88 files changed (+1660 additions, -196 deletions)

View changed files

📝 frontend/appflowy_tauri/package.json (+6 -2)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CellOptions.tsx (+34 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CellOptionsPopup.tsx (+152 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/ChangeFieldTypePopup.tsx (+71 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DatePickerPopup.tsx (+97 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellDate.tsx (+24 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellNumber.tsx (+29 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellText.tsx (+41 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellUrl.tsx (+31 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellWrapper.tsx (+102 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCheckboxCell.tsx (+23 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditFieldPopup.tsx (+130 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditRow.tsx (+210 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/FieldTypeIcon.tsx (+24 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/FieldTypeName.tsx (+18 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/LanguageSelectPopup.tsx (+4 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/loadField.ts (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useCell.ts (+25 -14)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useDatabase.ts (+36 -8)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useRow.ts (+19 -7)

...and 68 more files

📄 Description

  • using react-beautiful-dnd
  • using createRow, moveRow

🔄 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/2022 **Author:** [@Ascarbek](https://github.com/Ascarbek) **Created:** 3/19/2023 **Status:** ✅ Merged **Merged:** 4/2/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/tauri-kanban` --- ### 📝 Commits (10+) - [`3619fad`](https://github.com/AppFlowy-IO/AppFlowy/commit/3619fadf572c20bd4680da9bd6cd79e88832422a) chore: add edit / create field test - [`a3f4dfa`](https://github.com/AppFlowy-IO/AppFlowy/commit/a3f4dfacba302d3344fb343c40beca83a8579838) chore: add delete field test - [`e5a1bd2`](https://github.com/AppFlowy-IO/AppFlowy/commit/e5a1bd2c525ae7bc60a4d98fa7dde13274b027bf) chore: change log class arguments - [`c743089`](https://github.com/AppFlowy-IO/AppFlowy/commit/c74308999d9410a60f1ff2e368bb839e3f000766) chore: delete/create row - [`fd135fb`](https://github.com/AppFlowy-IO/AppFlowy/commit/fd135fb664de23e18d1f7c0cb588ab9fccc97f28) chore: set tracing log to debug level - [`f58c91f`](https://github.com/AppFlowy-IO/AppFlowy/commit/f58c91fb3fd9c200d1cf7576884a37c7a0f2686c) fix: filter notification with id - [`2e4df44`](https://github.com/AppFlowy-IO/AppFlowy/commit/2e4df44c292c9aacac3ee95fb7f168567d0f0dd1) chore: add get single select type option data - [`08bb4e4`](https://github.com/AppFlowy-IO/AppFlowy/commit/08bb4e411697522d95a36ee1e33a841d081db44a) Merge remote-tracking branch 'origin/feat/appflowy_tauri_3' into feat/appflowy_tauri_3 - [`c35db5c`](https://github.com/AppFlowy-IO/AppFlowy/commit/c35db5c2a232b0855b455739e6d87ae02fa7126d) fix: high cpu usage - [`dcf8fd5`](https://github.com/AppFlowy-IO/AppFlowy/commit/dcf8fd538dfcdfff91136a8ca773df8d31fda2ea) chore: format code ### 📊 Changes **88 files changed** (+1660 additions, -196 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/package.json` (+6 -2) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CellOptions.tsx` (+34 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/CellOptionsPopup.tsx` (+152 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/ChangeFieldTypePopup.tsx` (+71 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DatePickerPopup.tsx` (+97 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellDate.tsx` (+24 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellNumber.tsx` (+29 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellText.tsx` (+41 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellUrl.tsx` (+31 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellWrapper.tsx` (+102 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCheckboxCell.tsx` (+23 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditFieldPopup.tsx` (+130 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditRow.tsx` (+210 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/FieldTypeIcon.tsx` (+24 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/FieldTypeName.tsx` (+18 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/LanguageSelectPopup.tsx` (+4 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/loadField.ts` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useCell.ts` (+25 -14) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useDatabase.ts` (+36 -8) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useRow.ts` (+19 -7) _...and 68 more files_ </details> ### 📄 Description - using react-beautiful-dnd - using createRow, moveRow --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:17:04 +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#5069
No description provided.