Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 30 additions & 3 deletions app/lib/pages/apps/app_detail/app_detail.dart
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import 'dart:async';
import '../../../backend/schema/app.dart';
import '../../../backend/http/api/payment.dart';
import '../widgets/show_app_options_sheet.dart';
import '../widgets/author_apps_page.dart';
import 'widgets/info_card_widget.dart';

import 'package:timeago/timeago.dart' as timeago;
Expand Down Expand Up @@ -451,9 +452,35 @@ class _AppDetailPageState extends State<AppDetailPage> {
),
),
const SizedBox(height: 4),
Text(
app.author.decodeString,
style: const TextStyle(color: Colors.grey, fontSize: 14),
GestureDetector(
onTap: () {
final appProvider = context.read<AppProvider>();
Copy link
Member

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

final Map<String, App> uniqueApps = {};

for (final app in appProvider.apps) {
if (app.author == this.app.author) {
uniqueApps[app.id] = app;
}
}

final authorApps = uniqueApps.values.toList();

routeToPage(
context,
AuthorAppsPage(
authorName: app.author.decodeString,
apps: authorApps,
),
);
},
child: Text(
app.author.decodeString,
style: const TextStyle(
color: Colors.grey,
fontSize: 14,
fontWeight: FontWeight.w500,
),
),
),
],
),
Expand Down
115 changes: 115 additions & 0 deletions app/lib/pages/apps/widgets/author_apps_page.dart
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),
),
),
],
),
);
}
}