2020-09-05 17:13:23 +02:00
|
|
|
import 'package:cached_network_image/cached_network_image.dart';
|
2020-09-09 22:04:50 +02:00
|
|
|
import 'package:esys_flutter_share/esys_flutter_share.dart';
|
2020-09-05 17:13:23 +02:00
|
|
|
import 'package:flutter/gestures.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
2020-09-09 22:04:50 +02:00
|
|
|
import 'package:intl/intl.dart';
|
2020-09-05 17:13:23 +02:00
|
|
|
import 'package:lemmy_api_client/lemmy_api_client.dart';
|
2020-09-09 22:04:50 +02:00
|
|
|
import 'package:url_launcher/url_launcher.dart' as ul;
|
2020-09-05 17:13:23 +02:00
|
|
|
|
2020-09-17 00:24:49 +02:00
|
|
|
import '../hooks/delayed_loading.dart';
|
2020-09-18 15:57:45 +02:00
|
|
|
import '../hooks/logged_in_action.dart';
|
2020-09-15 15:25:07 +02:00
|
|
|
import '../hooks/memo_future.dart';
|
2020-09-17 00:24:49 +02:00
|
|
|
import '../hooks/stores.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-05 17:13:23 +02:00
|
|
|
import '../util/intl.dart';
|
|
|
|
import '../util/text_color.dart';
|
2020-09-05 18:17:09 +02:00
|
|
|
import '../widgets/badge.dart';
|
2020-09-09 22:04:50 +02:00
|
|
|
import '../widgets/bottom_modal.dart';
|
2020-09-11 20:38:50 +02:00
|
|
|
import '../widgets/fullscreenable_image.dart';
|
2020-09-05 18:17:09 +02:00
|
|
|
import '../widgets/markdown_text.dart';
|
2020-09-05 17:13:23 +02:00
|
|
|
|
|
|
|
class CommunityPage extends HookWidget {
|
|
|
|
final CommunityView _community;
|
|
|
|
final String instanceUrl;
|
2020-09-15 15:25:07 +02:00
|
|
|
final String communityName;
|
|
|
|
final int communityId;
|
2020-09-05 17:13:23 +02:00
|
|
|
|
2020-09-15 15:25:07 +02:00
|
|
|
CommunityPage.fromName({
|
|
|
|
@required this.communityName,
|
|
|
|
@required this.instanceUrl,
|
|
|
|
}) : assert(communityName != null),
|
2020-09-07 21:47:33 +02:00
|
|
|
assert(instanceUrl != null),
|
2020-09-15 15:25:07 +02:00
|
|
|
communityId = null,
|
2020-09-07 21:42:04 +02:00
|
|
|
_community = null;
|
2020-09-15 15:25:07 +02:00
|
|
|
CommunityPage.fromId({
|
|
|
|
@required this.communityId,
|
|
|
|
@required this.instanceUrl,
|
|
|
|
}) : assert(communityId != null),
|
2020-09-07 21:57:43 +02:00
|
|
|
assert(instanceUrl != null),
|
2020-09-15 15:25:07 +02:00
|
|
|
communityName = null,
|
2020-09-07 21:57:43 +02:00
|
|
|
_community = null;
|
2020-09-07 21:42:04 +02:00
|
|
|
CommunityPage.fromCommunityView(this._community)
|
2020-09-09 17:41:54 +02:00
|
|
|
: instanceUrl = _community.instanceUrl,
|
2020-09-15 15:25:07 +02:00
|
|
|
communityId = _community.id,
|
|
|
|
communityName = _community.name;
|
2020-09-05 17:13:23 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final theme = Theme.of(context);
|
2020-09-16 23:15:42 +02:00
|
|
|
final accountsStore = useAccountsStore();
|
|
|
|
|
2020-09-16 23:22:04 +02:00
|
|
|
final fullCommunitySnap = useMemoFuture(() {
|
2020-09-16 23:15:42 +02:00
|
|
|
final token = accountsStore.defaultTokenFor(instanceUrl);
|
2020-09-16 21:51:08 +02:00
|
|
|
|
2020-09-15 23:46:55 +02:00
|
|
|
if (communityId != null) {
|
|
|
|
return LemmyApi(instanceUrl).v1.getCommunity(
|
|
|
|
id: communityId,
|
2020-09-16 21:51:08 +02:00
|
|
|
auth: token?.raw,
|
2020-09-15 15:25:07 +02:00
|
|
|
);
|
|
|
|
} else {
|
|
|
|
return LemmyApi(instanceUrl).v1.getCommunity(
|
|
|
|
name: communityName,
|
2020-09-16 21:51:08 +02:00
|
|
|
auth: token?.raw,
|
2020-09-15 15:25:07 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
2020-09-05 17:13:23 +02:00
|
|
|
|
|
|
|
final colorOnCard = textColorBasedOnBackground(theme.cardColor);
|
|
|
|
|
|
|
|
final community = () {
|
|
|
|
if (fullCommunitySnap.hasData) {
|
|
|
|
return fullCommunitySnap.data.community;
|
|
|
|
} else if (_community != null) {
|
|
|
|
return _community;
|
|
|
|
} else {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
}();
|
|
|
|
|
2020-09-09 22:04:50 +02:00
|
|
|
// FALLBACK
|
|
|
|
|
2020-09-05 17:13:23 +02:00
|
|
|
if (community == null) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
iconTheme: theme.iconTheme,
|
2020-09-09 22:15:39 +02:00
|
|
|
brightness: theme.brightness,
|
2020-09-05 17:13:23 +02:00
|
|
|
backgroundColor: theme.cardColor,
|
|
|
|
elevation: 0,
|
|
|
|
),
|
|
|
|
body: Center(
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
if (fullCommunitySnap.hasError) ...[
|
|
|
|
Icon(Icons.error),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.all(8),
|
|
|
|
child: Text('ERROR: ${fullCommunitySnap.error}'),
|
|
|
|
)
|
|
|
|
] else
|
|
|
|
CircularProgressIndicator(semanticsLabel: 'loading')
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-09 22:04:50 +02:00
|
|
|
// FUNCTIONS
|
|
|
|
void _share() =>
|
|
|
|
Share.text('Share instance', community.actorId, 'text/plain');
|
|
|
|
|
2020-09-10 15:18:24 +02:00
|
|
|
void _openMoreMenu() {
|
2020-09-09 22:04:50 +02:00
|
|
|
showModalBottomSheet(
|
|
|
|
backgroundColor: Colors.transparent,
|
2020-09-10 15:18:24 +02:00
|
|
|
context: context,
|
2020-09-09 22:04:50 +02:00
|
|
|
builder: (context) => BottomModal(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
ListTile(
|
|
|
|
leading: Icon(Icons.open_in_browser),
|
|
|
|
title: Text('Open in browser'),
|
|
|
|
onTap: () async => await ul.canLaunch(community.actorId)
|
|
|
|
? ul.launch(community.actorId)
|
|
|
|
: Scaffold.of(context).showSnackBar(
|
|
|
|
SnackBar(content: Text("can't open in browser"))),
|
|
|
|
),
|
|
|
|
ListTile(
|
|
|
|
leading: Icon(Icons.info_outline),
|
|
|
|
title: Text('Nerd stuff'),
|
|
|
|
onTap: () {
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
child: SimpleDialog(
|
|
|
|
contentPadding: const EdgeInsets.symmetric(
|
|
|
|
horizontal: 20,
|
|
|
|
vertical: 15,
|
|
|
|
),
|
|
|
|
children: [
|
|
|
|
Table(
|
|
|
|
children: [
|
|
|
|
TableRow(children: [
|
|
|
|
Text('created by:'),
|
|
|
|
Text('@${community.creatorName}'),
|
|
|
|
]),
|
|
|
|
TableRow(children: [
|
|
|
|
Text('hot rank:'),
|
|
|
|
Text(community.hotRank.toString()),
|
|
|
|
]),
|
|
|
|
TableRow(children: [
|
|
|
|
Text('published:'),
|
|
|
|
Text(
|
|
|
|
'''${DateFormat.yMMMd().format(community.published)}'''
|
|
|
|
''' ${DateFormat.Hms().format(community.published)}'''),
|
|
|
|
]),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
]));
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-05 17:13:23 +02:00
|
|
|
return Scaffold(
|
|
|
|
body: DefaultTabController(
|
|
|
|
length: 3,
|
|
|
|
child: NestedScrollView(
|
2020-09-07 23:13:05 +02:00
|
|
|
headerSliverBuilder: (context, innerBoxIsScrolled) => <Widget>[
|
|
|
|
// TODO: change top section to be more flexible
|
|
|
|
SliverAppBar(
|
|
|
|
expandedHeight: 300,
|
|
|
|
floating: false,
|
|
|
|
pinned: true,
|
|
|
|
elevation: 0,
|
|
|
|
backgroundColor: theme.cardColor,
|
2020-09-09 22:15:39 +02:00
|
|
|
brightness: theme.brightness,
|
2020-09-07 23:13:05 +02:00
|
|
|
iconTheme: theme.iconTheme,
|
|
|
|
title: Text('!${community.name}',
|
|
|
|
style: TextStyle(color: colorOnCard)),
|
|
|
|
actions: [
|
|
|
|
IconButton(icon: Icon(Icons.share), onPressed: _share),
|
|
|
|
IconButton(
|
2020-09-10 15:35:06 +02:00
|
|
|
icon: Icon(Icons.more_vert), onPressed: _openMoreMenu),
|
2020-09-07 23:13:05 +02:00
|
|
|
],
|
|
|
|
flexibleSpace: FlexibleSpaceBar(
|
2020-09-15 15:25:07 +02:00
|
|
|
background:
|
|
|
|
_CommunityOverview(community, instanceUrl: instanceUrl),
|
2020-09-05 17:13:23 +02:00
|
|
|
),
|
2020-09-07 23:13:05 +02:00
|
|
|
),
|
|
|
|
SliverPersistentHeader(
|
|
|
|
delegate: _SliverAppBarDelegate(
|
|
|
|
TabBar(
|
|
|
|
labelColor: theme.textTheme.bodyText1.color,
|
|
|
|
unselectedLabelColor: Colors.grey,
|
|
|
|
tabs: [
|
|
|
|
Tab(text: 'Posts'),
|
|
|
|
Tab(text: 'Comments'),
|
|
|
|
Tab(text: 'About'),
|
|
|
|
],
|
2020-09-05 17:13:23 +02:00
|
|
|
),
|
|
|
|
),
|
2020-09-07 23:13:05 +02:00
|
|
|
pinned: true,
|
|
|
|
),
|
|
|
|
],
|
2020-09-05 17:13:23 +02:00
|
|
|
body: TabBarView(
|
|
|
|
children: [
|
|
|
|
ListView(
|
|
|
|
children: [
|
2020-09-05 18:17:09 +02:00
|
|
|
Center(child: Text('posts go here')),
|
2020-09-05 17:13:23 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
ListView(
|
|
|
|
children: [
|
2020-09-05 18:17:09 +02:00
|
|
|
Center(child: Text('comments go here')),
|
2020-09-05 17:13:23 +02:00
|
|
|
],
|
|
|
|
),
|
2020-09-06 00:03:52 +02:00
|
|
|
_AboutTab(
|
2020-09-05 19:27:11 +02:00
|
|
|
community: community,
|
|
|
|
moderators: fullCommunitySnap.data?.moderators,
|
|
|
|
),
|
2020-09-05 17:13:23 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _CommunityOverview extends StatelessWidget {
|
|
|
|
final CommunityView community;
|
|
|
|
final String instanceUrl;
|
|
|
|
|
|
|
|
_CommunityOverview(
|
|
|
|
this.community, {
|
|
|
|
@required this.instanceUrl,
|
|
|
|
}) : assert(instanceUrl != null),
|
2020-09-15 15:25:07 +02:00
|
|
|
assert(goToInstance != null);
|
2020-09-05 17:13:23 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final theme = Theme.of(context);
|
|
|
|
final shadow = BoxShadow(color: theme.canvasColor, blurRadius: 5);
|
|
|
|
|
|
|
|
final icon = community.icon != null
|
|
|
|
? Stack(
|
|
|
|
alignment: Alignment.center,
|
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
width: 90,
|
|
|
|
height: 90,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
shape: BoxShape.circle,
|
|
|
|
color: Colors.white,
|
|
|
|
boxShadow: [
|
|
|
|
BoxShadow(
|
|
|
|
color: Colors.black.withOpacity(0.7), blurRadius: 3)
|
|
|
|
]),
|
|
|
|
),
|
|
|
|
Container(
|
|
|
|
width: 83,
|
|
|
|
height: 83,
|
2020-09-11 20:38:50 +02:00
|
|
|
child: FullscreenableImage(
|
|
|
|
url: community.icon,
|
|
|
|
child: CachedNetworkImage(
|
|
|
|
imageUrl: community.icon,
|
|
|
|
imageBuilder: (context, imageProvider) => Container(
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
shape: BoxShape.circle,
|
|
|
|
image: DecorationImage(
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
image: imageProvider,
|
|
|
|
),
|
2020-09-05 17:13:23 +02:00
|
|
|
),
|
|
|
|
),
|
2020-09-13 16:05:17 +02:00
|
|
|
errorWidget: (_, __, ___) => Icon(Icons.warning),
|
2020-09-05 17:13:23 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
)
|
|
|
|
: null;
|
|
|
|
|
|
|
|
return Stack(children: [
|
|
|
|
if (community.banner != null)
|
2020-09-11 20:43:00 +02:00
|
|
|
FullscreenableImage(
|
|
|
|
url: community.banner,
|
2020-09-13 16:05:17 +02:00
|
|
|
child: CachedNetworkImage(
|
|
|
|
imageUrl: community.banner,
|
|
|
|
errorWidget: (_, __, ___) => Container(),
|
|
|
|
),
|
2020-09-11 20:43:00 +02:00
|
|
|
),
|
2020-09-05 17:13:23 +02:00
|
|
|
SafeArea(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 45),
|
|
|
|
child: Column(children: [
|
|
|
|
if (community.icon != null)
|
|
|
|
Center(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 0),
|
|
|
|
child: Center(child: icon),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
// NAME
|
|
|
|
Center(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 10),
|
|
|
|
child: RichText(
|
|
|
|
overflow: TextOverflow.ellipsis, // TODO: fix overflowing
|
|
|
|
text: TextSpan(
|
|
|
|
style: theme.textTheme.subtitle1.copyWith(shadows: [shadow]),
|
|
|
|
children: [
|
|
|
|
TextSpan(
|
|
|
|
text: '!',
|
|
|
|
style: TextStyle(fontWeight: FontWeight.w200)),
|
|
|
|
TextSpan(
|
|
|
|
text: community.name,
|
|
|
|
style: TextStyle(fontWeight: FontWeight.w600)),
|
|
|
|
TextSpan(
|
|
|
|
text: '@',
|
|
|
|
style: TextStyle(fontWeight: FontWeight.w200)),
|
|
|
|
TextSpan(
|
|
|
|
text: instanceUrl,
|
|
|
|
style: TextStyle(fontWeight: FontWeight.w600),
|
|
|
|
recognizer: TapGestureRecognizer()
|
2020-09-09 17:41:54 +02:00
|
|
|
..onTap = () => goToInstance(context, instanceUrl)),
|
2020-09-05 17:13:23 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)),
|
|
|
|
// TITLE/MOTTO
|
|
|
|
Center(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 8, left: 20, right: 20),
|
|
|
|
child: Text(
|
|
|
|
community.title,
|
|
|
|
textAlign: TextAlign.center,
|
|
|
|
style:
|
|
|
|
TextStyle(fontWeight: FontWeight.w300, shadows: [shadow]),
|
|
|
|
),
|
|
|
|
)),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 20),
|
|
|
|
child: Stack(
|
|
|
|
children: [
|
|
|
|
// INFO ICONS
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 5),
|
|
|
|
child: Row(
|
|
|
|
children: [
|
|
|
|
Spacer(),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(right: 3),
|
|
|
|
child: Icon(Icons.people, size: 20),
|
|
|
|
),
|
|
|
|
Text(compactNumber(community.numberOfSubscribers)),
|
|
|
|
Spacer(
|
|
|
|
flex: 4,
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(right: 3),
|
|
|
|
child: Icon(Icons.record_voice_over, size: 20),
|
|
|
|
),
|
|
|
|
Text('xx'), // TODO: display online users
|
|
|
|
Spacer(),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2020-09-15 15:25:07 +02:00
|
|
|
_FollowButton(community),
|
2020-09-05 17:13:23 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _SliverAppBarDelegate extends SliverPersistentHeaderDelegate {
|
|
|
|
_SliverAppBarDelegate(this._tabBar);
|
|
|
|
|
|
|
|
final TabBar _tabBar;
|
|
|
|
|
|
|
|
@override
|
|
|
|
double get minExtent => _tabBar.preferredSize.height;
|
|
|
|
@override
|
|
|
|
double get maxExtent => _tabBar.preferredSize.height;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(
|
|
|
|
BuildContext context, double shrinkOffset, bool overlapsContent) {
|
|
|
|
final theme = Theme.of(context);
|
|
|
|
return Container(child: _tabBar, color: theme.cardColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2020-09-07 23:13:05 +02:00
|
|
|
bool shouldRebuild(_SliverAppBarDelegate oldDelegate) => false;
|
2020-09-05 17:13:23 +02:00
|
|
|
}
|
2020-09-05 18:17:09 +02:00
|
|
|
|
2020-09-06 00:03:52 +02:00
|
|
|
class _AboutTab extends StatelessWidget {
|
2020-09-05 18:17:09 +02:00
|
|
|
final CommunityView community;
|
|
|
|
final List<CommunityModeratorView> moderators;
|
|
|
|
|
2020-09-06 00:03:52 +02:00
|
|
|
const _AboutTab({
|
2020-09-05 19:27:11 +02:00
|
|
|
Key key,
|
|
|
|
@required this.community,
|
|
|
|
@required this.moderators,
|
|
|
|
}) : super(key: key);
|
2020-09-05 18:17:09 +02:00
|
|
|
|
2020-09-07 23:09:53 +02:00
|
|
|
void goToModlog() {
|
|
|
|
print('GO TO MODLOG');
|
|
|
|
}
|
|
|
|
|
|
|
|
void goToCategories() {
|
|
|
|
print('GO TO CATEGORIES');
|
|
|
|
}
|
|
|
|
|
2020-09-05 18:17:09 +02:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final theme = Theme.of(context);
|
|
|
|
|
|
|
|
return ListView(
|
|
|
|
padding: EdgeInsets.only(top: 20),
|
|
|
|
children: [
|
2020-09-05 19:27:11 +02:00
|
|
|
if (community.description != null) ...[
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 15),
|
2020-09-12 09:30:22 +02:00
|
|
|
child: MarkdownText(community.description,
|
|
|
|
instanceUrl: community.instanceUrl),
|
2020-09-05 19:27:11 +02:00
|
|
|
),
|
|
|
|
_Divider(),
|
|
|
|
],
|
2020-09-05 18:17:09 +02:00
|
|
|
SizedBox(
|
|
|
|
height: 25,
|
|
|
|
child: ListView(
|
|
|
|
scrollDirection: Axis.horizontal,
|
|
|
|
children: [
|
2020-09-05 19:27:11 +02:00
|
|
|
// TODO: consider using Chips
|
2020-09-05 18:17:09 +02:00
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 7),
|
|
|
|
child: _Badge('X users online'),
|
|
|
|
),
|
2020-09-05 19:27:11 +02:00
|
|
|
_Badge(
|
|
|
|
'''${community.numberOfSubscribers} subscriber${pluralS(community.numberOfSubscribers)}'''),
|
|
|
|
_Badge(
|
|
|
|
'''${community.numberOfPosts} post${pluralS(community.numberOfPosts)}'''),
|
2020-09-06 00:08:50 +02:00
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(right: 15),
|
|
|
|
child: _Badge(
|
|
|
|
'''${community.numberOfComments} comment${pluralS(community.numberOfComments)}'''),
|
|
|
|
),
|
2020-09-05 18:17:09 +02:00
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
_Divider(),
|
2020-09-05 19:27:11 +02:00
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 0),
|
2020-09-07 16:23:53 +02:00
|
|
|
child: OutlineButton(
|
2020-09-06 00:39:38 +02:00
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(10),
|
|
|
|
),
|
2020-09-07 16:23:53 +02:00
|
|
|
child: Text('${community.categoryName}'),
|
2020-09-05 19:27:11 +02:00
|
|
|
onPressed: goToCategories,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
_Divider(),
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 15),
|
2020-09-07 16:23:53 +02:00
|
|
|
child: OutlineButton(
|
2020-09-06 00:39:38 +02:00
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(10),
|
|
|
|
),
|
2020-09-05 19:27:11 +02:00
|
|
|
child: Text('Modlog'),
|
|
|
|
onPressed: goToModlog,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
_Divider(),
|
|
|
|
if (moderators != null && moderators.isNotEmpty) ...[
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 15),
|
|
|
|
child: Text('Mods:', style: theme.textTheme.subtitle2),
|
|
|
|
),
|
|
|
|
for (final mod in moderators)
|
|
|
|
ListTile(
|
|
|
|
title: Text(mod.userPreferredUsername ?? '@${mod.userName}'),
|
2020-09-09 17:41:54 +02:00
|
|
|
onTap: () => goToUser.byId(context, mod.instanceUrl, mod.id),
|
2020-09-05 19:27:11 +02:00
|
|
|
),
|
|
|
|
]
|
2020-09-05 18:17:09 +02:00
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _Badge extends StatelessWidget {
|
|
|
|
final String text;
|
|
|
|
final bool noPad;
|
|
|
|
|
|
|
|
_Badge(this.text, {this.noPad = false});
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final theme = Theme.of(context);
|
|
|
|
|
|
|
|
return Padding(
|
|
|
|
padding: noPad ? const EdgeInsets.all(0) : const EdgeInsets.only(left: 8),
|
|
|
|
child: Badge(
|
|
|
|
child: Text(
|
|
|
|
text,
|
|
|
|
style:
|
|
|
|
TextStyle(color: textColorBasedOnBackground(theme.accentColor)),
|
|
|
|
),
|
|
|
|
borderRadius: const BorderRadius.all(Radius.circular(10)),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _Divider extends StatelessWidget {
|
|
|
|
@override
|
2020-09-07 23:13:05 +02:00
|
|
|
Widget build(BuildContext context) => Padding(
|
|
|
|
padding: const EdgeInsets.symmetric(horizontal: 15, vertical: 10),
|
|
|
|
child: Divider(),
|
|
|
|
);
|
2020-09-05 18:17:09 +02:00
|
|
|
}
|
2020-09-15 15:25:07 +02:00
|
|
|
|
|
|
|
class _FollowButton extends HookWidget {
|
|
|
|
final CommunityView community;
|
|
|
|
|
|
|
|
_FollowButton(this.community);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final theme = Theme.of(context);
|
2020-09-16 01:23:57 +02:00
|
|
|
|
2020-09-18 15:57:45 +02:00
|
|
|
final isSubbed = useState(community.subscribed ?? false);
|
2020-09-16 23:29:14 +02:00
|
|
|
final delayed = useDelayedLoading(const Duration(milliseconds: 500));
|
2020-09-18 15:57:45 +02:00
|
|
|
final loggedInAction = useLoggedInAction(community.instanceUrl);
|
2020-09-15 15:25:07 +02:00
|
|
|
|
2020-09-16 23:15:42 +02:00
|
|
|
final colorOnTopOfAccent = textColorBasedOnBackground(theme.accentColor);
|
|
|
|
|
2020-09-18 15:57:45 +02:00
|
|
|
subscribe(Jwt token) async {
|
2020-09-16 23:29:14 +02:00
|
|
|
delayed.start();
|
2020-09-15 15:25:07 +02:00
|
|
|
try {
|
2020-09-16 23:29:14 +02:00
|
|
|
await LemmyApi(community.instanceUrl).v1.followCommunity(
|
2020-09-16 21:51:08 +02:00
|
|
|
communityId: community.id,
|
|
|
|
follow: !isSubbed.value,
|
2020-09-18 15:57:45 +02:00
|
|
|
auth: token.raw);
|
2020-09-15 15:25:07 +02:00
|
|
|
isSubbed.value = !isSubbed.value;
|
|
|
|
// ignore: avoid_catches_without_on_clauses
|
|
|
|
} catch (e) {
|
|
|
|
Scaffold.of(context).showSnackBar(SnackBar(
|
2020-09-15 23:52:15 +02:00
|
|
|
content: Row(
|
|
|
|
children: [
|
|
|
|
Icon(Icons.warning),
|
|
|
|
SizedBox(width: 10),
|
|
|
|
Text("couldn't ${isSubbed.value ? 'un' : ''}sub :<"),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
));
|
2020-09-15 15:25:07 +02:00
|
|
|
}
|
|
|
|
|
2020-09-16 23:29:14 +02:00
|
|
|
delayed.cancel();
|
2020-09-15 15:25:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
return Center(
|
|
|
|
child: SizedBox(
|
|
|
|
height: 27,
|
|
|
|
width: 160,
|
2020-09-16 23:29:14 +02:00
|
|
|
child: delayed.loading
|
2020-09-15 15:25:07 +02:00
|
|
|
? RaisedButton(
|
|
|
|
onPressed: null,
|
|
|
|
child: SizedBox(
|
|
|
|
height: 15,
|
|
|
|
width: 15,
|
|
|
|
child: CircularProgressIndicator(),
|
|
|
|
),
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(20),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: RaisedButton.icon(
|
|
|
|
padding: EdgeInsets.symmetric(vertical: 5, horizontal: 20),
|
2020-09-18 15:57:45 +02:00
|
|
|
onPressed: loggedInAction(delayed.pending ? (_) {} : subscribe),
|
2020-09-15 15:25:07 +02:00
|
|
|
icon: isSubbed.value
|
|
|
|
? Icon(Icons.remove, size: 18, color: colorOnTopOfAccent)
|
|
|
|
: Icon(Icons.add, size: 18, color: colorOnTopOfAccent),
|
|
|
|
color: theme.accentColor,
|
|
|
|
label: Text(
|
|
|
|
'${isSubbed.value ? 'un' : ''}subscribe',
|
|
|
|
style: TextStyle(
|
|
|
|
color: colorOnTopOfAccent,
|
|
|
|
fontSize: theme.textTheme.subtitle1.fontSize),
|
|
|
|
),
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.circular(20),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|