[PR #2273] [MERGED] feat: tauri kanban fixes #5179

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2273
Author: @Ascarbek
Created: 4/17/2023
Status: Merged
Merged: 4/30/2023
Merged by: @qinluhe

Base: developHead: feat/tauri-kanban-fixes


📝 Commits (8)

  • ff7a10a chore: group cards count
  • 7630168 chore: delete board card
  • 41222a1 chore: date time format read and update
  • 1892555 fix: move field
  • 3d5d14c fix: dnd fields
  • 688569e chore: number format popup
  • a82771e chore: refactor date options
  • 63966ab chore: replace button in DateFormatPopup with PopupItem

📊 Changes

18 files changed (+674 additions, -84 deletions)

View changed files

📝 frontend/appflowy_tauri/src-tauri/Cargo.lock (+6 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DateFormatPopup.tsx (+96 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DatePickerPopup.tsx (+4 -29)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DateTimeFormat.hooks.ts (+35 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DateTypeOptions.tsx (+149 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellText.tsx (+2 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellWrapper.tsx (+2 -2)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditFieldPopup.tsx (+59 -15)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditRow.tsx (+25 -1)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/NumberFormat.hooks.ts (+26 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/NumberFormatPopup.tsx (+108 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/TimeFormatPopup.tsx (+72 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/loadField.ts (+3 -3)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useCell.ts (+7 -3)
📝 frontend/appflowy_tauri/src/appflowy_app/components/board/BoardCard.tsx (+70 -26)
📝 frontend/appflowy_tauri/src/appflowy_app/components/board/BoardGroup.tsx (+1 -1)
📝 frontend/appflowy_tauri/src/appflowy_app/stores/reducers/database/slice.ts (+3 -3)
📝 frontend/rust-lib/Cargo.lock (+6 -0)

📄 Description

closes https://github.com/AppFlowy-IO/AppFlowy/issues/2271
closes https://github.com/AppFlowy-IO/AppFlowy/issues/2272

  • 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/2273 **Author:** [@Ascarbek](https://github.com/Ascarbek) **Created:** 4/17/2023 **Status:** ✅ Merged **Merged:** 4/30/2023 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `develop` ← **Head:** `feat/tauri-kanban-fixes` --- ### 📝 Commits (8) - [`ff7a10a`](https://github.com/AppFlowy-IO/AppFlowy/commit/ff7a10a38f257a8c4181e8f298f2316db0350b8d) chore: group cards count - [`7630168`](https://github.com/AppFlowy-IO/AppFlowy/commit/76301680dc53c410558a1878ac9481dafc92957f) chore: delete board card - [`41222a1`](https://github.com/AppFlowy-IO/AppFlowy/commit/41222a194ba90a034030ac7047bb7f17faecb589) chore: date time format read and update - [`1892555`](https://github.com/AppFlowy-IO/AppFlowy/commit/18925554f0ab476d742274d2e58855221d8e2cff) fix: move field - [`3d5d14c`](https://github.com/AppFlowy-IO/AppFlowy/commit/3d5d14cfec3f70e575cd249c1f4e6bcc619912c5) fix: dnd fields - [`688569e`](https://github.com/AppFlowy-IO/AppFlowy/commit/688569ee02b3708b7f19222ed704f08a37fedf38) chore: number format popup - [`a82771e`](https://github.com/AppFlowy-IO/AppFlowy/commit/a82771e54b99ca0715517745e61909fc68d4bb2e) chore: refactor date options - [`63966ab`](https://github.com/AppFlowy-IO/AppFlowy/commit/63966abaa85b70b5c965aad6fbf0207152c2e066) chore: replace button in DateFormatPopup with PopupItem ### 📊 Changes **18 files changed** (+674 additions, -84 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src-tauri/Cargo.lock` (+6 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DateFormatPopup.tsx` (+96 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DatePickerPopup.tsx` (+4 -29) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DateTimeFormat.hooks.ts` (+35 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/DateTypeOptions.tsx` (+149 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellText.tsx` (+2 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditCellWrapper.tsx` (+2 -2) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditFieldPopup.tsx` (+59 -15) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/EditRow.tsx` (+25 -1) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/NumberFormat.hooks.ts` (+26 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/NumberFormatPopup.tsx` (+108 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/EditRow/TimeFormatPopup.tsx` (+72 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/loadField.ts` (+3 -3) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/database-hooks/useCell.ts` (+7 -3) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardCard.tsx` (+70 -26) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/board/BoardGroup.tsx` (+1 -1) 📝 `frontend/appflowy_tauri/src/appflowy_app/stores/reducers/database/slice.ts` (+3 -3) 📝 `frontend/rust-lib/Cargo.lock` (+6 -0) </details> ### 📄 Description closes https://github.com/AppFlowy-IO/AppFlowy/issues/2271 closes https://github.com/AppFlowy-IO/AppFlowy/issues/2272 - [x] My code adheres to the [AppFlowy Style Guide](https://appflowy.gitbook.io/docs/essential-documentation/contribute-to-appflowy/software-contributions/submitting-code/style-guides) - [x] I've listed at least one issue that this PR fixes in the description above. - [x] I've added a test(s) to validate changes in this PR, or this PR only contains semantic changes. - [x] 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:17:35 +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#5179
No description provided.