-
Couldn't load subscription status.
- Fork 1.2k
feat: show list of apps created by user #3272
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
krushnarout
wants to merge
1
commit into
main
Choose a base branch
from
feat/apps-list
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+145
−3
Open
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,115 @@ | ||
| import 'package:flutter/material.dart'; | ||
| import 'package:omi/backend/schema/app.dart'; | ||
| import 'package:omi/pages/apps/list_item.dart'; | ||
| import 'package:provider/provider.dart'; | ||
| import 'package:omi/providers/app_provider.dart'; | ||
|
|
||
| class AuthorAppsPage extends StatefulWidget { | ||
| final String authorName; | ||
| final List<App> apps; | ||
|
|
||
| const AuthorAppsPage({ | ||
| super.key, | ||
| required this.authorName, | ||
| required this.apps, | ||
| }); | ||
|
|
||
| @override | ||
| State<AuthorAppsPage> createState() => _AuthorAppsPageState(); | ||
| } | ||
|
|
||
| class _AuthorAppsPageState extends State<AuthorAppsPage> { | ||
| late List<App> _apps; | ||
|
|
||
| @override | ||
| void initState() { | ||
| super.initState(); | ||
| _apps = widget.apps; | ||
| } | ||
|
|
||
| @override | ||
| Widget build(BuildContext context) { | ||
| return Scaffold( | ||
| backgroundColor: Theme.of(context).colorScheme.primary, | ||
| appBar: AppBar( | ||
| backgroundColor: Theme.of(context).colorScheme.primary, | ||
| elevation: 0, | ||
| centerTitle: true, | ||
| leading: IconButton( | ||
| icon: const Icon(Icons.arrow_back_ios, color: Colors.white), | ||
| onPressed: () => Navigator.pop(context), | ||
| ), | ||
| title: Column( | ||
| children: [ | ||
| Text( | ||
| 'Apps by ${widget.authorName}', | ||
| style: const TextStyle( | ||
| color: Colors.white, | ||
| fontSize: 18, | ||
| fontWeight: FontWeight.w600, | ||
| ), | ||
| ), | ||
| Text( | ||
| '${_apps.length} app${_apps.length == 1 ? '' : 's'}', | ||
| style: TextStyle( | ||
| color: Colors.grey.shade400, | ||
| fontSize: 12, | ||
| fontWeight: FontWeight.w400, | ||
| ), | ||
| ), | ||
| ], | ||
| ), | ||
| ), | ||
| body: Column( | ||
| children: [ | ||
| Expanded( | ||
| child: _apps.isEmpty | ||
| ? Center( | ||
| child: Column( | ||
| mainAxisAlignment: MainAxisAlignment.center, | ||
| children: [ | ||
| Icon( | ||
| Icons.apps_outlined, | ||
| size: 64, | ||
| color: Colors.grey.shade600, | ||
| ), | ||
| const SizedBox(height: 16), | ||
| Text( | ||
| 'No apps found', | ||
| style: TextStyle( | ||
| fontSize: 18, | ||
| color: Colors.grey.shade400, | ||
| ), | ||
| ), | ||
| const SizedBox(height: 8), | ||
| Text( | ||
| 'This author hasn\'t published any apps yet', | ||
| style: TextStyle( | ||
| fontSize: 14, | ||
| color: Colors.grey.shade500, | ||
| ), | ||
| ), | ||
| ], | ||
| ), | ||
| ) | ||
| : ListView.separated( | ||
| padding: const EdgeInsets.symmetric(horizontal: 16, vertical: 8), | ||
| itemCount: _apps.length, | ||
| itemBuilder: (context, index) { | ||
| final app = _apps[index]; | ||
| final allApps = context.read<AppProvider>().apps; | ||
| final originalIndex = allApps.indexWhere((a) => a.id == app.id); | ||
|
|
||
| return AppListItem( | ||
| app: app, | ||
| index: originalIndex >= 0 ? originalIndex : index, | ||
| ); | ||
| }, | ||
| separatorBuilder: (context, index) => const SizedBox(height: 8), | ||
| ), | ||
| ), | ||
| ], | ||
| ), | ||
| ); | ||
| } | ||
| } |
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
AppProvider will never store all the apps now (since the v2/apps endpoints only return on demand), so relying on it to find apps of a specific author is not really ideal because you might not find all the apps. Consider fetching the apps of that specific user by maybe modifying the existing v2/search endpoint to include an author filter or maybe a new endpoint