[PR #1538] [MERGED] Customize the storage folder path #4806

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/1538
Author: @LucasXu0
Created: 12/6/2022
Status: Merged
Merged: 12/20/2022
Merged by: @appflowy

Base: mainHead: customize_folder_path


📝 Commits (10+)

  • 96fd458 feat: support customize folder path
  • 4cf5df0 feat: add l10n and optimize the logic
  • 9cc2e7d chore: code refactor
  • 5d6244c feat: add file read/write permission for macOS
  • 880c9f0 fix: add toast for restoring path
  • eb8d435 feat: fetch apps and show them
  • 969b59c feat: fetch apps and show them
  • 19ad06f feat: implement select document logic
  • 3ccab3e feat: l10n and add select item callback
  • 24726e3 feat: add space between tile

📊 Changes

59 files changed (+1837 additions, -302 deletions)

View changed files

📝 .github/workflows/appflowy_editor_test.yml (+1 -0)
.github/workflows/integration_test.yml (+128 -0)
📝 frontend/app_flowy/assets/translations/en.json (+21 -0)
frontend/app_flowy/integration_test/switch_folder_test.dart (+161 -0)
frontend/app_flowy/integration_test/util/base.dart (+114 -0)
frontend/app_flowy/integration_test/util/launch.dart (+23 -0)
frontend/app_flowy/integration_test/util/mock/mock_file_picker.dart (+29 -0)
frontend/app_flowy/integration_test/util/settings.dart (+84 -0)
frontend/app_flowy/integration_test/util/util.dart (+3 -0)
📝 frontend/app_flowy/lib/main.dart (+10 -6)
📝 frontend/app_flowy/lib/plugins/document/presentation/more/more_button.dart (+1 -1)
📝 frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/field_cell.dart (+5 -6)
📝 frontend/app_flowy/lib/startup/deps_resolver.dart (+14 -0)
frontend/app_flowy/lib/startup/launch_configuration.dart (+8 -0)
📝 frontend/app_flowy/lib/startup/startup.dart (+41 -16)
📝 frontend/app_flowy/lib/startup/tasks/app_widget.dart (+5 -4)
📝 frontend/app_flowy/lib/startup/tasks/rust_sdk.dart (+21 -5)
📝 frontend/app_flowy/lib/user/application/auth_service.dart (+22 -3)
frontend/app_flowy/lib/user/presentation/folder/folder_widget.dart (+250 -0)
📝 frontend/app_flowy/lib/user/presentation/router.dart (+12 -2)

...and 39 more files

📄 Description

The users can customize their storage folder path.

ScreenShot
Screenshot 2022-12-06 at 10 39 40


🔄 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/1538 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 12/6/2022 **Status:** ✅ Merged **Merged:** 12/20/2022 **Merged by:** [@appflowy](https://github.com/appflowy) **Base:** `main` ← **Head:** `customize_folder_path` --- ### 📝 Commits (10+) - [`96fd458`](https://github.com/AppFlowy-IO/AppFlowy/commit/96fd4589d7e00aca9cdf90bc72339231b9fd445b) feat: support customize folder path - [`4cf5df0`](https://github.com/AppFlowy-IO/AppFlowy/commit/4cf5df0fe92d9bc4b96e901d3ad6850de88171fd) feat: add l10n and optimize the logic - [`9cc2e7d`](https://github.com/AppFlowy-IO/AppFlowy/commit/9cc2e7d1712ee8207d0fffc655978765fa56df7f) chore: code refactor - [`5d6244c`](https://github.com/AppFlowy-IO/AppFlowy/commit/5d6244c8b98217b9a5d97f45a2e31498915574b9) feat: add file read/write permission for macOS - [`880c9f0`](https://github.com/AppFlowy-IO/AppFlowy/commit/880c9f0f77440b6ab45c88c464eed136c215456c) fix: add toast for restoring path - [`eb8d435`](https://github.com/AppFlowy-IO/AppFlowy/commit/eb8d43587c3a3df1347b3c4014d2a0983d533668) feat: fetch apps and show them - [`969b59c`](https://github.com/AppFlowy-IO/AppFlowy/commit/969b59cc8648d11019bec93a9d2a879ed52f9def) feat: fetch apps and show them - [`19ad06f`](https://github.com/AppFlowy-IO/AppFlowy/commit/19ad06fa7a48daa529486619bc2ea26c3e6b4974) feat: implement select document logic - [`3ccab3e`](https://github.com/AppFlowy-IO/AppFlowy/commit/3ccab3e98c51ef3fe371be71d28482a47bf81fc8) feat: l10n and add select item callback - [`24726e3`](https://github.com/AppFlowy-IO/AppFlowy/commit/24726e391651a31d5a8d0361d6efb222ed0b5710) feat: add space between tile ### 📊 Changes **59 files changed** (+1837 additions, -302 deletions) <details> <summary>View changed files</summary> 📝 `.github/workflows/appflowy_editor_test.yml` (+1 -0) ➕ `.github/workflows/integration_test.yml` (+128 -0) 📝 `frontend/app_flowy/assets/translations/en.json` (+21 -0) ➕ `frontend/app_flowy/integration_test/switch_folder_test.dart` (+161 -0) ➕ `frontend/app_flowy/integration_test/util/base.dart` (+114 -0) ➕ `frontend/app_flowy/integration_test/util/launch.dart` (+23 -0) ➕ `frontend/app_flowy/integration_test/util/mock/mock_file_picker.dart` (+29 -0) ➕ `frontend/app_flowy/integration_test/util/settings.dart` (+84 -0) ➕ `frontend/app_flowy/integration_test/util/util.dart` (+3 -0) 📝 `frontend/app_flowy/lib/main.dart` (+10 -6) 📝 `frontend/app_flowy/lib/plugins/document/presentation/more/more_button.dart` (+1 -1) 📝 `frontend/app_flowy/lib/plugins/grid/presentation/widgets/header/field_cell.dart` (+5 -6) 📝 `frontend/app_flowy/lib/startup/deps_resolver.dart` (+14 -0) ➕ `frontend/app_flowy/lib/startup/launch_configuration.dart` (+8 -0) 📝 `frontend/app_flowy/lib/startup/startup.dart` (+41 -16) 📝 `frontend/app_flowy/lib/startup/tasks/app_widget.dart` (+5 -4) 📝 `frontend/app_flowy/lib/startup/tasks/rust_sdk.dart` (+21 -5) 📝 `frontend/app_flowy/lib/user/application/auth_service.dart` (+22 -3) ➕ `frontend/app_flowy/lib/user/presentation/folder/folder_widget.dart` (+250 -0) 📝 `frontend/app_flowy/lib/user/presentation/router.dart` (+12 -2) _...and 39 more files_ </details> ### 📄 Description The users can customize their storage folder path. **ScreenShot** <img width="1206" alt="Screenshot 2022-12-06 at 10 39 40" src="https://user-images.githubusercontent.com/11863087/205795527-2ea50ddc-0108-4ae2-a68c-df8bb60b6f98.png"> --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 22:15:55 +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#4806
No description provided.