gecko/lib/providers/wallet_options.dart

335 lines
10 KiB
Dart
Raw Normal View History

import 'dart:io';
import 'package:flutter/material.dart';
import 'dart:async';
import 'package:gecko/globals.dart';
import 'package:gecko/providers/my_wallets.dart';
2021-11-14 19:21:20 +01:00
import 'package:gecko/models/wallet_data.dart';
2022-05-21 06:47:26 +02:00
import 'package:gecko/providers/substrate_sdk.dart';
import 'package:gecko/screens/common_elements.dart';
2021-03-21 23:04:11 +01:00
import 'package:image_picker/image_picker.dart';
2022-05-21 06:47:26 +02:00
import 'package:provider/provider.dart';
class WalletOptionsProvider with ChangeNotifier {
TextEditingController address = TextEditingController();
2021-11-14 19:21:20 +01:00
final TextEditingController _newWalletName = TextEditingController();
bool isWalletUnlock = false;
bool ischangedPin = false;
2021-11-14 19:21:20 +01:00
TextEditingController newPin = TextEditingController();
bool isEditing = false;
2022-05-19 09:07:26 +02:00
bool isBalanceBlur = false;
FocusNode walletNameFocus = FocusNode();
TextEditingController nameController = TextEditingController();
2021-12-23 12:36:09 +01:00
late bool isDefaultWallet;
2021-12-23 12:36:09 +01:00
Future<NewWallet>? get badWallet => null;
int getPinLenght(_walletNbr) {
return pinLength;
2021-02-09 22:11:57 +01:00
}
2022-05-21 06:47:26 +02:00
void _renameWallet(List<int?> _walletID, String _newName,
{required bool isCesium}) async {
2022-05-21 06:47:26 +02:00
MyWalletsProvider myWalletClass = MyWalletsProvider();
WalletData _walletTarget = myWalletClass.getWalletDataById(_walletID)!;
2022-05-21 06:47:26 +02:00
_walletTarget.name = _newName;
await walletBox.put(_walletTarget.key, _walletTarget);
2021-02-15 01:44:25 +01:00
_newWalletName.text = '';
}
2021-12-23 12:36:09 +01:00
bool editWalletName(List<int?> _wID, {bool? isCesium}) {
bool nameState;
if (isEditing) {
if (!nameController.text.contains(':') &&
nameController.text.length <= 39) {
2021-12-23 12:36:09 +01:00
_renameWallet(_wID, nameController.text, isCesium: isCesium!);
nameState = true;
} else {
nameState = false;
}
} else {
nameState = true;
}
isEditing ? isEditing = false : isEditing = true;
notifyListeners();
return nameState;
}
Future<int> deleteWallet(context, WalletData wallet) async {
SubstrateSdk _sub = Provider.of<SubstrateSdk>(context, listen: false);
final bool? _answer = await (confirmPopup(context,
'Êtes-vous sûr de vouloir oublier le portefeuille "${wallet.name}" ?'));
2022-05-30 14:48:12 +02:00
if (_answer ?? false) {
await walletBox.delete(wallet.key);
await _sub.deleteAccounts([wallet.address!]);
2021-02-15 01:44:25 +01:00
Navigator.pop(context);
}
2021-02-15 01:44:25 +01:00
return 0;
}
void bluringBalance() {
isBalanceBlur = !isBalanceBlur;
notifyListeners();
}
Future<String> changeAvatar() async {
// File _image;
2021-03-21 23:04:11 +01:00
final picker = ImagePicker();
2021-12-23 12:36:09 +01:00
XFile? pickedFile = await picker.pickImage(source: ImageSource.gallery);
2021-03-21 23:04:11 +01:00
if (pickedFile != null) {
File imageFile = File(pickedFile.path);
if (!await imageDirectory.exists()) {
log.e("Image folder doesn't exist");
return '';
}
final newPath = "${imageDirectory.path}/${pickedFile.name}";
await imageFile.copy(newPath);
// final File newImage = File(newPath);
// await newImage.writeAsBytes(await pickedFile.readAsBytes());
// await pickedFile.saveTo(newPath);
// await Future.delayed(const Duration(milliseconds: 100));
log.i(newPath);
return newPath;
2021-03-21 23:04:11 +01:00
} else {
2021-04-02 12:05:37 +02:00
log.w('No image selected.');
return '';
2021-03-21 23:04:11 +01:00
}
}
2022-05-24 16:51:40 +02:00
Widget idtyStatus(BuildContext context, String address,
{bool isOwner = false}) {
_showText(String text, [double size = 18, bool _bold = false]) => Text(
text,
textAlign: TextAlign.center,
style: TextStyle(
fontSize: size,
color: _bold ? orangeC : Colors.black,
fontWeight: _bold ? FontWeight.w500 : FontWeight.w400),
);
2022-05-24 16:51:40 +02:00
return Consumer<SubstrateSdk>(builder: (context, _sub, _) {
return FutureBuilder(
future: _sub.idtyStatus(address),
initialData: '...',
builder: (context, snapshot) {
switch (snapshot.data.toString()) {
case 'noid':
{
return _showText('Aucune identité');
2022-05-24 16:51:40 +02:00
}
case 'Created':
{
return isOwner
? InkWell(
child: _showText(
'Cliquez ici pour confirmer\nvotre nouvelle identité',
18,
true),
onTap: () async {
await validateIdentity(context);
},
)
: _showText('Identité créé');
2022-05-24 16:51:40 +02:00
}
case 'ConfirmedByOwner':
{
return _showText('Identité confirmé');
2022-05-24 16:51:40 +02:00
}
case 'Validated':
{
return _showText('Membre validé !');
2022-05-24 16:51:40 +02:00
}
case 'expired':
{
return _showText('Identité expiré');
2022-05-24 16:51:40 +02:00
}
}
return SizedBox(
child: _showText('Statut inconnu'),
2022-05-24 16:51:40 +02:00
);
});
});
}
Future<String?> validateIdentity(BuildContext context) async {
TextEditingController idtyName = TextEditingController();
SubstrateSdk _sub = Provider.of<SubstrateSdk>(context, listen: false);
WalletOptionsProvider _walletOptions =
Provider.of<WalletOptionsProvider>(context, listen: false);
MyWalletsProvider _myWalletProvider =
Provider.of<MyWalletsProvider>(context, listen: false);
return showDialog<String>(
context: context,
barrierDismissible: true, // user must tap button!
builder: (BuildContext context) {
return AlertDialog(
title: const Text(
'Confirmez votre identité',
textAlign: TextAlign.center,
style: TextStyle(fontSize: 20, fontWeight: FontWeight.w500),
),
2022-05-24 16:51:40 +02:00
content: SizedBox(
height: 100,
child: Column(children: [
const SizedBox(height: 20),
const Text(
'Nom:',
style: TextStyle(fontSize: 19),
),
2022-05-24 16:51:40 +02:00
TextField(
onChanged: (_) => notifyListeners(),
textAlign: TextAlign.center,
autofocus: true,
2022-05-24 16:51:40 +02:00
controller: idtyName,
style: const TextStyle(fontSize: 19),
2022-05-24 16:51:40 +02:00
)
]),
),
actions: <Widget>[
Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Consumer<WalletOptionsProvider>(
builder: (context, _wOptions, _) {
return TextButton(
key: const Key('infoPopup'),
child: Text(
"Valider",
style: TextStyle(
fontSize: 21,
color: idtyName.text.length >= 2
? const Color(0xffD80000)
: Colors.grey,
),
),
onPressed: () async {
if (idtyName.text.length >= 2) {
final _wallet = _myWalletProvider
.getWalletDataByAddress(address.text);
await _sub.setCurrentWallet(_wallet!);
_sub.confirmIdentity(_walletOptions.address.text,
idtyName.text, _myWalletProvider.pinCode);
Navigator.pop(context);
}
},
);
})
],
2022-05-24 16:51:40 +02:00
),
const SizedBox(height: 20)
2022-05-24 16:51:40 +02:00
],
);
},
);
}
2021-03-02 08:19:20 +01:00
void reloadBuild() {
notifyListeners();
}
Future changePinCacheChoice() async {
bool isCacheChecked = configBox.get('isCacheChecked') ?? false;
await configBox.put('isCacheChecked', !isCacheChecked);
notifyListeners();
}
String? getAddress(int chest, int derivation) {
String? _address;
walletBox.toMap().forEach((key, value) {
2022-05-19 09:07:26 +02:00
if (value.chest == chest && value.derivation == derivation) {
_address = value.address!;
return;
}
});
address.text = _address ?? '';
return _address;
}
}
2022-05-21 06:47:26 +02:00
2022-05-24 18:31:41 +02:00
Map<String, String> balanceCache = {};
2022-05-21 06:47:26 +02:00
Widget balance(BuildContext context, String address, double size,
[Color _color = Colors.black]) {
2022-05-21 06:47:26 +02:00
return Column(children: <Widget>[
Consumer<SubstrateSdk>(builder: (context, _sdk, _) {
return FutureBuilder(
future: _sdk.getBalance(address),
builder: (BuildContext context, AsyncSnapshot<num?> _balance) {
if (_balance.connectionState != ConnectionState.done ||
_balance.hasError) {
2022-05-24 18:31:41 +02:00
if (balanceCache[address] != null) {
return Text(balanceCache[address]!,
style: TextStyle(
fontSize: isTall ? size : size * 0.9, color: _color));
2022-05-24 18:31:41 +02:00
} else {
return SizedBox(
height: 15,
width: 15,
child: CircularProgressIndicator(
color: orangeC,
strokeWidth: 2,
),
);
}
2022-05-21 06:47:26 +02:00
}
2022-05-24 18:31:41 +02:00
balanceCache[address] = "${_balance.data.toString()} $currencyName";
2022-05-21 06:47:26 +02:00
return Text(
2022-05-24 18:31:41 +02:00
balanceCache[address]!,
2022-05-21 06:47:26 +02:00
style: TextStyle(
2022-05-26 02:35:29 +02:00
fontSize: isTall ? size : size * 0.9,
color: _color,
2022-05-21 06:47:26 +02:00
),
);
});
}),
]);
}
2022-06-02 19:58:23 +02:00
Widget getCerts(BuildContext context, String address, double size,
[Color _color = Colors.black]) {
return Column(children: <Widget>[
Consumer<SubstrateSdk>(builder: (context, _sdk, _) {
return FutureBuilder(
future: _sdk.getCerts(address),
builder: (BuildContext context, AsyncSnapshot<List<int>> _certs) {
// log.d(_certs.data);
return _certs.data?[0] != 0
? Row(
children: [
const Icon(
Icons.arrow_drop_down,
color: Colors.green,
size: 30,
),
Text(_certs.data?[0].toString() ?? '0'),
const SizedBox(width: 15),
const Icon(
Icons.arrow_drop_up,
color: Colors.blue,
size: 30,
),
Text(_certs.data?[1].toString() ?? '0')
],
)
: const Text('');
2022-06-02 19:58:23 +02:00
});
}),
]);
}