[PR #5712] [MERGED] feat: support sign-in and sign-up on Web #6962

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

📋 Pull Request Information

Original PR: https://github.com/AppFlowy-IO/AppFlowy/pull/5712
Author: @qinluhe
Created: 7/10/2024
Status: Merged
Merged: 7/11/2024
Merged by: @LucasXu0

Base: mainHead: feat/support-sign-in-on-web


📝 Commits (10+)

  • 1174052 feat: support sign-in or sign-up on web
  • bb275ed fix: modified sign in on flutter
  • fd4923a fix: sign in
  • ebd28df fix: no spacing between page name and delete button
  • cab2fd8 feat: add popup with ok button style
  • d5cb304 fix: database render height
  • 4a193b4 fix: eslint
  • 1d95d0b chore: show magic link sent dialog
  • d41c2cc fix: prevent open row page
  • 4fa98ac fix: fill in row data

📊 Changes

49 files changed (+934 additions, -160 deletions)

View changed files

📝 frontend/appflowy_flutter/ios/Podfile.lock (+2 -2)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/about/about_setting_group.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/desktop_sign_in_screen.dart (+2 -10)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/mobile_sign_in_screen.dart (+1 -10)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/magic_link_sign_in_buttons.dart (+11 -10)
frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/sign_in_agreement.dart (+44 -0)
📝 frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/widgets.dart (+3 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart (+109 -38)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart (+30 -2)
📝 frontend/appflowy_web_app/package.json (+1 -1)
📝 frontend/appflowy_web_app/pnpm-lock.yaml (+8 -8)
📝 frontend/appflowy_web_app/src/application/database-yjs/selector.ts (+1 -0)
📝 frontend/appflowy_web_app/src/application/db/tables/view_metas.ts (+2 -0)
📝 frontend/appflowy_web_app/src/application/services/js-services/cache/__tests__/cache.test.ts (+3 -3)
📝 frontend/appflowy_web_app/src/application/services/js-services/cache/index.ts (+24 -2)
📝 frontend/appflowy_web_app/src/application/services/js-services/index.ts (+49 -2)
📝 frontend/appflowy_web_app/src/application/services/js-services/wasm/client_api.ts (+67 -11)
📝 frontend/appflowy_web_app/src/application/services/services.type.ts (+7 -0)
📝 frontend/appflowy_web_app/src/application/services/tauri-services/index.ts (+24 -0)
frontend/appflowy_web_app/src/application/session/event.ts (+24 -0)

...and 29 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/5712 **Author:** [@qinluhe](https://github.com/qinluhe) **Created:** 7/10/2024 **Status:** ✅ Merged **Merged:** 7/11/2024 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `feat/support-sign-in-on-web` --- ### 📝 Commits (10+) - [`1174052`](https://github.com/AppFlowy-IO/AppFlowy/commit/1174052be528eeffd56f05e8856094a85d04bd17) feat: support sign-in or sign-up on web - [`bb275ed`](https://github.com/AppFlowy-IO/AppFlowy/commit/bb275ede1cf919848aba853a30007e2256c863bf) fix: modified sign in on flutter - [`fd4923a`](https://github.com/AppFlowy-IO/AppFlowy/commit/fd4923aec438c2f88013d7f9625fc1e992895e19) fix: sign in - [`ebd28df`](https://github.com/AppFlowy-IO/AppFlowy/commit/ebd28dfad5d7dd9b9e805cd63369c1d408fd1b55) fix: no spacing between page name and delete button - [`cab2fd8`](https://github.com/AppFlowy-IO/AppFlowy/commit/cab2fd8cf406d6aca62c993df1084300fd89df30) feat: add popup with ok button style - [`d5cb304`](https://github.com/AppFlowy-IO/AppFlowy/commit/d5cb304992183a15d88127af74abade3bdf60762) fix: database render height - [`4a193b4`](https://github.com/AppFlowy-IO/AppFlowy/commit/4a193b422401fc71f4b99626664c36eddbf85d9a) fix: eslint - [`1d95d0b`](https://github.com/AppFlowy-IO/AppFlowy/commit/1d95d0b8f7518b4b177ee17e519be956f40514b3) chore: show magic link sent dialog - [`d41c2cc`](https://github.com/AppFlowy-IO/AppFlowy/commit/d41c2ccc642dd2aeb0081d3c4aeea3f7a804b8b6) fix: prevent open row page - [`4fa98ac`](https://github.com/AppFlowy-IO/AppFlowy/commit/4fa98acc111cec320920e577efa1eaebcdba2a0c) fix: fill in row data ### 📊 Changes **49 files changed** (+934 additions, -160 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/ios/Podfile.lock` (+2 -2) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/about/about_setting_group.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/desktop_sign_in_screen.dart` (+2 -10) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/mobile_sign_in_screen.dart` (+1 -10) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/magic_link_sign_in_buttons.dart` (+11 -10) ➕ `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/sign_in_agreement.dart` (+44 -0) 📝 `frontend/appflowy_flutter/lib/user/presentation/screens/sign_in_screen/widgets/widgets.dart` (+3 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart` (+109 -38) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart` (+30 -2) 📝 `frontend/appflowy_web_app/package.json` (+1 -1) 📝 `frontend/appflowy_web_app/pnpm-lock.yaml` (+8 -8) 📝 `frontend/appflowy_web_app/src/application/database-yjs/selector.ts` (+1 -0) 📝 `frontend/appflowy_web_app/src/application/db/tables/view_metas.ts` (+2 -0) 📝 `frontend/appflowy_web_app/src/application/services/js-services/cache/__tests__/cache.test.ts` (+3 -3) 📝 `frontend/appflowy_web_app/src/application/services/js-services/cache/index.ts` (+24 -2) 📝 `frontend/appflowy_web_app/src/application/services/js-services/index.ts` (+49 -2) 📝 `frontend/appflowy_web_app/src/application/services/js-services/wasm/client_api.ts` (+67 -11) 📝 `frontend/appflowy_web_app/src/application/services/services.type.ts` (+7 -0) 📝 `frontend/appflowy_web_app/src/application/services/tauri-services/index.ts` (+24 -0) ➕ `frontend/appflowy_web_app/src/application/session/event.ts` (+24 -0) _...and 29 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 - [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:17:28 +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#6962
No description provided.