mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-01 06:27:17 +00:00
194 lines
7.3 KiB
Dart
194 lines
7.3 KiB
Dart
part of 'users.dart';
|
|
|
|
class _UserDetails extends StatelessWidget {
|
|
const _UserDetails({
|
|
required this.user,
|
|
required this.isRootUser,
|
|
});
|
|
|
|
final User user;
|
|
final bool isRootUser;
|
|
@override
|
|
Widget build(final BuildContext context) {
|
|
final ServerInstallationState config =
|
|
context.watch<ServerInstallationCubit>().state;
|
|
|
|
final String domainName = UiHelpers.getDomainName(config);
|
|
|
|
return BrandBottomSheet(
|
|
isExpended: true,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Container(
|
|
height: 200,
|
|
decoration: BoxDecoration(
|
|
color: user.color,
|
|
borderRadius: const BorderRadius.vertical(
|
|
top: Radius.circular(20),
|
|
),
|
|
),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
if (!isRootUser)
|
|
Align(
|
|
alignment: Alignment.centerRight,
|
|
child: Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 4,
|
|
horizontal: 2,
|
|
),
|
|
child: PopupMenuButton<PopupMenuItemType>(
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(10.0),
|
|
),
|
|
onSelected: (final PopupMenuItemType result) {
|
|
switch (result) {
|
|
case PopupMenuItemType.delete:
|
|
showDialog(
|
|
context: context,
|
|
builder: (final BuildContext context) =>
|
|
AlertDialog(
|
|
title: Text('basis.confirmation'.tr()),
|
|
content: SingleChildScrollView(
|
|
child: ListBody(
|
|
children: <Widget>[
|
|
Text(
|
|
'users.delete_confirm_question'.tr(),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
actions: <Widget>[
|
|
TextButton(
|
|
child: Text('basis.cancel'.tr()),
|
|
onPressed: () {
|
|
Navigator.of(context).pop();
|
|
},
|
|
),
|
|
TextButton(
|
|
child: Text(
|
|
'basis.delete'.tr(),
|
|
style: const TextStyle(
|
|
color: BrandColors.red1,
|
|
),
|
|
),
|
|
onPressed: () {
|
|
context
|
|
.read<JobsCubit>()
|
|
.addJob(DeleteUserJob(user: user));
|
|
Navigator.of(context)
|
|
..pop()
|
|
..pop();
|
|
},
|
|
),
|
|
],
|
|
),
|
|
);
|
|
break;
|
|
}
|
|
},
|
|
icon: const Icon(Icons.more_vert),
|
|
itemBuilder: (final BuildContext context) => [
|
|
PopupMenuItem<PopupMenuItemType>(
|
|
value: PopupMenuItemType.delete,
|
|
child: Container(
|
|
padding: const EdgeInsets.only(left: 5),
|
|
child: Text(
|
|
'basis.delete'.tr(),
|
|
style: const TextStyle(color: BrandColors.red1),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
const Spacer(),
|
|
Padding(
|
|
padding: const EdgeInsets.symmetric(
|
|
vertical: 20,
|
|
horizontal: 15,
|
|
),
|
|
child: AutoSizeText(
|
|
user.login,
|
|
style: headline1Style,
|
|
softWrap: true,
|
|
minFontSize: 9,
|
|
maxLines: 3,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(height: 20),
|
|
Padding(
|
|
padding: paddingH15V0.copyWith(bottom: 20),
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
BrandText.small('users.account'.tr()),
|
|
Container(
|
|
height: 40,
|
|
alignment: Alignment.centerLeft,
|
|
child: BrandText.h4('${user.login}@$domainName'),
|
|
),
|
|
if (user.password != null)
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
const SizedBox(height: 14),
|
|
BrandText.small('basis.password'.tr()),
|
|
Container(
|
|
height: 40,
|
|
alignment: Alignment.centerLeft,
|
|
child: BrandText.h4(user.password),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(height: 24),
|
|
const BrandDivider(),
|
|
const SizedBox(height: 20),
|
|
ListTile(
|
|
onTap: () {
|
|
Navigator.of(context)
|
|
.push(materialRoute(SshKeysPage(user: user)));
|
|
},
|
|
title: Text('ssh.title'.tr()),
|
|
subtitle: user.sshKeys.isNotEmpty
|
|
? Text(
|
|
'ssh.subtitle_with_keys'
|
|
.tr(args: [user.sshKeys.length.toString()]),
|
|
)
|
|
: Text('ssh.subtitle_without_keys'.tr()),
|
|
trailing: const Icon(BrandIcons.key),
|
|
),
|
|
const SizedBox(height: 20),
|
|
ListTile(
|
|
onTap: () {
|
|
Share.share(
|
|
'login: ${user.login}, password: ${user.password}',
|
|
);
|
|
},
|
|
title: Text(
|
|
'users.send_registration_data'.tr(),
|
|
),
|
|
trailing: const Icon(BrandIcons.share),
|
|
),
|
|
],
|
|
),
|
|
)
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
enum PopupMenuItemType {
|
|
// reset,
|
|
delete,
|
|
}
|