[PR #5162] [MERGED] fix: launch review issues 0.5.5 #6675

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5162
Author: @LucasXu0
Created: 4/18/2024
Status: Merged
Merged: 4/22/2024
Merged by: @LucasXu0

Base: mainHead: fix_launch_review_isseus_055


📝 Commits (10+)

  • d5a7467 fix: remove doubel tap to rename
  • bec5ec3 fix: keep showing the magic link toast
  • 2461c99 feat: display workspace name instead of workspace
  • c7ecce6 feat: set the keyboard type of magic link textfield to email_address
  • 6fb5cb2 feat: support switching sign in and sign up
  • 41d4f2c Merge branch 'main' into fix_launch_review_isseus_055
  • a14650d Merge branch 'main' into fix_launch_review_isseus_055
  • 6ef1a71 fix: magic link ui design
  • 7fa42ff fix: improve sign in error toast
  • 3d1db15 fix: improve image load failed

📊 Changes

23 files changed (+497 additions, -305 deletions)

View changed files

📝 frontend/appflowy_flutter/lib/core/config/kv_keys.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/user_session_setting_group.dart (+0 -1)
📝 frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/image/resizeable_image.dart (+62 -27)
📝 frontend/appflowy_flutter/lib/user/application/sign_in_bloc.dart (+41 -1)
📝 frontend/appflowy_flutter/lib/user/presentation/helpers/handle_open_workspace_error.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/desktop_sign_in_screen.dart (+57 -40)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/mobile_sign_in_screen.dart (+39 -23)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/sign_in_screen.dart (+1 -3)
frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/anou (+0 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/magic_link_sign_in_buttons.dart (+41 -28)
frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/switch_sign_in_sign_up_button.dart (+52 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/third_party_sign_in_buttons.dart (+47 -31)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/widgets.dart (+3 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/widgets/auth_form_container.dart (+8 -3)
📝 frontend/appflowy_flutter/lib/workspace/application/user/user_workspace_bloc.dart (+5 -31)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/desktop_home_screen.dart (+12 -7)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart (+61 -67)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart (+1 -15)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/toast.dart (+1 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/view_title_bar.dart (+34 -7)

...and 3 more files

📄 Description

Feature Preview

  • remove double tap to rename
  • keep showing the magic link popup
  • display the real workspace name
  • set keyboard type of magic link to email_address
  • support sign up
  • improve the error message when signing in
  • improve image load failed widget
Screenshot 2024-04-22 at 10 18 26 Screenshot 2024-04-22 at 10 18 29 Screenshot 2024-04-22 at 11 09 25 Screenshot 2024-04-22 at 12 05 32

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/5162 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 4/18/2024 **Status:** ✅ Merged **Merged:** 4/22/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `fix_launch_review_isseus_055` --- ### 📝 Commits (10+) - [`d5a7467`](https://github.com/AppFlowy-IO/AppFlowy/commit/d5a746799a141e36ecf663ec20f4031b469b701f) fix: remove doubel tap to rename - [`bec5ec3`](https://github.com/AppFlowy-IO/AppFlowy/commit/bec5ec309b4a3d4f7644e056da9551ff66692afc) fix: keep showing the magic link toast - [`2461c99`](https://github.com/AppFlowy-IO/AppFlowy/commit/2461c99f17e4aa3a791a799fca0f168a9b988e1b) feat: display workspace name instead of workspace - [`c7ecce6`](https://github.com/AppFlowy-IO/AppFlowy/commit/c7ecce6d36bc1bf70825588c948ead51133b53dd) feat: set the keyboard type of magic link textfield to email_address - [`6fb5cb2`](https://github.com/AppFlowy-IO/AppFlowy/commit/6fb5cb21746bdd5e6f891966cfe3deb79d19867f) feat: support switching sign in and sign up - [`41d4f2c`](https://github.com/AppFlowy-IO/AppFlowy/commit/41d4f2ca84ded26b5da2b9b7f06fb6aa51a2c213) Merge branch 'main' into fix_launch_review_isseus_055 - [`a14650d`](https://github.com/AppFlowy-IO/AppFlowy/commit/a14650d0f86d3ecd4e6a8733d2f6a30588685f60) Merge branch 'main' into fix_launch_review_isseus_055 - [`6ef1a71`](https://github.com/AppFlowy-IO/AppFlowy/commit/6ef1a71f2e397d83633ad741ae9ebce713561678) fix: magic link ui design - [`7fa42ff`](https://github.com/AppFlowy-IO/AppFlowy/commit/7fa42ffb9e29fbede9c6d9d8fc68e153708e811b) fix: improve sign in error toast - [`3d1db15`](https://github.com/AppFlowy-IO/AppFlowy/commit/3d1db151651f8b52f5e513c4fd0118f9685740c7) fix: improve image load failed ### 📊 Changes **23 files changed** (+497 additions, -305 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/lib/core/config/kv_keys.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/user_session_setting_group.dart` (+0 -1) 📝 `frontend/appflowy_flutter/lib/plugins/document/presentation/editor_plugins/image/resizeable_image.dart` (+62 -27) 📝 `frontend/appflowy_flutter/lib/user/application/sign_in_bloc.dart` (+41 -1) 📝 `frontend/appflowy_flutter/lib/user/presentation/helpers/handle_open_workspace_error.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/desktop_sign_in_screen.dart` (+57 -40) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/mobile_sign_in_screen.dart` (+39 -23) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/sign_in_screen.dart` (+1 -3) ➖ `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/anou` (+0 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/magic_link_sign_in_buttons.dart` (+41 -28) ➕ `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/switch_sign_in_sign_up_button.dart` (+52 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/third_party_sign_in_buttons.dart` (+47 -31) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/widgets.dart` (+3 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/widgets/auth_form_container.dart` (+8 -3) 📝 `frontend/appflowy_flutter/lib/workspace/application/user/user_workspace_bloc.dart` (+5 -31) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/desktop_home_screen.dart` (+12 -7) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/sidebar.dart` (+61 -67) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/view/view_item.dart` (+1 -15) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/toast.dart` (+1 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/view_title_bar.dart` (+34 -7) _...and 3 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 - remove double tap to rename - keep showing the magic link popup - display the real workspace name - set keyboard type of magic link to email_address - support sign up - improve the error message when signing in - improve image load failed widget <img width="1235" alt="Screenshot 2024-04-22 at 10 18 26" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/2b019e7e-dd5d-4650-b670-42bec58f5e07"> <img width="1235" alt="Screenshot 2024-04-22 at 10 18 29" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/3475a356-60ff-4457-80f4-dcb54bc0cdde"> <img width="1595" alt="Screenshot 2024-04-22 at 11 09 25" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/afcc62f8-3779-4d4e-b7f5-3158ee46b508"> <img width="1032" alt="Screenshot 2024-04-22 at 12 05 32" src="https://github.com/AppFlowy-IO/AppFlowy/assets/11863087/4f86ac61-9ddf-4942-a608-853b9f37e5a1"> <!--- 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:10 +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#6675
No description provided.