2020-09-16 22:53:04 +02:00
|
|
|
import 'package:flutter/cupertino.dart';
|
2020-08-31 01:04:08 +02:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_hooks/flutter_hooks.dart';
|
2020-09-01 13:22:37 +02:00
|
|
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
2020-08-31 12:05:45 +02:00
|
|
|
|
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-16 22:53:04 +02:00
|
|
|
import '../util/goto.dart';
|
2020-09-01 21:36:58 +02:00
|
|
|
import '../widgets/bottom_modal.dart';
|
2020-08-31 12:05:45 +02:00
|
|
|
import '../widgets/user_profile.dart';
|
2020-08-31 16:17:39 +02:00
|
|
|
import 'settings.dart';
|
2020-08-31 01:04:08 +02:00
|
|
|
|
|
|
|
class UserProfileTab extends HookWidget {
|
2020-09-01 13:22:37 +02:00
|
|
|
UserProfileTab();
|
2020-08-31 01:04:08 +02:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-09-16 23:22:04 +02:00
|
|
|
final theme = Theme.of(context);
|
2020-09-16 23:15:42 +02:00
|
|
|
final accountsStore = useAccountsStore();
|
2020-08-31 01:04:08 +02:00
|
|
|
|
2020-09-01 13:22:37 +02:00
|
|
|
return Observer(
|
|
|
|
builder: (ctx) {
|
2020-09-16 23:15:42 +02:00
|
|
|
if (accountsStore.hasNoAccount) {
|
2020-09-08 21:45:17 +02:00
|
|
|
return Scaffold(
|
|
|
|
body: Center(
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Text('No account was added.'),
|
|
|
|
FlatButton.icon(
|
|
|
|
onPressed: () {
|
2020-09-16 22:53:04 +02:00
|
|
|
goTo(context, (_) => AccountsConfigPage());
|
2020-09-08 21:45:17 +02:00
|
|
|
},
|
|
|
|
icon: Icon(Icons.add),
|
|
|
|
label: Text('Add account'),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2020-09-16 23:22:04 +02:00
|
|
|
final user = accountsStore.defaultUser;
|
2020-09-01 13:22:37 +02:00
|
|
|
|
|
|
|
return Scaffold(
|
|
|
|
extendBodyBehindAppBar: true,
|
|
|
|
appBar: AppBar(
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
shadowColor: Colors.transparent,
|
|
|
|
centerTitle: true,
|
|
|
|
title: FlatButton(
|
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Text(
|
2020-09-03 22:08:32 +02:00
|
|
|
'@${user.name}', // TODO: fix overflow issues
|
|
|
|
style: theme.primaryTextTheme.headline6,
|
|
|
|
overflow: TextOverflow.fade,
|
2020-09-01 13:22:37 +02:00
|
|
|
),
|
|
|
|
Icon(
|
|
|
|
Icons.expand_more,
|
|
|
|
color: theme.primaryIconTheme.color,
|
|
|
|
),
|
|
|
|
],
|
2020-08-31 03:54:24 +02:00
|
|
|
),
|
2020-09-01 21:36:58 +02:00
|
|
|
onPressed: () {
|
|
|
|
showModalBottomSheet(
|
|
|
|
context: context,
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
builder: (_) {
|
2020-09-16 23:22:04 +02:00
|
|
|
final userTags = <String>[];
|
2020-09-01 21:36:58 +02:00
|
|
|
|
2020-09-16 23:15:42 +02:00
|
|
|
accountsStore.users.forEach((instanceUrl, value) {
|
2020-09-01 21:36:58 +02:00
|
|
|
value.forEach((username, _) {
|
|
|
|
userTags.add('$username@$instanceUrl');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
return Observer(
|
|
|
|
builder: (ctx) {
|
2020-09-16 23:22:04 +02:00
|
|
|
final user = accountsStore.defaultUser;
|
|
|
|
final instanceUrl = user.instanceUrl;
|
2020-09-01 21:36:58 +02:00
|
|
|
|
|
|
|
return BottomModal(
|
|
|
|
title: 'account',
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
for (final tag in userTags)
|
|
|
|
RadioListTile<String>(
|
|
|
|
value: tag,
|
|
|
|
title: Text(tag),
|
|
|
|
groupValue: '${user.name}@$instanceUrl',
|
|
|
|
onChanged: (selected) {
|
2020-09-16 23:22:04 +02:00
|
|
|
final userTag = selected.split('@');
|
2020-09-16 23:15:42 +02:00
|
|
|
accountsStore.setDefaultAccount(
|
2020-09-01 21:36:58 +02:00
|
|
|
userTag[1], userTag[0]);
|
|
|
|
Navigator.of(ctx).pop();
|
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
|
|
|
);
|
|
|
|
},
|
2020-09-01 13:22:37 +02:00
|
|
|
),
|
|
|
|
actions: [
|
|
|
|
IconButton(
|
2020-09-03 23:18:48 +02:00
|
|
|
icon: Icon(Icons.settings),
|
2020-09-01 13:22:37 +02:00
|
|
|
onPressed: () {
|
2020-09-16 22:53:04 +02:00
|
|
|
goTo(context, (_) => SettingsPage());
|
2020-09-01 13:22:37 +02:00
|
|
|
},
|
|
|
|
)
|
2020-08-31 03:54:24 +02:00
|
|
|
],
|
|
|
|
),
|
2020-09-01 13:22:37 +02:00
|
|
|
body: UserProfile(
|
|
|
|
userId: user.id,
|
2020-09-09 17:41:54 +02:00
|
|
|
instanceUrl: user.instanceUrl,
|
2020-09-01 13:22:37 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
2020-08-31 01:04:08 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|