[PR #7780] [MERGED] feat: invite member by link #8108

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

📋 Pull Request Information

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

Base: mainHead: new_members_settings


📝 Commits (10+)

  • dd6664b feat: invite member by link
  • 574dbd6 feat: add invite by link section
  • d1ddbfc feat: integrate invite by link and copy invite link
  • 0fc2edc feat: integrate invite link apis
  • e2845f3 feat: add reset link dialog
  • b282489 feat: support redirect to admin panel
  • 2162c19 fix: flutter analyze
  • 575d469 Merge branch 'main' into new_members_settings
  • de24e75 feat: remove expire time
  • 2f42f9f fix: apply correct color in dark mode

📊 Changes

21 files changed (+1094 additions, -613 deletions)

View changed files

📝 frontend/appflowy_flutter/integration_test/desktop/uncategorized/hotkeys_test.dart (+8 -8)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/workspace/invite_members_screen.dart (+4 -4)
📝 frontend/appflowy_flutter/lib/mobile/presentation/setting/workspace/member_list.dart (+1 -1)
frontend/appflowy_flutter/lib/shared/af_user_profile_extension.dart (+16 -0)
📝 frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart (+3 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart (+60 -42)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_body.dart (+9 -3)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_category_spacer.dart (+2 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_header.dart (+16 -8)
frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/inivite_member_by_link.dart (+154 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/invite_member_by_email.dart (+79 -0)
frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/member_http_service.dart (+181 -0)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/workspace_member_bloc.dart (+273 -157)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/workspace_member_page.dart (+226 -350)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart (+2 -0)
📝 frontend/appflowy_flutter/macos/Podfile.lock (+23 -23)
📝 frontend/appflowy_flutter/packages/appflowy_ui/lib/src/theme/appflowy_theme.dart (+1 -1)
📝 frontend/appflowy_flutter/packages/appflowy_ui/lib/src/theme/data/appflowy_default/semantic.dart (+2 -0)
📝 frontend/appflowy_flutter/packages/appflowy_ui/lib/src/theme/definition/color_scheme/border_color_scheme.dart (+4 -1)
📝 frontend/appflowy_flutter/test/widget_test/confirm_dialog_test.dart (+12 -8)

...and 1 more files

📄 Description

Feature Preview

  • refacotr member settings page
  • invite member by link
  • reset invitation link

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.

Summary by Sourcery

Refactor and enhance the workspace members page with improved UI, invitation methods, and user management features

New Features:

  • Add support for inviting members through different methods, including email and link-based invitations

Enhancements:

  • Improve the members page layout and styling
  • Add more detailed user information display
  • Enhance text and theme styling for better readability

Documentation:

  • Update page description to clarify admin panel functionality

🔄 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/7780 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 4/18/2025 **Status:** ✅ Merged **Merged:** 4/22/2025 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `new_members_settings` --- ### 📝 Commits (10+) - [`dd6664b`](https://github.com/AppFlowy-IO/AppFlowy/commit/dd6664b9b0e22abe1815ee67d2e429fb91368df8) feat: invite member by link - [`574dbd6`](https://github.com/AppFlowy-IO/AppFlowy/commit/574dbd606c654994d90d5f808affcda0bee76996) feat: add invite by link section - [`d1ddbfc`](https://github.com/AppFlowy-IO/AppFlowy/commit/d1ddbfcd7b2a5e8de5a553adb40059126eef569d) feat: integrate invite by link and copy invite link - [`0fc2edc`](https://github.com/AppFlowy-IO/AppFlowy/commit/0fc2edc6d7537d37d7089a44b43deb71f987231b) feat: integrate invite link apis - [`e2845f3`](https://github.com/AppFlowy-IO/AppFlowy/commit/e2845f381b3ad70ec134c8d3c215d56bec34c3ab) feat: add reset link dialog - [`b282489`](https://github.com/AppFlowy-IO/AppFlowy/commit/b28248967f6b28c05f95c75aed72fb1d90e20d08) feat: support redirect to admin panel - [`2162c19`](https://github.com/AppFlowy-IO/AppFlowy/commit/2162c19113f054d1f606782dca52d60c3dd0f66e) fix: flutter analyze - [`575d469`](https://github.com/AppFlowy-IO/AppFlowy/commit/575d4698e75072a55bb395f1790420940ab47e0f) Merge branch 'main' into new_members_settings - [`de24e75`](https://github.com/AppFlowy-IO/AppFlowy/commit/de24e7565f45aca7b9043b8ca8b3f47c2aad1837) feat: remove expire time - [`2f42f9f`](https://github.com/AppFlowy-IO/AppFlowy/commit/2f42f9ff3948dd486d5962cbbdd74fcb54f04b3a) fix: apply correct color in dark mode ### 📊 Changes **21 files changed** (+1094 additions, -613 deletions) <details> <summary>View changed files</summary> 📝 `frontend/appflowy_flutter/integration_test/desktop/uncategorized/hotkeys_test.dart` (+8 -8) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/workspace/invite_members_screen.dart` (+4 -4) 📝 `frontend/appflowy_flutter/lib/mobile/presentation/setting/workspace/member_list.dart` (+1 -1) ➕ `frontend/appflowy_flutter/lib/shared/af_user_profile_extension.dart` (+16 -0) 📝 `frontend/appflowy_flutter/lib/startup/tasks/app_widget.dart` (+3 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/home/menu/sidebar/space/shared_widget.dart` (+60 -42) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_body.dart` (+9 -3) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_category_spacer.dart` (+2 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/shared/settings_header.dart` (+16 -8) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/inivite_member_by_link.dart` (+154 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/invite_member_by_email.dart` (+79 -0) ➕ `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/member_http_service.dart` (+181 -0) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/workspace_member_bloc.dart` (+273 -157) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/workspace_member_page.dart` (+226 -350) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/dialogs.dart` (+2 -0) 📝 `frontend/appflowy_flutter/macos/Podfile.lock` (+23 -23) 📝 `frontend/appflowy_flutter/packages/appflowy_ui/lib/src/theme/appflowy_theme.dart` (+1 -1) 📝 `frontend/appflowy_flutter/packages/appflowy_ui/lib/src/theme/data/appflowy_default/semantic.dart` (+2 -0) 📝 `frontend/appflowy_flutter/packages/appflowy_ui/lib/src/theme/definition/color_scheme/border_color_scheme.dart` (+4 -1) 📝 `frontend/appflowy_flutter/test/widget_test/confirm_dialog_test.dart` (+12 -8) _...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] refacotr member settings page - [x] invite member by link - [x] reset invitation link <!--- 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) - [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. ## Summary by Sourcery Refactor and enhance the workspace members page with improved UI, invitation methods, and user management features New Features: - Add support for inviting members through different methods, including email and link-based invitations Enhancements: - Improve the members page layout and styling - Add more detailed user information display - Enhance text and theme styling for better readability Documentation: - Update page description to clarify admin panel functionality --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
mirror 2026-03-23 23:22:39 +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#8108
No description provided.