mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
129 lines
4 KiB
Dart
129 lines
4 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_svg/svg.dart';
|
|
import 'package:stackwallet/pages/address_book_views/subviews/contact_popup.dart';
|
|
import 'package:stackwallet/providers/global/address_book_service_provider.dart';
|
|
import 'package:stackwallet/utilities/assets.dart';
|
|
import 'package:stackwallet/utilities/cfcolors.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/widgets/rounded_white_container.dart';
|
|
|
|
class AddressBookCard extends ConsumerStatefulWidget {
|
|
const AddressBookCard({Key? key, required this.contactId}) : super(key: key);
|
|
|
|
final String contactId;
|
|
|
|
@override
|
|
ConsumerState<AddressBookCard> createState() => _AddressBookCardState();
|
|
}
|
|
|
|
class _AddressBookCardState extends ConsumerState<AddressBookCard> {
|
|
late final String contactId;
|
|
|
|
@override
|
|
void initState() {
|
|
contactId = widget.contactId;
|
|
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
// final isTiny = SizingUtilities.isTinyWidth(context);
|
|
|
|
final contact = ref.watch(addressBookServiceProvider
|
|
.select((value) => value.getContactById(contactId)));
|
|
|
|
final List<Coin> coins = [];
|
|
for (var element in contact.addresses) {
|
|
if (!coins.contains(element.coin)) {
|
|
coins.add(element.coin);
|
|
}
|
|
}
|
|
|
|
String coinsString = "";
|
|
if (coins.isNotEmpty) {
|
|
coinsString = coins[0].ticker;
|
|
for (int i = 1; i < coins.length; i++) {
|
|
coinsString += ", ${coins[i].ticker}";
|
|
}
|
|
}
|
|
|
|
return RoundedWhiteContainer(
|
|
padding: const EdgeInsets.all(4),
|
|
child: RawMaterialButton(
|
|
// splashColor: CFColors.splashLight,
|
|
padding: const EdgeInsets.all(0),
|
|
materialTapTargetSize: MaterialTapTargetSize.shrinkWrap,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(
|
|
Constants.size.circularBorderRadius,
|
|
),
|
|
),
|
|
onPressed: () {
|
|
showDialog<void>(
|
|
context: context,
|
|
useSafeArea: true,
|
|
barrierDismissible: true,
|
|
builder: (_) => ContactPopUp(
|
|
contactId: contact.id,
|
|
),
|
|
);
|
|
},
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(8.0),
|
|
child: Row(
|
|
children: [
|
|
Container(
|
|
width: 32,
|
|
height: 32,
|
|
decoration: BoxDecoration(
|
|
color: CFColors.contactIconBackground,
|
|
borderRadius: BorderRadius.circular(32),
|
|
),
|
|
child: contact.id == "default"
|
|
? Center(
|
|
child: SvgPicture.asset(
|
|
Assets.svg.stackIcon,
|
|
width: 20,
|
|
),
|
|
)
|
|
: contact.emojiChar != null
|
|
? Center(
|
|
child: Text(contact.emojiChar!),
|
|
)
|
|
: Center(
|
|
child: SvgPicture.asset(
|
|
Assets.svg.user,
|
|
width: 18,
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 12,
|
|
),
|
|
Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Text(
|
|
contact.name,
|
|
style: STextStyles.itemSubtitle12,
|
|
),
|
|
const SizedBox(
|
|
height: 4,
|
|
),
|
|
Text(
|
|
coinsString,
|
|
style: STextStyles.label,
|
|
),
|
|
],
|
|
)
|
|
],
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|