2022-08-26 08:11:35 +00:00
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter_svg/svg.dart';
|
|
|
|
import 'package:stackwallet/models/paymint/transactions_model.dart';
|
|
|
|
import 'package:stackwallet/utilities/assets.dart';
|
|
|
|
|
|
|
|
class TxIcon extends StatelessWidget {
|
|
|
|
const TxIcon({Key? key, required this.transaction}) : super(key: key);
|
|
|
|
final Transaction transaction;
|
|
|
|
|
|
|
|
static const Size size = Size(32, 32);
|
|
|
|
|
2022-09-23 14:33:44 +00:00
|
|
|
String _getAssetName(
|
|
|
|
bool isCancelled, bool isReceived, bool isPending, BuildContext context) {
|
2022-09-07 15:56:10 +00:00
|
|
|
if (!isReceived && transaction.subType == "mint") {
|
2022-09-06 21:51:22 +00:00
|
|
|
if (isCancelled) {
|
|
|
|
return Assets.svg.anonymizeFailed;
|
|
|
|
}
|
|
|
|
if (isPending) {
|
|
|
|
return Assets.svg.anonymizePending;
|
|
|
|
}
|
|
|
|
return Assets.svg.anonymize;
|
|
|
|
}
|
|
|
|
|
2022-08-26 08:11:35 +00:00
|
|
|
if (isReceived) {
|
|
|
|
if (isCancelled) {
|
2022-09-23 14:33:44 +00:00
|
|
|
return Assets.svg.receiveCancelled(context);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
if (isPending) {
|
2022-09-23 14:33:44 +00:00
|
|
|
return Assets.svg.receivePending(context);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
2022-09-23 14:33:44 +00:00
|
|
|
return Assets.svg.receive(context);
|
2022-08-26 08:11:35 +00:00
|
|
|
} else {
|
|
|
|
if (isCancelled) {
|
2022-09-23 14:33:44 +00:00
|
|
|
return Assets.svg.sendCancelled(context);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
if (isPending) {
|
2022-09-23 14:33:44 +00:00
|
|
|
return Assets.svg.sendPending(context);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
2022-09-23 14:33:44 +00:00
|
|
|
return Assets.svg.send(context);
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final txIsReceived = transaction.txType == "Received";
|
|
|
|
|
|
|
|
return SizedBox(
|
|
|
|
width: size.width,
|
|
|
|
height: size.height,
|
|
|
|
child: Center(
|
|
|
|
child: SvgPicture.asset(
|
|
|
|
_getAssetName(
|
|
|
|
transaction.isCancelled,
|
|
|
|
txIsReceived,
|
|
|
|
!transaction.confirmedStatus,
|
2022-09-23 14:33:44 +00:00
|
|
|
context,
|
2022-08-26 08:11:35 +00:00
|
|
|
),
|
|
|
|
width: size.width,
|
|
|
|
height: size.height,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|