mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
102 lines
2.7 KiB
Dart
102 lines
2.7 KiB
Dart
/*
|
|
* This file is part of Stack Wallet.
|
|
*
|
|
* Copyright (c) 2023 Cypher Stack
|
|
* All Rights Reserved.
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
*
|
|
*/
|
|
|
|
import 'dart:io';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:flutter_svg/svg.dart';
|
|
import 'package:stackwallet/models/isar/models/isar_models.dart';
|
|
import 'package:stackwallet/models/isar/stack_theme.dart';
|
|
import 'package:stackwallet/themes/theme_providers.dart';
|
|
import 'package:stackwallet/utilities/assets.dart';
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
|
|
class TxIcon extends ConsumerWidget {
|
|
const TxIcon({
|
|
Key? key,
|
|
required this.transaction,
|
|
required this.currentHeight,
|
|
required this.coin,
|
|
}) : super(key: key);
|
|
|
|
final Transaction transaction;
|
|
final int currentHeight;
|
|
final Coin coin;
|
|
|
|
static const Size size = Size(32, 32);
|
|
|
|
String _getAssetName(
|
|
bool isCancelled, bool isReceived, bool isPending, IThemeAssets assets) {
|
|
if (!isReceived && transaction.subType == TransactionSubType.mint) {
|
|
if (isCancelled) {
|
|
return Assets.svg.anonymizeFailed;
|
|
}
|
|
if (isPending) {
|
|
return Assets.svg.anonymizePending;
|
|
}
|
|
return Assets.svg.anonymize;
|
|
}
|
|
|
|
if (isReceived) {
|
|
if (isCancelled) {
|
|
return assets.receive;
|
|
}
|
|
if (isPending) {
|
|
return assets.receivePending;
|
|
}
|
|
return assets.receive;
|
|
} else {
|
|
if (isCancelled) {
|
|
return assets.sendCancelled;
|
|
}
|
|
if (isPending) {
|
|
return assets.sendPending;
|
|
}
|
|
return assets.send;
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context, WidgetRef ref) {
|
|
final txIsReceived = transaction.type == TransactionType.incoming;
|
|
|
|
final assetName = _getAssetName(
|
|
transaction.isCancelled,
|
|
txIsReceived,
|
|
!transaction.isConfirmed(
|
|
currentHeight,
|
|
coin.requiredConfirmations,
|
|
),
|
|
ref.watch(themeAssetsProvider),
|
|
);
|
|
|
|
return SizedBox(
|
|
width: size.width,
|
|
height: size.height,
|
|
child: Center(
|
|
// if it starts with "assets" we assume its local
|
|
// TODO: a more thorough check
|
|
child: assetName.startsWith("assets")
|
|
? SvgPicture.asset(
|
|
assetName,
|
|
width: size.width,
|
|
height: size.height,
|
|
)
|
|
: SvgPicture.file(
|
|
File(
|
|
assetName,
|
|
),
|
|
width: size.width,
|
|
height: size.height,
|
|
)),
|
|
);
|
|
}
|
|
}
|