[PR #5444] [MERGED] fix: sidebar issues #6817

Closed
opened 2026-03-23 23:16:49 +00:00 by mirror · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5444
Author: @LucasXu0
Created: 5/30/2024
Status: Merged
Merged: 5/31/2024
Merged by: @LucasXu0

Base: mainHead: fix_059_issues


📝 Commits (10+)

  • 5ee0db4 fix: cannot open the view in favorite menu
  • 327e17b fix: pinned docs should also show up in the search list
  • 18649d7 fix: the search result doesn't update after deleting query
  • e7faa58 fix: remove widget button
  • 82cbaf3 fix: translation
  • 466edd5 fix: replace icon selector
  • 585b2c4 fix: translations
  • 188bea1 fix: recent page title sycn slowly
  • b7edddc fix: unable to favorite database on mobile
  • c550054 fix: auto focus on search textfield when opening favorite menu

📊 Changes

21 files changed (+332 additions, -245 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/mobile/application/recent/recent_view_bloc.dart (+12 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/favorite_space.dart (+14 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/home_space/home_space.dart (+12 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/recent_space.dart (+11 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_view_card.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/home/tab/_tab_bar.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart (+1 -1)
📝 frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart (+11 -33)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/cover/document_immersive_cover.dart (+39 -8)
frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/icon/icon_selector.dart (+159 -0)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/page_style/_page_style_icon.dart (+2 -155)
📝 frontend/appflowy_flutter/lib/workspace/application/view/view_bloc.dart (+6 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_folder.dart (+7 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_menu.dart (+29 -4)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_menu_bloc.dart (+7 -16)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_pin_action.dart (+0 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/footer/sidebar_footer.dart (+6 -5)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart (+6 -1)
📝 frontend/resources/flowy_icons/16x/m_collapse.svg (+2 -2)
📝 frontend/resources/translations/el-GR.json (+2 -2)

...and 1 more files

📄 Description

Feature Preview

  • The view name of the recent list is rendered very slowly, it takes a long time to wait, and it is empty after switching tabs
  • Cannot click on a Favorite View in More menu to go to that View
  • The button for expanding and collapsing the mobile homepage are a bit small, and it is easy to accidentally open the page
  • The pinned docs should also show up in the search list
  • remove the widget button.
  • click a doc in the favorite search list → doesn’t direct me to the page
  • Copy “Collapse all subpages
  • Remove text is not fully displayed
  • The emoji panel is not replaced
  • Copy “Close sidebar”
  • Grid and Calendar doesn’t have titles in Recents tab, takes long time to show
  • Can’t see menu for database views, can’t favourite them without it
  • click on “More” → should be active in the search bar without requiring me to click

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/5444 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 5/30/2024 **Status:** ✅ Merged **Merged:** 5/31/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `fix_059_issues` --- ### 📝 Commits (10+) - [`5ee0db4`](https://github.com/AppFlowy-IO/AppFlowy/commit/5ee0db404f14458b49ff1116a32dd38f356c4638) fix: cannot open the view in favorite menu - [`327e17b`](https://github.com/AppFlowy-IO/AppFlowy/commit/327e17b3f9b9ac12df515a31b774e687086de3a9) fix: pinned docs should also show up in the search list - [`18649d7`](https://github.com/AppFlowy-IO/AppFlowy/commit/18649d78e7314cc0d7acbea97e9211e8046debe1) fix: the search result doesn't update after deleting query - [`e7faa58`](https://github.com/AppFlowy-IO/AppFlowy/commit/e7faa58a8d0ce5734e0b78df01a4525540c17d59) fix: remove widget button - [`82cbaf3`](https://github.com/AppFlowy-IO/AppFlowy/commit/82cbaf3a676df6cdbaeef2ffc370e822305bb8a5) fix: translation - [`466edd5`](https://github.com/AppFlowy-IO/AppFlowy/commit/466edd5f750106787e32a2df35c6ec4c7b68ce78) fix: replace icon selector - [`585b2c4`](https://github.com/AppFlowy-IO/AppFlowy/commit/585b2c4d388a6583d6fdd1fd69e0908527fc53dc) fix: translations - [`188bea1`](https://github.com/AppFlowy-IO/AppFlowy/commit/188bea11ab2076ba21362f2407ed3a32a98bb6bf) fix: recent page title sycn slowly - [`b7edddc`](https://github.com/AppFlowy-IO/AppFlowy/commit/b7edddc500fbc8f30b708fdf615b73e7685b940d) fix: unable to favorite database on mobile - [`c550054`](https://github.com/AppFlowy-IO/AppFlowy/commit/c55005471faadf878996dd5ec0205d8e892ca377) fix: auto focus on search textfield when opening favorite menu ### 📊 Changes **21 files changed** (+332 additions, -245 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/mobile/application/recent/recent_view_bloc.dart` (+12 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/favorite_folder/favorite_space.dart` (+14 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/home_space/home_space.dart` (+12 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/recent_folder/recent_space.dart` (+11 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/shared/mobile_view_card.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/home/tab/_tab_bar.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/mobile_bottom_navigation_bar.dart` (+1 -1) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/page_item/mobile_view_item.dart` (+11 -33) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/cover/document_immersive_cover.dart` (+39 -8) ➕ `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/icon/icon_selector.dart` (+159 -0) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/page_style/_page_style_icon.dart` (+2 -155) 📝 `frontend/appflowy_flutter/lib/workspace/application/view/view_bloc.dart` (+6 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_folder.dart` (+7 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_menu.dart` (+29 -4) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_menu_bloc.dart` (+7 -16) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/favorites/favorite_pin_action.dart` (+0 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/footer/sidebar_footer.dart` (+6 -5) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart` (+6 -1) 📝 `frontend/resources/flowy_icons/16x/m_collapse.svg` (+2 -2) 📝 `frontend/resources/translations/el-GR.json` (+2 -2) _...and 1 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 - [x] The view name of the recent list is rendered very slowly, it takes a long time to wait, and it is empty after switching tabs - [x] Cannot click on a Favorite View in More menu to go to that View - [x] The button for expanding and collapsing the mobile homepage are a bit small, and it is easy to accidentally open the page - [x] The pinned docs should also show up in the search list - [x] remove the widget button. - [x] click a doc in the favorite search list → doesn’t direct me to the page - [x] Copy “Collapse all subpages - [x] Remove text is not fully displayed - [x] The emoji panel is not replaced - [x] Copy “Close sidebar” - [x] Grid and Calendar doesn’t have titles in Recents tab, takes long time to show - [x] Can’t see menu for database views, can’t favourite them without it - [x] click on “More” → should be active in the search bar without requiring me to click <!--- 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 - [x] 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 23:16:49 +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#6817
No description provided.