mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
244 lines
8.7 KiB
Dart
244 lines
8.7 KiB
Dart
import 'dart:async';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:stackwallet/models/paymint/transactions_model.dart';
|
|
import 'package:stackwallet/notifications/show_flush_bar.dart';
|
|
import 'package:stackwallet/pages/wallet_view/sub_widgets/tx_icon.dart';
|
|
import 'package:stackwallet/pages/wallet_view/transaction_views/transaction_details_view.dart';
|
|
import 'package:stackwallet/providers/providers.dart';
|
|
import 'package:stackwallet/utilities/constants.dart';
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
import 'package:stackwallet/utilities/enums/flush_bar_type.dart';
|
|
import 'package:stackwallet/utilities/format.dart';
|
|
import 'package:stackwallet/utilities/text_styles.dart';
|
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
|
import 'package:tuple/tuple.dart';
|
|
|
|
class TransactionCard extends ConsumerStatefulWidget {
|
|
const TransactionCard({
|
|
Key? key,
|
|
required this.transaction,
|
|
required this.walletId,
|
|
}) : super(key: key);
|
|
|
|
final Transaction transaction;
|
|
final String walletId;
|
|
|
|
@override
|
|
ConsumerState<TransactionCard> createState() => _TransactionCardState();
|
|
}
|
|
|
|
class _TransactionCardState extends ConsumerState<TransactionCard> {
|
|
late final Transaction _transaction;
|
|
late final String walletId;
|
|
|
|
String whatIsIt(String type, Coin coin) {
|
|
if (coin == Coin.epicCash && _transaction.slateId == null) {
|
|
return "Restored Funds";
|
|
}
|
|
|
|
if (_transaction.subType == "mint") {
|
|
// if (type == "Received") {
|
|
if (_transaction.confirmedStatus) {
|
|
return "Anonymized";
|
|
} else {
|
|
return "Anonymizing";
|
|
}
|
|
// } else if (type == "Sent") {
|
|
// if (_transaction.confirmedStatus) {
|
|
// return "Sent MINT";
|
|
// } else {
|
|
// return "Sending MINT";
|
|
// }
|
|
// } else {
|
|
// return type;
|
|
// }
|
|
}
|
|
|
|
if (type == "Received") {
|
|
// if (_transaction.isMinting) {
|
|
// return "Minting";
|
|
// } else
|
|
if (_transaction.confirmedStatus) {
|
|
return "Received";
|
|
} else {
|
|
return "Receiving";
|
|
}
|
|
} else if (type == "Sent") {
|
|
if (_transaction.confirmedStatus) {
|
|
return "Sent";
|
|
} else {
|
|
return "Sending";
|
|
}
|
|
} else {
|
|
return type;
|
|
}
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
walletId = widget.walletId;
|
|
_transaction = widget.transaction;
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final locale = ref.watch(
|
|
localeServiceChangeNotifierProvider.select((value) => value.locale));
|
|
final manager = ref.watch(walletsChangeNotifierProvider
|
|
.select((value) => value.getManager(walletId)));
|
|
|
|
final baseCurrency = ref
|
|
.watch(prefsChangeNotifierProvider.select((value) => value.currency));
|
|
|
|
final coin = manager.coin;
|
|
|
|
final price = ref
|
|
.watch(priceAnd24hChangeNotifierProvider
|
|
.select((value) => value.getPrice(coin)))
|
|
.item1;
|
|
|
|
return Material(
|
|
color: Theme.of(context).extension<StackColors>()!.popupBG,
|
|
elevation: 0,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius:
|
|
BorderRadius.circular(Constants.size.circularBorderRadius),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(6),
|
|
child: RawMaterialButton(
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(
|
|
Constants.size.circularBorderRadius,
|
|
),
|
|
),
|
|
onPressed: () async {
|
|
if (coin == Coin.epicCash && _transaction.slateId == null) {
|
|
unawaited(showFloatingFlushBar(
|
|
context: context,
|
|
message:
|
|
"Restored Epic funds from your Seed have no Data.\nUse Stack Backup to keep your transaction history.",
|
|
type: FlushBarType.warning,
|
|
duration: const Duration(seconds: 5),
|
|
));
|
|
return;
|
|
}
|
|
unawaited(Navigator.of(context).pushNamed(
|
|
TransactionDetailsView.routeName,
|
|
arguments: Tuple3(
|
|
_transaction,
|
|
coin,
|
|
walletId,
|
|
),
|
|
));
|
|
},
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(8),
|
|
child: Row(
|
|
children: [
|
|
TxIcon(transaction: _transaction),
|
|
const SizedBox(
|
|
width: 14,
|
|
),
|
|
Expanded(
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
// crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: [
|
|
Flexible(
|
|
child: FittedBox(
|
|
fit: BoxFit.scaleDown,
|
|
child: Text(
|
|
_transaction.isCancelled
|
|
? "Cancelled"
|
|
: whatIsIt(_transaction.txType, coin),
|
|
style: STextStyles.itemSubtitle12(context),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 10,
|
|
),
|
|
Flexible(
|
|
child: FittedBox(
|
|
fit: BoxFit.scaleDown,
|
|
child: Builder(
|
|
builder: (_) {
|
|
final amount = coin == Coin.monero
|
|
? (_transaction.amount ~/ 10000)
|
|
: _transaction.amount;
|
|
return Text(
|
|
"${Format.satoshiAmountToPrettyString(amount, locale)} ${coin.ticker}",
|
|
style: STextStyles.itemSubtitle12(context)
|
|
.copyWith(
|
|
fontWeight: FontWeight.w600,
|
|
),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
const SizedBox(
|
|
height: 4,
|
|
),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
// crossAxisAlignment: CrossAxisAlignment.end,
|
|
children: [
|
|
Flexible(
|
|
child: FittedBox(
|
|
fit: BoxFit.scaleDown,
|
|
child: Text(
|
|
Format.extractDateFrom(_transaction.timestamp),
|
|
style: STextStyles.label(context),
|
|
),
|
|
),
|
|
),
|
|
const SizedBox(
|
|
width: 10,
|
|
),
|
|
Flexible(
|
|
child: FittedBox(
|
|
fit: BoxFit.scaleDown,
|
|
child: Builder(
|
|
builder: (_) {
|
|
// TODO: modify Format.<functions> to take optional Coin parameter so this type oif check isn't done in ui
|
|
int value = _transaction.amount;
|
|
if (coin == Coin.monero) {
|
|
value = (value ~/ 10000);
|
|
}
|
|
|
|
return Text(
|
|
"${Format.localizedStringAsFixed(
|
|
value: Format.satoshisToAmount(value) *
|
|
price,
|
|
locale: locale,
|
|
decimalPlaces: 2,
|
|
)} $baseCurrency",
|
|
style: STextStyles.label(context),
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|