[PR #7809] [MERGED] feat: display joined at and user avatar in members page #8128

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

📋 Pull Request Information

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

Base: mainHead: settings_page_name


📝 Commits (4)

  • fba10e0 feat: new settings page design
  • 77e03ca feat: support display member join at and avatar
  • 1232997 chore: bump version 0.9.0
  • 6c28cbe chore: update translations

📊 Changes

21 files changed (+182 additions, -92 deletions)

View changed files

📝 frontend/Makefile.toml (+1 -1)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/settings_dialog.dart (+8 -2)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/inivite_member_by_link.dart (+8 -6)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/workspace_member_page.dart (+41 -6)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_menu.dart (+9 -9)
📝 frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_menu_element.dart (+62 -39)
📝 frontend/appflowy_flutter/lib/workspace/presentation/widgets/user_avatar.dart (+6 -1)
📝 frontend/appflowy_flutter/pubspec.yaml (+1 -1)
📝 frontend/resources/translations/en.json (+1 -1)
📝 frontend/rust-lib/Cargo.lock (+12 -12)
📝 frontend/rust-lib/Cargo.toml (+2 -2)
📝 frontend/rust-lib/flowy-server/src/af_cloud/impls/user/dto.rs (+1 -0)
📝 frontend/rust-lib/flowy-server/src/local_server/impls/user.rs (+1 -0)
frontend/rust-lib/flowy-sqlite/migrations/2025-04-22-150142_workspace_member_joined_at/down.sql (+3 -0)
frontend/rust-lib/flowy-sqlite/migrations/2025-04-22-150142_workspace_member_joined_at/up.sql (+3 -0)
📝 frontend/rust-lib/flowy-sqlite/src/schema.rs (+13 -12)
📝 frontend/rust-lib/flowy-user-pub/src/entities.rs (+1 -0)
📝 frontend/rust-lib/flowy-user-pub/src/sql/member_sql.rs (+2 -0)
📝 frontend/rust-lib/flowy-user-pub/src/sql/user_sql.rs (+1 -0)
📝 frontend/rust-lib/flowy-user/src/entities/workspace.rs (+4 -0)

...and 1 more files

📄 Description

Feature Preview

  • new settings page design
  • display joined_at and user avatar in members page

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 settings page design and add support for tracking workspace member join time

New Features:

  • Add support for tracking and displaying workspace member join time

Enhancements:

  • Redesign settings menu with new UI components
  • Update theme and styling for settings dialog

Chores:

  • Update database schema to include joined_at column
  • Update client API dependencies

🔄 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/7809 **Author:** [@LucasXu0](https://github.com/LucasXu0) **Created:** 4/22/2025 **Status:** ✅ Merged **Merged:** 4/23/2025 **Merged by:** [@LucasXu0](https://github.com/LucasXu0) **Base:** `main` ← **Head:** `settings_page_name` --- ### 📝 Commits (4) - [`fba10e0`](https://github.com/AppFlowy-IO/AppFlowy/commit/fba10e025ae3f7f9acc4703889119ab2ee4b8a97) feat: new settings page design - [`77e03ca`](https://github.com/AppFlowy-IO/AppFlowy/commit/77e03ca408c3c729debc9fddb9269e01d4a86abd) feat: support display member join at and avatar - [`1232997`](https://github.com/AppFlowy-IO/AppFlowy/commit/1232997df8302ce25c7c03924d1ec49410a1473c) chore: bump version 0.9.0 - [`6c28cbe`](https://github.com/AppFlowy-IO/AppFlowy/commit/6c28cbeedbb5d89652bf9a50adf9f953193df077) chore: update translations ### 📊 Changes **21 files changed** (+182 additions, -92 deletions) <details> <summary>View changed files</summary> 📝 `frontend/Makefile.toml` (+1 -1) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/settings_dialog.dart` (+8 -2) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/inivitation/inivite_member_by_link.dart` (+8 -6) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/members/workspace_member_page.dart` (+41 -6) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_menu.dart` (+9 -9) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/settings/widgets/settings_menu_element.dart` (+62 -39) 📝 `frontend/appflowy_flutter/lib/workspace/presentation/widgets/user_avatar.dart` (+6 -1) 📝 `frontend/appflowy_flutter/pubspec.yaml` (+1 -1) 📝 `frontend/resources/translations/en.json` (+1 -1) 📝 `frontend/rust-lib/Cargo.lock` (+12 -12) 📝 `frontend/rust-lib/Cargo.toml` (+2 -2) 📝 `frontend/rust-lib/flowy-server/src/af_cloud/impls/user/dto.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-server/src/local_server/impls/user.rs` (+1 -0) ➕ `frontend/rust-lib/flowy-sqlite/migrations/2025-04-22-150142_workspace_member_joined_at/down.sql` (+3 -0) ➕ `frontend/rust-lib/flowy-sqlite/migrations/2025-04-22-150142_workspace_member_joined_at/up.sql` (+3 -0) 📝 `frontend/rust-lib/flowy-sqlite/src/schema.rs` (+13 -12) 📝 `frontend/rust-lib/flowy-user-pub/src/entities.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-user-pub/src/sql/member_sql.rs` (+2 -0) 📝 `frontend/rust-lib/flowy-user-pub/src/sql/user_sql.rs` (+1 -0) 📝 `frontend/rust-lib/flowy-user/src/entities/workspace.rs` (+4 -0) _...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] new settings page design - [x] display joined_at and user avatar in members page <!--- 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 settings page design and add support for tracking workspace member join time New Features: - Add support for tracking and displaying workspace member join time Enhancements: - Redesign settings menu with new UI components - Update theme and styling for settings dialog Chores: - Update database schema to include joined_at column - Update client API dependencies --- <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:44 +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#8128
No description provided.