2020-09-08 23:01:40 +02:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:lemmy_api_client/lemmy_api_client.dart';
|
|
|
|
|
2020-09-19 00:40:47 +02:00
|
|
|
import '../util/extensions/api.dart';
|
2020-09-09 17:41:54 +02:00
|
|
|
import '../util/goto.dart';
|
2020-09-08 23:01:40 +02:00
|
|
|
import '../widgets/markdown_text.dart';
|
|
|
|
|
|
|
|
class CommunitiesListPage extends StatelessWidget {
|
|
|
|
final String title;
|
|
|
|
final List<CommunityView> communities;
|
|
|
|
|
|
|
|
const CommunitiesListPage({Key key, @required this.communities, this.title})
|
|
|
|
: assert(communities != null),
|
|
|
|
super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final theme = Theme.of(context);
|
|
|
|
// TODO: abillity to load more, right now its 10 - default page size
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: Text(title ?? '', style: theme.textTheme.headline6),
|
|
|
|
centerTitle: true,
|
|
|
|
backgroundColor: theme.cardColor,
|
|
|
|
iconTheme: theme.iconTheme,
|
|
|
|
),
|
|
|
|
body: ListView.builder(
|
|
|
|
itemBuilder: (context, i) => ListTile(
|
2020-09-09 11:05:39 +02:00
|
|
|
title: Text(communities[i].name),
|
2020-09-08 23:01:40 +02:00
|
|
|
subtitle: communities[i].description != null
|
|
|
|
? Opacity(
|
|
|
|
opacity: 0.5,
|
2020-09-12 09:30:22 +02:00
|
|
|
child: MarkdownText(
|
|
|
|
communities[i].description,
|
|
|
|
instanceUrl: communities[i].instanceUrl,
|
|
|
|
),
|
2020-09-08 23:01:40 +02:00
|
|
|
)
|
|
|
|
: null,
|
2020-09-09 17:41:54 +02:00
|
|
|
onTap: () => goToCommunity.byId(
|
|
|
|
context, communities[i].instanceUrl, communities[i].id),
|
2020-09-08 23:01:40 +02:00
|
|
|
leading: communities[i].icon != null
|
|
|
|
? CachedNetworkImage(
|
|
|
|
height: 50,
|
|
|
|
width: 50,
|
|
|
|
imageUrl: communities[i].icon,
|
|
|
|
imageBuilder: (context, imageProvider) => Container(
|
2020-09-09 11:32:34 +02:00
|
|
|
decoration: BoxDecoration(
|
|
|
|
shape: BoxShape.circle,
|
|
|
|
image: DecorationImage(
|
|
|
|
fit: BoxFit.cover, image: imageProvider),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
errorWidget: (_, __, ___) => SizedBox(width: 50),
|
|
|
|
)
|
2020-09-08 23:01:40 +02:00
|
|
|
: SizedBox(width: 50),
|
|
|
|
// TODO: add trailing button for un/subscribing to communities
|
|
|
|
),
|
|
|
|
itemCount: communities.length,
|
|
|
|
));
|
|
|
|
}
|
|
|
|
}
|