Surface/lib/screens/account.dart

223 lines
7.7 KiB
Dart
Raw Normal View History

2024-11-08 16:09:46 +00:00
import 'package:easy_localization/easy_localization.dart';
import 'package:flutter/material.dart';
2024-11-09 11:32:21 +00:00
import 'package:gap/gap.dart';
2024-11-09 10:28:45 +00:00
import 'package:go_router/go_router.dart';
2024-12-09 13:47:27 +00:00
import 'package:hive/hive.dart';
2024-11-09 11:32:21 +00:00
import 'package:material_symbols_icons/symbols.dart';
import 'package:provider/provider.dart';
import 'package:styled_widget/styled_widget.dart';
2024-12-07 17:01:20 +00:00
import 'package:surface/providers/sn_network.dart';
2024-11-09 11:32:21 +00:00
import 'package:surface/providers/userinfo.dart';
2024-12-09 13:47:27 +00:00
import 'package:surface/providers/websocket.dart';
2024-11-09 11:32:21 +00:00
import 'package:surface/widgets/account/account_image.dart';
2024-12-05 14:22:38 +00:00
import 'package:surface/widgets/app_bar_leading.dart';
2024-11-09 11:32:21 +00:00
import 'package:surface/widgets/dialog.dart';
2024-11-08 16:09:46 +00:00
2024-11-09 11:32:21 +00:00
class AccountScreen extends StatelessWidget {
2024-11-08 16:09:46 +00:00
const AccountScreen({super.key});
@override
Widget build(BuildContext context) {
2024-11-09 11:32:21 +00:00
final ua = context.watch<UserProvider>();
return Scaffold(
2024-11-08 16:09:46 +00:00
appBar: AppBar(
2024-12-05 14:22:38 +00:00
leading: AutoAppBarLeading(),
2024-11-09 10:28:45 +00:00
title: Text("screenAccount").tr(),
actions: [
IconButton(
icon: const Icon(Symbols.settings, fill: 1),
onPressed: () {
GoRouter.of(context).pushNamed('settings');
},
),
2024-11-24 12:23:06 +00:00
const Gap(8),
],
2024-11-09 10:28:45 +00:00
),
2024-11-09 11:32:21 +00:00
body: SingleChildScrollView(
2024-12-07 17:12:45 +00:00
child: ua.isAuthorized ? _AuthorizedAccountScreen() : _UnauthorizedAccountScreen(),
2024-11-08 16:09:46 +00:00
),
);
}
}
2024-11-09 11:32:21 +00:00
class _AuthorizedAccountScreen extends StatelessWidget {
const _AuthorizedAccountScreen();
2024-11-09 11:32:21 +00:00
@override
Widget build(BuildContext context) {
final ua = context.watch<UserProvider>();
return Column(
children: [
Card(
child: Builder(builder: (context) {
if (ua.user == null) {
return SizedBox(
width: double.infinity,
height: 120,
child: CircularProgressIndicator().center(),
);
}
return SizedBox(
width: double.infinity,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
AccountImage(content: ua.user!.avatar, radius: 28),
const Gap(8),
Row(
crossAxisAlignment: CrossAxisAlignment.baseline,
textBaseline: TextBaseline.alphabetic,
children: [
2024-12-07 17:12:45 +00:00
Text(ua.user!.nick).textStyle(Theme.of(context).textTheme.titleLarge!),
2024-11-09 11:32:21 +00:00
const Gap(4),
2024-12-07 17:12:45 +00:00
Text('@${ua.user!.name}').textStyle(Theme.of(context).textTheme.bodySmall!),
2024-11-09 11:32:21 +00:00
],
),
2024-12-07 17:12:45 +00:00
Text(ua.user!.description).textStyle(Theme.of(context).textTheme.bodyMedium!),
2024-11-09 11:32:21 +00:00
],
),
);
}).padding(all: 20),
).padding(horizontal: 8, top: 16, bottom: 4),
2024-11-09 17:04:39 +00:00
ListTile(
title: Text('accountProfileEdit').tr(),
subtitle: Text('accountProfileEditSubtitle').tr(),
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
leading: const Icon(Symbols.contact_page),
2024-11-10 10:37:34 +00:00
trailing: const Icon(Symbols.chevron_right),
2024-11-09 17:04:39 +00:00
onTap: () {
GoRouter.of(context).pushNamed('accountProfileEdit');
},
),
2024-11-09 11:32:21 +00:00
ListTile(
title: Text('accountPublishers').tr(),
subtitle: Text('accountPublishersSubtitle').tr(),
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
leading: const Icon(Symbols.face),
2024-11-10 10:37:34 +00:00
trailing: const Icon(Symbols.chevron_right),
onTap: () {
GoRouter.of(context).pushNamed('accountPublishers');
},
2024-11-09 11:32:21 +00:00
),
2024-12-07 17:01:20 +00:00
ListTile(
title: Text('abuseReport').tr(),
subtitle: Text('abuseReportActionDescription').tr(),
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
leading: const Icon(Symbols.flag),
trailing: const Icon(Symbols.chevron_right),
onTap: () {
2024-12-08 06:44:55 +00:00
GoRouter.of(context).pushNamed('abuseReport');
2024-12-07 17:01:20 +00:00
},
),
2024-11-09 11:32:21 +00:00
ListTile(
title: Text('accountLogout').tr(),
subtitle: Text('accountLogoutSubtitle').tr(),
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
leading: const Icon(Symbols.logout),
2024-11-10 10:37:34 +00:00
trailing: const Icon(Symbols.chevron_right),
2024-11-09 11:32:21 +00:00
onTap: () {
context
.showConfirmDialog(
'accountLogoutConfirmTitle'.tr(),
'accountLogoutConfirm'.tr(),
)
.then((value) {
2024-12-09 13:47:27 +00:00
if(!context.mounted) return;
2024-11-09 11:32:21 +00:00
if (value) ua.logoutUser();
2024-12-09 13:47:27 +00:00
final ws = context.read<WebSocketProvider>();
ws.disconnect();
Hive.deleteFromDisk();
2024-11-09 11:32:21 +00:00
});
},
),
2024-12-07 17:12:45 +00:00
ListTile(
title: Text('accountDeletion'.tr()),
subtitle: Text('accountDeletionActionDescription'.tr()),
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
leading: const Icon(Symbols.person_cancel),
trailing: const Icon(Symbols.chevron_right),
onTap: () {
context
.showConfirmDialog(
'accountDeletion'.tr(),
'accountDeletionDescription'.tr(),
)
.then((value) {
if (!value || !context.mounted) return;
final sn = context.read<SnNetworkProvider>();
sn.client.post('/cgi/id/users/me/deletion').then((value) {
if (context.mounted) {
context.showSnackbar('accountDeletionSubmitted'.tr());
}
}).catchError((err) {
if (context.mounted) {
context.showErrorDialog(err);
}
});
});
},
),
2024-11-09 11:32:21 +00:00
],
);
}
}
class _UnauthorizedAccountScreen extends StatelessWidget {
const _UnauthorizedAccountScreen();
2024-11-09 11:32:21 +00:00
@override
Widget build(BuildContext context) {
return Column(
children: [
Card(
child: SizedBox(
width: double.infinity,
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
const CircleAvatar(
radius: 28,
child: Icon(Symbols.waving_hand, size: 28),
),
2024-11-09 11:32:21 +00:00
const Gap(8),
2024-12-07 17:12:45 +00:00
Text('accountIntroTitle').tr().textStyle(Theme.of(context).textTheme.titleLarge!),
2024-11-09 11:32:21 +00:00
Text('accountIntroSubtitle').tr(),
],
).padding(all: 20),
),
).padding(horizontal: 8, top: 16, bottom: 4),
ListTile(
title: Text('screenAuthLogin').tr(),
subtitle: Text('screenAuthLoginSubtitle').tr(),
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
leading: const Icon(Symbols.login),
2024-11-10 10:37:34 +00:00
trailing: const Icon(Symbols.chevron_right),
2024-11-09 11:32:21 +00:00
onTap: () {
GoRouter.of(context).pushNamed('authLogin').then((value) {
if (value == true && context.mounted) {
final ua = context.read<UserProvider>();
context.showSnackbar('loginSuccess'.tr(args: [
'@${ua.user?.name} (${ua.user?.nick})',
]));
}
});
2024-11-09 11:32:21 +00:00
},
),
ListTile(
title: Text('screenAuthRegister').tr(),
subtitle: Text('screenAuthRegisterSubtitle').tr(),
contentPadding: const EdgeInsets.symmetric(horizontal: 24),
leading: const Icon(Symbols.person_add),
2024-11-10 10:37:34 +00:00
trailing: const Icon(Symbols.chevron_right),
2024-11-09 11:32:21 +00:00
onTap: () {
GoRouter.of(context).pushNamed('authRegister');
},
),
],
);
}
}