Feature/120 users should be able to upload an avatar and edit their description username#122
Merged
felix-schultz merged 10 commits intodevfrom Jul 24, 2025
Conversation
chore(deps): update eslint and related packages to version 9.31.0 fix(flow-like): add aws.cognito.signin.user.admin scope to OAuth configuration chore(ui): update eslint dependency in ui package to version 9.31.0
…mproved functionality and readability
…ted components feat(api): enforce unique constraints on user fields in Prisma schema feat(api): add preferred_username to user model and JWT middleware feat(api): update user info routes to handle preferred_username and avatar signing feat(api): implement upsert_info route for user profile updates feat(app): update media path structure for app-related media
…rameter for improved accuracy
- Added framer-motion animations to app cards in the YoursPage and Library pages for improved user experience. - Introduced a new ProfilePage component to display user information, including avatar, description, and published apps. - Implemented loading skeletons and error handling for user profile and apps sections. - Updated AppCard component styles for better visual consistency and interaction feedback. - Refactored user state management to streamline user info retrieval and error handling. - Improved code readability and maintainability by restructuring and cleaning up existing code.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces significant changes across multiple areas, including dependency updates, refactoring, and new feature implementations. Key updates include transitioning image processing logic to a shared library, adding new dialogs for user account management, and enhancing UI interactions with animations.
Dependency and configuration updates:
image,imageproc, andwebpdependencies to the workspace, consolidating them for shared use (Cargo.toml,apps/backend/aws/media-transformer/Cargo.toml). [1] [2] [3]Backend refactoring:
is_supported_image_format,resize_image,encode_as_webp) and replacing them with calls to theflow_like_types::imageslibrary (apps/backend/aws/media-transformer/src/event_handler.rs). [1] [2] [3] [4]New account management features:
ChangeEmailDialogandChangePasswordDialogcomponents for updating user email and password, with validation, error handling, and integration with AWS Cognito (apps/desktop/app/account/change-email.tsx,apps/desktop/app/account/change-password.tsx). [1] [2]AccountPageto support these new dialogs and integrate with AWS Amplify for user attribute updates and password changes (apps/desktop/app/account/page.tsx).UI enhancements:
framer-motionfor smoother hover effects (apps/desktop/app/library/apps/page.tsx). [1] [2]