mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-18 02:07:43 +00:00
desktop addressbook layout fix
This commit is contained in:
parent
7cc3c71b0d
commit
49103c86f1
1 changed files with 338 additions and 104 deletions
|
@ -1,23 +1,31 @@
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
import 'package:flutter_svg/svg.dart';
|
import 'package:flutter_svg/svg.dart';
|
||||||
import 'package:stackwallet/pages/address_book_views/address_book_view.dart';
|
import 'package:stackwallet/models/contact.dart';
|
||||||
|
import 'package:stackwallet/models/contact_address_entry.dart';
|
||||||
import 'package:stackwallet/pages/address_book_views/subviews/add_address_book_entry_view.dart';
|
import 'package:stackwallet/pages/address_book_views/subviews/add_address_book_entry_view.dart';
|
||||||
import 'package:stackwallet/pages/address_book_views/subviews/address_book_filter_view.dart';
|
import 'package:stackwallet/pages/address_book_views/subviews/address_book_filter_view.dart';
|
||||||
|
import 'package:stackwallet/providers/global/address_book_service_provider.dart';
|
||||||
import 'package:stackwallet/utilities/assets.dart';
|
import 'package:stackwallet/utilities/assets.dart';
|
||||||
import 'package:stackwallet/utilities/constants.dart';
|
import 'package:stackwallet/utilities/constants.dart';
|
||||||
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
||||||
import 'package:stackwallet/utilities/text_styles.dart';
|
import 'package:stackwallet/utilities/text_styles.dart';
|
||||||
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
||||||
import 'package:stackwallet/utilities/util.dart';
|
import 'package:stackwallet/utilities/util.dart';
|
||||||
|
import 'package:stackwallet/widgets/address_book_card.dart';
|
||||||
import 'package:stackwallet/widgets/desktop/desktop_app_bar.dart';
|
import 'package:stackwallet/widgets/desktop/desktop_app_bar.dart';
|
||||||
import 'package:stackwallet/widgets/desktop/desktop_dialog.dart';
|
import 'package:stackwallet/widgets/desktop/desktop_dialog.dart';
|
||||||
import 'package:stackwallet/widgets/desktop/desktop_scaffold.dart';
|
import 'package:stackwallet/widgets/desktop/desktop_scaffold.dart';
|
||||||
import 'package:stackwallet/widgets/desktop/primary_button.dart';
|
import 'package:stackwallet/widgets/desktop/primary_button.dart';
|
||||||
import 'package:stackwallet/widgets/desktop/secondary_button.dart';
|
import 'package:stackwallet/widgets/desktop/secondary_button.dart';
|
||||||
import 'package:stackwallet/widgets/icon_widgets/x_icon.dart';
|
import 'package:stackwallet/widgets/icon_widgets/x_icon.dart';
|
||||||
|
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
||||||
import 'package:stackwallet/widgets/stack_text_field.dart';
|
import 'package:stackwallet/widgets/stack_text_field.dart';
|
||||||
import 'package:stackwallet/widgets/textfield_icon_button.dart';
|
import 'package:stackwallet/widgets/textfield_icon_button.dart';
|
||||||
|
|
||||||
|
import '../../../providers/providers.dart';
|
||||||
|
import '../../../providers/ui/address_book_providers/address_book_filter_provider.dart';
|
||||||
|
|
||||||
class DesktopAddressBook extends ConsumerStatefulWidget {
|
class DesktopAddressBook extends ConsumerStatefulWidget {
|
||||||
const DesktopAddressBook({Key? key}) : super(key: key);
|
const DesktopAddressBook({Key? key}) : super(key: key);
|
||||||
|
|
||||||
|
@ -69,6 +77,46 @@ class _DesktopAddressBook extends ConsumerState<DesktopAddressBook> {
|
||||||
_searchController = TextEditingController();
|
_searchController = TextEditingController();
|
||||||
_searchFocusNode = FocusNode();
|
_searchFocusNode = FocusNode();
|
||||||
|
|
||||||
|
ref.refresh(addressBookFilterProvider);
|
||||||
|
|
||||||
|
// if (widget.coin == null) {
|
||||||
|
List<Coin> coins = Coin.values.where((e) => !(e == Coin.epicCash)).toList();
|
||||||
|
coins.remove(Coin.firoTestNet);
|
||||||
|
|
||||||
|
bool showTestNet = ref.read(prefsChangeNotifierProvider).showTestNetCoins;
|
||||||
|
|
||||||
|
if (showTestNet) {
|
||||||
|
ref.read(addressBookFilterProvider).addAll(coins, false);
|
||||||
|
} else {
|
||||||
|
ref.read(addressBookFilterProvider).addAll(
|
||||||
|
coins.getRange(0, coins.length - kTestNetCoinCount + 1), false);
|
||||||
|
}
|
||||||
|
// } else {
|
||||||
|
// ref.read(addressBookFilterProvider).add(widget.coin!, false);
|
||||||
|
// }
|
||||||
|
|
||||||
|
WidgetsBinding.instance.addPostFrameCallback((_) async {
|
||||||
|
List<ContactAddressEntry> addresses = [];
|
||||||
|
final managers = ref.read(walletsChangeNotifierProvider).managers;
|
||||||
|
for (final manager in managers) {
|
||||||
|
addresses.add(
|
||||||
|
ContactAddressEntry(
|
||||||
|
coin: manager.coin,
|
||||||
|
address: await manager.currentReceivingAddress,
|
||||||
|
label: "Current Receiving",
|
||||||
|
other: manager.walletName,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
final self = Contact(
|
||||||
|
name: "My Stack",
|
||||||
|
addresses: addresses,
|
||||||
|
isFavorite: true,
|
||||||
|
id: "default",
|
||||||
|
);
|
||||||
|
await ref.read(addressBookServiceProvider).editContact(self);
|
||||||
|
});
|
||||||
|
|
||||||
super.initState();
|
super.initState();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -83,6 +131,32 @@ class _DesktopAddressBook extends ConsumerState<DesktopAddressBook> {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
debugPrint("BUILD: $runtimeType");
|
debugPrint("BUILD: $runtimeType");
|
||||||
|
final contacts =
|
||||||
|
ref.watch(addressBookServiceProvider.select((value) => value.contacts));
|
||||||
|
|
||||||
|
final allContacts = contacts
|
||||||
|
.where((element) => element.addresses
|
||||||
|
.where((e) => ref.watch(addressBookFilterProvider
|
||||||
|
.select((value) => value.coins.contains(e.coin))))
|
||||||
|
.isNotEmpty)
|
||||||
|
.where((e) =>
|
||||||
|
ref.read(addressBookServiceProvider).matches(_searchTerm, e));
|
||||||
|
|
||||||
|
final favorites = contacts
|
||||||
|
.where((element) => element.addresses
|
||||||
|
.where((e) => ref.watch(addressBookFilterProvider
|
||||||
|
.select((value) => value.coins.contains(e.coin))))
|
||||||
|
.isNotEmpty)
|
||||||
|
.where((e) =>
|
||||||
|
e.isFavorite &&
|
||||||
|
ref.read(addressBookServiceProvider).matches(_searchTerm, e))
|
||||||
|
.where((element) => element.isFavorite);
|
||||||
|
|
||||||
|
print("=========================================================");
|
||||||
|
print("contacts: ${contacts.length}");
|
||||||
|
print("favorites: ${favorites.length}");
|
||||||
|
print("allContacts: ${allContacts.length}");
|
||||||
|
print("=========================================================");
|
||||||
|
|
||||||
return DesktopScaffold(
|
return DesktopScaffold(
|
||||||
appBar: DesktopAppBar(
|
appBar: DesktopAppBar(
|
||||||
|
@ -100,14 +174,13 @@ class _DesktopAddressBook extends ConsumerState<DesktopAddressBook> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
body: Padding(
|
body: Padding(
|
||||||
padding: const EdgeInsets.all(24),
|
padding: const EdgeInsets.only(
|
||||||
child: Row(
|
left: 24,
|
||||||
children: [
|
right: 24,
|
||||||
Expanded(
|
bottom: 24,
|
||||||
flex: 6,
|
),
|
||||||
child: Column(
|
child: DesktopAddressBookScaffold(
|
||||||
children: [
|
controlsLeft: ClipRRect(
|
||||||
ClipRRect(
|
|
||||||
borderRadius: BorderRadius.circular(
|
borderRadius: BorderRadius.circular(
|
||||||
Constants.size.circularBorderRadius,
|
Constants.size.circularBorderRadius,
|
||||||
),
|
),
|
||||||
|
@ -160,25 +233,8 @@ class _DesktopAddressBook extends ConsumerState<DesktopAddressBook> {
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
controlsRight: Row(
|
||||||
height: 24,
|
mainAxisAlignment: MainAxisAlignment.end,
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
child: AddressBookView(
|
|
||||||
filterTerm: _searchTerm,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const SizedBox(
|
|
||||||
width: 20,
|
|
||||||
),
|
|
||||||
Expanded(
|
|
||||||
flex: 5,
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
Row(
|
|
||||||
children: [
|
children: [
|
||||||
SecondaryButton(
|
SecondaryButton(
|
||||||
width: 184,
|
width: 184,
|
||||||
|
@ -209,12 +265,190 @@ class _DesktopAddressBook extends ConsumerState<DesktopAddressBook> {
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
filterItems: Container(),
|
||||||
|
upperLabel: favorites.isEmpty && allContacts.isEmpty
|
||||||
|
? null
|
||||||
|
: Text(
|
||||||
|
favorites.isEmpty ? "All contacts" : "Favorites",
|
||||||
|
style: STextStyles.smallMed12(context),
|
||||||
|
),
|
||||||
|
lowerLabel: favorites.isEmpty
|
||||||
|
? null
|
||||||
|
: Padding(
|
||||||
|
padding: const EdgeInsets.only(
|
||||||
|
top: 20,
|
||||||
|
bottom: 12,
|
||||||
|
),
|
||||||
|
child: Text(
|
||||||
|
"All contacts",
|
||||||
|
style: STextStyles.smallMed12(context),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
favorites: favorites.isNotEmpty
|
||||||
|
? RoundedWhiteContainer(
|
||||||
|
padding: const EdgeInsets.all(0),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
...favorites.map(
|
||||||
|
(e) => AddressBookCard(
|
||||||
|
key: Key("favContactCard_${e.id}_key"),
|
||||||
|
contactId: e.id,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
)
|
||||||
|
: RoundedWhiteContainer(
|
||||||
|
child: Center(
|
||||||
|
child: Text(
|
||||||
|
"Your favorite contacts will appear here",
|
||||||
|
style: STextStyles.itemSubtitle(context),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
all: allContacts.isNotEmpty
|
||||||
|
? Column(
|
||||||
|
children: [
|
||||||
|
RoundedWhiteContainer(
|
||||||
|
padding: const EdgeInsets.all(0),
|
||||||
|
child: Padding(
|
||||||
|
padding: const EdgeInsets.all(8.0),
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
...allContacts.map(
|
||||||
|
(e) => AddressBookCard(
|
||||||
|
key: Key("desktopContactCard_${e.id}_key"),
|
||||||
|
contactId: e.id,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
)
|
||||||
|
: RoundedWhiteContainer(
|
||||||
|
child: Center(
|
||||||
|
child: Text(
|
||||||
|
"Your contacts will appear here",
|
||||||
|
style: STextStyles.itemSubtitle(context),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
details: Container(
|
||||||
|
color: Colors.purple,
|
||||||
|
),
|
||||||
|
),
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class DesktopAddressBookScaffold extends StatelessWidget {
|
||||||
|
const DesktopAddressBookScaffold({
|
||||||
|
Key? key,
|
||||||
|
required this.controlsLeft,
|
||||||
|
required this.controlsRight,
|
||||||
|
required this.filterItems,
|
||||||
|
required this.upperLabel,
|
||||||
|
required this.lowerLabel,
|
||||||
|
required this.favorites,
|
||||||
|
required this.all,
|
||||||
|
required this.details,
|
||||||
|
}) : super(key: key);
|
||||||
|
|
||||||
|
final Widget? controlsLeft;
|
||||||
|
final Widget? controlsRight;
|
||||||
|
final Widget? filterItems;
|
||||||
|
final Widget? upperLabel;
|
||||||
|
final Widget? lowerLabel;
|
||||||
|
final Widget? favorites;
|
||||||
|
final Widget? all;
|
||||||
|
final Widget? details;
|
||||||
|
|
||||||
|
static const double weirdRowHeight = 30;
|
||||||
|
|
||||||
|
@override
|
||||||
|
Widget build(BuildContext context) {
|
||||||
|
return Column(
|
||||||
|
children: [
|
||||||
|
Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.end,
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
flex: 6,
|
||||||
|
child: controlsLeft ?? Container(),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 20,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
flex: 5,
|
||||||
|
child: controlsRight ?? Container(),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
|
Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
child: filterItems ?? Container(),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: Row(
|
||||||
|
children: [
|
||||||
|
Expanded(
|
||||||
|
flex: 6,
|
||||||
|
child: LayoutBuilder(
|
||||||
|
builder: (context, constraints) {
|
||||||
|
return SingleChildScrollView(
|
||||||
|
child: ConstrainedBox(
|
||||||
|
constraints: BoxConstraints(
|
||||||
|
minHeight: constraints.maxHeight,
|
||||||
|
),
|
||||||
|
child: IntrinsicHeight(
|
||||||
|
child: Column(
|
||||||
|
crossAxisAlignment: CrossAxisAlignment.start,
|
||||||
|
children: [
|
||||||
|
SizedBox(
|
||||||
|
height: weirdRowHeight,
|
||||||
|
child: upperLabel,
|
||||||
|
),
|
||||||
|
favorites ?? Container(),
|
||||||
|
lowerLabel ?? Container(),
|
||||||
|
all ?? Container(),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
width: 20,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
flex: 5,
|
||||||
|
child: Column(
|
||||||
|
children: [
|
||||||
|
const SizedBox(
|
||||||
|
height: weirdRowHeight,
|
||||||
|
),
|
||||||
|
Expanded(
|
||||||
|
child: details ?? Container(),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
)
|
||||||
|
],
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in a new issue