[PR #2625] [MERGED] chore: implement export handler #5337

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/2625
Author: @appflowy
Created: 5/26/2023
Status: Merged
Merged: 5/27/2023
Merged by: @appflowy

Base: mainHead: feat/export_csv


📝 Commits (2)

📊 Changes

12 files changed (+234 additions, -2 deletions)

View changed files

📝 frontend/rust-lib/Cargo.lock (+1 -0)
📝 frontend/rust-lib/flowy-database/Cargo.toml (+1 -0)
📝 frontend/rust-lib/flowy-database/src/entities/database_entities.rs (+6 -0)
📝 frontend/rust-lib/flowy-database/src/event_handler.rs (+14 -0)
📝 frontend/rust-lib/flowy-database/src/event_map.rs (+5 -1)
frontend/rust-lib/flowy-database/src/services/export.rs (+178 -0)
📝 frontend/rust-lib/flowy-database/src/services/field/type_options/date_type_option/date_type_option_entities.rs (+2 -0)
📝 frontend/rust-lib/flowy-database/src/services/field/type_options/number_type_option/format.rs (+1 -0)
📝 frontend/rust-lib/flowy-database/src/services/field/type_options/text_type_option/text_type_option.rs (+1 -1)
📝 frontend/rust-lib/flowy-database/src/services/mod.rs (+1 -0)
frontend/rust-lib/flowy-database/tests/database/export_test.rs (+23 -0)
📝 frontend/rust-lib/flowy-database/tests/database/mod.rs (+1 -0)

📄 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/2625 **Author:** [@appflowy](https://github.com/appflowy) **Created:** 5/26/2023 **Status:** ✅ Merged **Merged:** 5/27/2023 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `feat/export_csv` --- ### 📝 Commits (2) - [`8575304`](https://github.com/AppFlowy-IO/AppFlowy/commit/85753046edf1ec7a2ab29983855b144cd65ac4de) chore: implement export handler - [`dbd970c`](https://github.com/AppFlowy-IO/AppFlowy/commit/dbd970cf9dc014acd46b5eb9795e9c2059684cd4) chore: fix export ### 📊 Changes **12 files changed** (+234 additions, -2 deletions) <details> <summary>View changed files</summary> 📝 `frontend/rust-lib/Cargo.lock` (+1 -0) 📝 `frontend/rust-lib/flowy-database/Cargo.toml` (+1 -0) 📝 `frontend/rust-lib/flowy-database/src/entities/database_entities.rs` (+6 -0) 📝 `frontend/rust-lib/flowy-database/src/event_handler.rs` (+14 -0) 📝 `frontend/rust-lib/flowy-database/src/event_map.rs` (+5 -1) ➕ `frontend/rust-lib/flowy-database/src/services/export.rs` (+178 -0) 📝 `frontend/rust-lib/flowy-database/src/services/field/type_options/date_type_option/date_type_option_entities.rs` (+2 -0) 📝 `frontend/rust-lib/flowy-database/src/services/field/type_options/number_type_option/format.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-database/src/services/field/type_options/text_type_option/text_type_option.rs` (+1 -1) 📝 `frontend/rust-lib/flowy-database/src/services/mod.rs` (+1 -0) ➕ `frontend/rust-lib/flowy-database/tests/database/export_test.rs` (+23 -0) 📝 `frontend/rust-lib/flowy-database/tests/database/mod.rs` (+1 -0) </details> ### 📄 Description #### PR Checklist - [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:18:17 +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#5337
No description provided.