[PR #3948] [MERGED] feat: support modified cell in modal #5967

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/3948
Author: @qinluhe
Created: 11/16/2023
Status: Merged
Merged: 11/17/2023
Merged by: @qinluhe

Base: mainHead: feat/support-edit-record


📝 Commits (2)

  • f358d74 feat: support drag fields in modal
  • 1b5ab12 fix: wrong draggable position

📊 Changes

58 files changed (+1415 additions, -302 deletions)

View changed files

📝 frontend/appflowy_tauri/src/appflowy_app/assets/details.svg (+3 -2)
frontend/appflowy_tauri/src/appflowy_app/assets/eye_close.svg (+9 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/eye_open.svg (+16 -0)
frontend/appflowy_tauri/src/appflowy_app/assets/open.svg (+6 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/_shared/BlockDraggable/BlockDragDropContext.tsx (+1 -1)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/ViewTitle/ViewBanner.tsx (+34 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/ViewTitle/ViewIcon.tsx (+54 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/ViewTitle/ViewIconGroup.tsx (+46 -0)
frontend/appflowy_tauri/src/appflowy_app/components/_shared/ViewTitle/index.tsx (+64 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/CellText.tsx (+10 -14)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/application/cell/cell_service.ts (+10 -4)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.tsx (+5 -2)
frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/EditTextCellInput.tsx (+52 -0)
frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/ExpandButton.tsx (+38 -0)
📝 frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/TextCell.tsx (+39 -28)
frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/expand_type/ExpandCellModal.tsx (+54 -0)
frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/EditRecord.tsx (+55 -0)
frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/RecordActions.tsx (+60 -0)
frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/RecordDocument.tsx (+18 -0)
frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/RecordHeader.tsx (+40 -0)

...and 38 more files

📄 Description

Feature Preview


PR Checklist

  • My code adheres to AppFlowy's Conventions
  • 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/3948 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 11/16/2023 **Status:** ✅ Merged **Merged:** 11/17/2023 **Merged by:** [@qinluhe](https://github.com/qinluhe) **Base:** `main` ← **Head:** `feat/support-edit-record` --- ### 📝 Commits (2) - [`f358d74`](https://github.com/AppFlowy-IO/AppFlowy/commit/f358d7449a5a80a0474f2ed6276e12b1d530408e) feat: support drag fields in modal - [`1b5ab12`](https://github.com/AppFlowy-IO/AppFlowy/commit/1b5ab1234389cb3560974cbc1c31064eeb471927) fix: wrong draggable position ### 📊 Changes **58 files changed** (+1415 additions, -302 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_tauri/src/appflowy_app/assets/details.svg` (+3 -2) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/eye_close.svg` (+9 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/eye_open.svg` (+16 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/assets/open.svg` (+6 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/_shared/BlockDraggable/BlockDragDropContext.tsx` (+1 -1) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/ViewTitle/ViewBanner.tsx` (+34 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/ViewTitle/ViewIcon.tsx` (+54 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/ViewTitle/ViewIconGroup.tsx` (+46 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/_shared/ViewTitle/index.tsx` (+64 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/_shared/CellText.tsx` (+10 -14) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/application/cell/cell_service.ts` (+10 -4) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/Cell.tsx` (+5 -2) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/EditTextCellInput.tsx` (+52 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/ExpandButton.tsx` (+38 -0) 📝 `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/TextCell.tsx` (+39 -28) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/components/cell/expand_type/ExpandCellModal.tsx` (+54 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/EditRecord.tsx` (+55 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/RecordActions.tsx` (+60 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/RecordDocument.tsx` (+18 -0) ➕ `frontend/appflowy_tauri/src/appflowy_app/components/database/components/edit_record/RecordHeader.tsx` (+40 -0) _...and 38 more files_ </details> ### 📄 Description <!--- Thank you for submitting a pull request to AppFlowy. The team will dedicate their best efforts to reviewing and approving your pull request. If you have any questions about the project or feedback for us, please join our [Discord](https://discord.gg/wdjWUXXhtw). --> <!--- If your pull request adds a new feature, please drag and drop a video into this section to showcase what you've done! If not, you may delete this section. --> ### Feature Preview <!--- List at least one issue here that this PR addresses. If it fixes the issue, please use the [fixes](https://docs.github.com/en/get-started/writing-on-github/working-with-advanced-formatting/using-keywords-in-issues-and-pull-requests) keyword to close the issue. For example: fixes https://github.com/AppFlowy-IO/AppFlowy/pull/2106 --> --- <!--- Before you mark this PR ready for review, run through this checklist! --> #### PR Checklist - [ ] My code adheres to [AppFlowy's Conventions](https://docs.appflowy.io/docs/documentation/software-contributions/conventions) - [ ] 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:21:07 +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#5967
No description provided.