mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
95 lines
3.0 KiB
Dart
95 lines
3.0 KiB
Dart
// ignore_for_file: prefer_const_constructors
|
|
|
|
import 'package:awesome_extensions/awesome_extensions.dart';
|
|
import 'package:fast_immutable_collections/fast_immutable_collections.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_translate/flutter_translate.dart';
|
|
import 'package:veilid_support/veilid_support.dart';
|
|
|
|
import '../../../proto/proto.dart' as proto;
|
|
import '../../account_manager/account_manager.dart';
|
|
import '../../contact_invitation/contact_invitation.dart';
|
|
import '../../contacts/contacts.dart';
|
|
|
|
class AccountPage extends StatefulWidget {
|
|
const AccountPage({
|
|
required this.localAccounts,
|
|
required this.activeUserLogin,
|
|
required this.account,
|
|
super.key,
|
|
});
|
|
|
|
final IList<LocalAccount> localAccounts;
|
|
final TypedKey activeUserLogin;
|
|
final proto.Account account;
|
|
|
|
@override
|
|
AccountPageState createState() => AccountPageState();
|
|
@override
|
|
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
|
|
super.debugFillProperties(properties);
|
|
properties
|
|
..add(IterableProperty<LocalAccount>('localAccounts', localAccounts))
|
|
..add(DiagnosticsProperty<TypedKey>('activeUserLogin', activeUserLogin))
|
|
..add(DiagnosticsProperty<proto.Account>('account', account));
|
|
}
|
|
}
|
|
|
|
class AccountPageState extends State<AccountPage> {
|
|
final _unfocusNode = FocusNode();
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_unfocusNode.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
// ignore: prefer_expression_function_bodies
|
|
Widget build(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final textTheme = theme.textTheme;
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
|
|
final contactInvitationRecordList =
|
|
ref.watch(fetchContactInvitationRecordsProvider).asData?.value ??
|
|
const IListConst([]);
|
|
final contactList = ref.watch(fetchContactListProvider).asData?.value ??
|
|
const IListConst([]);
|
|
|
|
return SizedBox(
|
|
child: Column(children: <Widget>[
|
|
if (contactInvitationRecordList.isNotEmpty)
|
|
ExpansionTile(
|
|
tilePadding: EdgeInsets.fromLTRB(8, 0, 8, 0),
|
|
backgroundColor: scale.primaryScale.border,
|
|
collapsedBackgroundColor: scale.primaryScale.border,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(16),
|
|
),
|
|
collapsedShape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(16),
|
|
),
|
|
title: Text(
|
|
translate('account_page.contact_invitations'),
|
|
textAlign: TextAlign.center,
|
|
style: textTheme.titleMedium!
|
|
.copyWith(color: scale.primaryScale.subtleText),
|
|
),
|
|
initiallyExpanded: true,
|
|
children: [
|
|
ContactInvitationListWidget(
|
|
contactInvitationRecordList: contactInvitationRecordList)
|
|
],
|
|
).paddingLTRB(8, 0, 8, 8),
|
|
ContactListWidget(contactList: contactList).expanded(),
|
|
]));
|
|
}
|
|
}
|