2020-01-04 19:31:52 +00:00
|
|
|
import 'dart:ui';
|
2020-05-14 17:29:10 +00:00
|
|
|
import 'package:cake_wallet/src/domain/exchange/exchange_provider_description.dart';
|
|
|
|
import 'package:cake_wallet/src/domain/exchange/exchange_template.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/template_tile.dart';
|
2020-05-12 17:46:42 +00:00
|
|
|
import 'package:dotted_border/dotted_border.dart';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
|
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:cake_wallet/palette.dart';
|
|
|
|
import 'package:cake_wallet/routes.dart';
|
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
|
|
|
import 'package:cake_wallet/src/domain/common/crypto_currency.dart';
|
2020-01-08 12:26:34 +00:00
|
|
|
import 'package:cake_wallet/src/domain/exchange/exchange_provider.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
import 'package:cake_wallet/src/domain/exchange/xmrto/xmrto_exchange_provider.dart';
|
|
|
|
import 'package:cake_wallet/src/stores/exchange/exchange_trade_state.dart';
|
|
|
|
import 'package:cake_wallet/src/stores/exchange/limits_state.dart';
|
|
|
|
import 'package:cake_wallet/src/stores/wallet/wallet_store.dart';
|
|
|
|
import 'package:cake_wallet/src/stores/exchange/exchange_store.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/exchange/widgets/exchange_card.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/primary_button.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/scollable_with_bottom_section.dart';
|
2020-05-12 17:46:42 +00:00
|
|
|
import 'package:cake_wallet/src/widgets/top_panel.dart';
|
2020-05-13 18:26:15 +00:00
|
|
|
import 'package:cake_wallet/src/screens/exchange/widgets/provider_picker.dart';
|
2020-05-14 17:29:10 +00:00
|
|
|
import 'package:cake_wallet/src/stores/exchange_template/exchange_template_store.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
class ExchangePage extends BasePage {
|
2020-01-08 12:26:34 +00:00
|
|
|
@override
|
2020-01-04 19:31:52 +00:00
|
|
|
String get title => S.current.exchange;
|
|
|
|
|
|
|
|
@override
|
2020-05-12 17:46:42 +00:00
|
|
|
Color get backgroundColor => PaletteDark.walletCardSubAddressField;
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-05-12 17:46:42 +00:00
|
|
|
final Image arrowBottom =
|
|
|
|
Image.asset('assets/images/arrow_bottom_purple_icon.png', color: Colors.white, height: 6);
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
@override
|
|
|
|
Widget middle(BuildContext context) {
|
|
|
|
final exchangeStore = Provider.of<ExchangeStore>(context);
|
|
|
|
|
|
|
|
return FlatButton(
|
|
|
|
onPressed: () => _presentProviderPicker(context),
|
|
|
|
highlightColor: Colors.transparent,
|
|
|
|
splashColor: Colors.transparent,
|
2020-05-12 17:46:42 +00:00
|
|
|
child: Row(
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
2020-01-04 19:31:52 +00:00
|
|
|
children: <Widget>[
|
2020-05-12 17:46:42 +00:00
|
|
|
Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(S.of(context).exchange,
|
2020-01-04 19:31:52 +00:00
|
|
|
style: TextStyle(
|
2020-05-12 17:46:42 +00:00
|
|
|
fontSize: 16.0,
|
2020-01-04 19:31:52 +00:00
|
|
|
fontWeight: FontWeight.w400,
|
2020-05-12 17:46:42 +00:00
|
|
|
color: Colors.white)),
|
|
|
|
Observer(
|
|
|
|
builder: (_) => Text('${exchangeStore.provider.title}',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 10.0,
|
|
|
|
fontWeight: FontWeight.w400,
|
|
|
|
color:PaletteDark.walletCardText)))
|
|
|
|
],
|
|
|
|
),
|
|
|
|
SizedBox(width: 5),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 8),
|
|
|
|
child: arrowBottom,
|
|
|
|
)
|
2020-01-04 19:31:52 +00:00
|
|
|
],
|
2020-05-12 17:46:42 +00:00
|
|
|
)
|
2020-01-04 19:31:52 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget trailing(BuildContext context) {
|
|
|
|
final exchangeStore = Provider.of<ExchangeStore>(context);
|
|
|
|
|
|
|
|
return ButtonTheme(
|
|
|
|
minWidth: double.minPositive,
|
2020-05-12 17:46:42 +00:00
|
|
|
highlightColor: Colors.transparent,
|
|
|
|
splashColor: Colors.transparent,
|
2020-01-04 19:31:52 +00:00
|
|
|
child: FlatButton(
|
|
|
|
padding: EdgeInsets.all(0),
|
|
|
|
child: Text(
|
|
|
|
S.of(context).clear,
|
|
|
|
style: TextStyle(
|
2020-05-12 17:46:42 +00:00
|
|
|
color: PaletteDark.walletCardText,
|
2020-01-04 19:31:52 +00:00
|
|
|
fontWeight: FontWeight.w500,
|
2020-05-12 17:46:42 +00:00
|
|
|
fontSize: 14),
|
2020-01-04 19:31:52 +00:00
|
|
|
),
|
|
|
|
onPressed: () => exchangeStore.reset()),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget body(BuildContext context) => ExchangeForm();
|
|
|
|
|
|
|
|
void _presentProviderPicker(BuildContext context) {
|
|
|
|
final exchangeStore = Provider.of<ExchangeStore>(context);
|
|
|
|
final items = exchangeStore.providersForCurrentPair();
|
|
|
|
final selectedItem = items.indexOf(exchangeStore.provider);
|
2020-05-14 17:29:10 +00:00
|
|
|
final images = List<Image>();
|
|
|
|
|
|
|
|
for (ExchangeProvider provider in items) {
|
|
|
|
switch (provider.description) {
|
|
|
|
case ExchangeProviderDescription.xmrto:
|
|
|
|
images.add(Image.asset('assets/images/xmr_btc.png'));
|
|
|
|
break;
|
|
|
|
case ExchangeProviderDescription.changeNow:
|
|
|
|
images.add(Image.asset('assets/images/change_now.png'));
|
|
|
|
break;
|
|
|
|
case ExchangeProviderDescription.morphToken:
|
|
|
|
images.add(Image.asset('assets/images/morph_icon.png'));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
showDialog<void>(
|
2020-05-13 18:26:15 +00:00
|
|
|
builder: (_) => ProviderPicker(
|
2020-01-04 19:31:52 +00:00
|
|
|
items: items,
|
2020-05-14 17:29:10 +00:00
|
|
|
images: images,
|
2020-01-04 19:31:52 +00:00
|
|
|
selectedAtIndex: selectedItem,
|
|
|
|
title: S.of(context).change_exchange_provider,
|
2020-01-08 12:26:34 +00:00
|
|
|
onItemSelected: (ExchangeProvider provider) =>
|
2020-01-04 19:31:52 +00:00
|
|
|
exchangeStore.changeProvider(provider: provider)),
|
|
|
|
context: context);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ExchangeForm extends StatefulWidget {
|
|
|
|
@override
|
|
|
|
State<StatefulWidget> createState() => ExchangeFormState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class ExchangeFormState extends State<ExchangeForm> {
|
|
|
|
final depositKey = GlobalKey<ExchangeCardState>();
|
|
|
|
final receiveKey = GlobalKey<ExchangeCardState>();
|
|
|
|
final _formKey = GlobalKey<FormState>();
|
|
|
|
var _isReactionsSet = false;
|
|
|
|
|
|
|
|
final Image arrowBottomPurple = Image.asset(
|
|
|
|
'assets/images/arrow_bottom_purple_icon.png',
|
2020-05-12 17:46:42 +00:00
|
|
|
color: Colors.white,
|
2020-01-04 19:31:52 +00:00
|
|
|
height: 8,
|
|
|
|
);
|
|
|
|
final Image arrowBottomCakeGreen = Image.asset(
|
|
|
|
'assets/images/arrow_bottom_cake_green.png',
|
2020-05-12 17:46:42 +00:00
|
|
|
color: Colors.white,
|
2020-01-04 19:31:52 +00:00
|
|
|
height: 8,
|
|
|
|
);
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final exchangeStore = Provider.of<ExchangeStore>(context);
|
|
|
|
final walletStore = Provider.of<WalletStore>(context);
|
2020-05-14 17:29:10 +00:00
|
|
|
final exchangeTemplateStore = Provider.of<ExchangeTemplateStore>(context);
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
final depositWalletName =
|
|
|
|
exchangeStore.depositCurrency == CryptoCurrency.xmr
|
|
|
|
? walletStore.name
|
|
|
|
: null;
|
|
|
|
final receiveWalletName =
|
|
|
|
exchangeStore.receiveCurrency == CryptoCurrency.xmr
|
|
|
|
? walletStore.name
|
|
|
|
: null;
|
|
|
|
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback(
|
|
|
|
(_) => _setReactions(context, exchangeStore, walletStore));
|
|
|
|
|
2020-05-12 17:46:42 +00:00
|
|
|
return Container(
|
|
|
|
color: PaletteDark.historyPanel,
|
|
|
|
child: Form(
|
|
|
|
key: _formKey,
|
|
|
|
child: ScrollableWithBottomSection(
|
|
|
|
contentPadding: EdgeInsets.only(bottom: 24),
|
|
|
|
content: Column(
|
2020-01-04 19:31:52 +00:00
|
|
|
children: <Widget>[
|
2020-05-12 17:46:42 +00:00
|
|
|
TopPanel(
|
|
|
|
color: PaletteDark.menuList,
|
|
|
|
edgeInsets: EdgeInsets.only(bottom: 24),
|
|
|
|
widget: Column(
|
|
|
|
children: <Widget>[
|
|
|
|
TopPanel(
|
|
|
|
color: PaletteDark.walletCardSubAddressField,
|
|
|
|
widget: Observer(
|
|
|
|
builder: (_) => ExchangeCard(
|
|
|
|
key: depositKey,
|
|
|
|
title: S.of(context).you_will_send,
|
|
|
|
initialCurrency: exchangeStore.depositCurrency,
|
|
|
|
initialWalletName: depositWalletName,
|
|
|
|
initialAddress:
|
|
|
|
exchangeStore.depositCurrency == walletStore.type
|
|
|
|
? walletStore.address
|
2020-05-14 17:29:10 +00:00
|
|
|
: exchangeStore.depositAddress,
|
2020-05-12 17:46:42 +00:00
|
|
|
initialIsAmountEditable: true,
|
|
|
|
initialIsAddressEditable: true,
|
|
|
|
isAmountEstimated: false,
|
|
|
|
currencies: CryptoCurrency.all,
|
|
|
|
onCurrencySelected: (currency) =>
|
|
|
|
exchangeStore.changeDepositCurrency(currency: currency),
|
|
|
|
imageArrow: arrowBottomPurple,
|
|
|
|
currencyButtonColor: PaletteDark.walletCardSubAddressField,
|
2020-05-13 18:26:15 +00:00
|
|
|
addressButtonsColor: PaletteDark.menuList,
|
2020-05-12 17:46:42 +00:00
|
|
|
currencyValueValidator: (value) {
|
|
|
|
exchangeStore.validateCryptoCurrency(value);
|
|
|
|
return exchangeStore.errorMessage;
|
|
|
|
},
|
|
|
|
addressTextFieldValidator: (value) {
|
|
|
|
exchangeStore.validateAddress(value,
|
|
|
|
cryptoCurrency: exchangeStore.depositCurrency);
|
|
|
|
return exchangeStore.errorMessage;
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 32, left: 24, right: 24),
|
|
|
|
child: Observer(
|
|
|
|
builder: (_) => ExchangeCard(
|
|
|
|
key: receiveKey,
|
|
|
|
title: S.of(context).you_will_get,
|
|
|
|
initialCurrency: exchangeStore.receiveCurrency,
|
|
|
|
initialWalletName: receiveWalletName,
|
|
|
|
initialAddress:
|
|
|
|
exchangeStore.receiveCurrency == walletStore.type
|
|
|
|
? walletStore.address
|
2020-05-14 17:29:10 +00:00
|
|
|
: exchangeStore.receiveAddress,
|
2020-05-12 17:46:42 +00:00
|
|
|
initialIsAmountEditable: false,
|
|
|
|
initialIsAddressEditable: true,
|
|
|
|
isAmountEstimated: true,
|
|
|
|
currencies: CryptoCurrency.all,
|
|
|
|
onCurrencySelected: (currency) => exchangeStore
|
|
|
|
.changeReceiveCurrency(currency: currency),
|
|
|
|
imageArrow: arrowBottomCakeGreen,
|
|
|
|
currencyButtonColor: PaletteDark.menuList,
|
|
|
|
currencyValueValidator: (value) {
|
|
|
|
exchangeStore.validateCryptoCurrency(value);
|
|
|
|
return exchangeStore.errorMessage;
|
|
|
|
},
|
|
|
|
addressTextFieldValidator: (value) {
|
|
|
|
exchangeStore.validateAddress(value,
|
|
|
|
cryptoCurrency: exchangeStore.receiveCurrency);
|
|
|
|
return exchangeStore.errorMessage;
|
|
|
|
},
|
|
|
|
)),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
|
|
|
),
|
2020-01-04 19:31:52 +00:00
|
|
|
Padding(
|
2020-05-12 17:46:42 +00:00
|
|
|
padding: EdgeInsets.only(
|
|
|
|
top: 32,
|
|
|
|
left: 24,
|
|
|
|
bottom: 24
|
|
|
|
),
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
S.of(context).send_templates,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 18,
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
color: PaletteDark.walletCardText
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
2020-01-04 19:31:52 +00:00
|
|
|
),
|
|
|
|
),
|
2020-05-12 17:46:42 +00:00
|
|
|
Container(
|
|
|
|
height: 40,
|
|
|
|
width: double.infinity,
|
|
|
|
padding: EdgeInsets.only(left: 24),
|
|
|
|
child: Observer(
|
|
|
|
builder: (_) {
|
2020-05-14 17:29:10 +00:00
|
|
|
final itemCount = exchangeTemplateStore.templates.length + 1;
|
2020-05-12 17:46:42 +00:00
|
|
|
|
|
|
|
return ListView.builder(
|
|
|
|
scrollDirection: Axis.horizontal,
|
2020-05-14 17:29:10 +00:00
|
|
|
itemCount: itemCount,
|
2020-05-12 17:46:42 +00:00
|
|
|
itemBuilder: (context, index) {
|
|
|
|
|
|
|
|
if (index == 0) {
|
|
|
|
return GestureDetector(
|
2020-05-14 17:29:10 +00:00
|
|
|
onTap: () => Navigator.of(context)
|
|
|
|
.pushNamed(Routes.exchangeTemplate),
|
2020-05-12 17:46:42 +00:00
|
|
|
child: Container(
|
|
|
|
padding: EdgeInsets.only(right: 10),
|
|
|
|
child: DottedBorder(
|
|
|
|
borderType: BorderType.RRect,
|
|
|
|
dashPattern: [8, 4],
|
|
|
|
color: PaletteDark.menuList,
|
|
|
|
strokeWidth: 2,
|
|
|
|
radius: Radius.circular(20),
|
|
|
|
child: Container(
|
|
|
|
height: 40,
|
|
|
|
width: 75,
|
|
|
|
padding: EdgeInsets.only(left: 10, right: 10),
|
|
|
|
alignment: Alignment.center,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(20)),
|
|
|
|
color: Colors.transparent,
|
|
|
|
),
|
|
|
|
child: Text(
|
|
|
|
S.of(context).send_new,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14,
|
|
|
|
fontWeight: FontWeight.w600,
|
|
|
|
color: PaletteDark.walletCardText
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
index -= 1;
|
|
|
|
|
2020-05-14 17:29:10 +00:00
|
|
|
final template = exchangeTemplateStore.templates[index];
|
|
|
|
|
|
|
|
return TemplateTile(
|
|
|
|
amount: template.amount,
|
|
|
|
from: template.depositCurrency,
|
|
|
|
to: template.receiveCurrency,
|
|
|
|
onTap: () {
|
|
|
|
applyTemplate(exchangeStore, template);
|
|
|
|
}
|
|
|
|
);
|
2020-05-12 17:46:42 +00:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
bottomSectionPadding: EdgeInsets.only(left: 24, right: 24, bottom: 24),
|
|
|
|
bottomSection: Column(children: <Widget>[
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(bottom: 15),
|
|
|
|
child: Observer(builder: (_) {
|
|
|
|
final description =
|
|
|
|
exchangeStore.provider is XMRTOExchangeProvider
|
|
|
|
? S.of(context).amount_is_guaranteed
|
|
|
|
: S.of(context).amount_is_estimate;
|
|
|
|
return Center(
|
|
|
|
child: Text(
|
|
|
|
description,
|
|
|
|
style: TextStyle(
|
|
|
|
color: PaletteDark.walletCardText,
|
|
|
|
fontSize: 12
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
),
|
|
|
|
Observer(
|
|
|
|
builder: (_) => LoadingPrimaryButton(
|
|
|
|
text: S.of(context).exchange,
|
|
|
|
onPressed: () {
|
|
|
|
if (_formKey.currentState.validate()) {
|
|
|
|
exchangeStore.createTrade();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
color: Colors.blue,
|
|
|
|
textColor: Colors.white,
|
|
|
|
isLoading: exchangeStore.tradeState is TradeIsCreating,
|
|
|
|
)),
|
|
|
|
]),
|
|
|
|
)),
|
|
|
|
);
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 17:29:10 +00:00
|
|
|
void applyTemplate(ExchangeStore store, ExchangeTemplate template) {
|
|
|
|
store.changeDepositCurrency(currency: CryptoCurrency.fromString(template.depositCurrency));
|
|
|
|
store.changeReceiveCurrency(currency: CryptoCurrency.fromString(template.receiveCurrency));
|
|
|
|
|
|
|
|
switch (template.provider) {
|
|
|
|
case 'XMR.TO':
|
|
|
|
store.changeProvider(provider: store.providerList[0]);
|
|
|
|
break;
|
|
|
|
case 'ChangeNOW':
|
|
|
|
store.changeProvider(provider: store.providerList[1]);
|
|
|
|
break;
|
|
|
|
case 'MorphToken':
|
|
|
|
store.changeProvider(provider: store.providerList[2]);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
store.changeDepositAmount(amount: template.amount);
|
|
|
|
store.depositAddress = template.depositAddress;
|
|
|
|
store.receiveAddress = template.receiveAddress;
|
|
|
|
}
|
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
void _setReactions(
|
|
|
|
BuildContext context, ExchangeStore store, WalletStore walletStore) {
|
|
|
|
if (_isReactionsSet) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
final depositAddressController = depositKey.currentState.addressController;
|
|
|
|
final depositAmountController = depositKey.currentState.amountController;
|
|
|
|
final receiveAddressController = receiveKey.currentState.addressController;
|
|
|
|
final receiveAmountController = receiveKey.currentState.amountController;
|
|
|
|
final limitsState = store.limitsState;
|
|
|
|
|
|
|
|
if (limitsState is LimitsLoadedSuccessfully) {
|
|
|
|
final min = limitsState.limits.min != null
|
|
|
|
? limitsState.limits.min.toString()
|
|
|
|
: null;
|
|
|
|
final max = limitsState.limits.max != null
|
|
|
|
? limitsState.limits.max.toString()
|
|
|
|
: null;
|
2020-04-13 16:05:27 +00:00
|
|
|
final key = depositKey;
|
2020-01-04 19:31:52 +00:00
|
|
|
key.currentState.changeLimits(min: min, max: max);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onCurrencyChange(store.receiveCurrency, walletStore, receiveKey);
|
|
|
|
_onCurrencyChange(store.depositCurrency, walletStore, depositKey);
|
|
|
|
|
|
|
|
reaction(
|
|
|
|
(_) => walletStore.name,
|
2020-01-08 12:26:34 +00:00
|
|
|
(String _) => _onWalletNameChange(
|
2020-01-04 19:31:52 +00:00
|
|
|
walletStore, store.receiveCurrency, receiveKey));
|
|
|
|
|
|
|
|
reaction(
|
|
|
|
(_) => walletStore.name,
|
2020-01-08 12:26:34 +00:00
|
|
|
(String _) => _onWalletNameChange(
|
2020-01-04 19:31:52 +00:00
|
|
|
walletStore, store.depositCurrency, depositKey));
|
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
reaction(
|
|
|
|
(_) => store.receiveCurrency,
|
|
|
|
(CryptoCurrency currency) =>
|
|
|
|
_onCurrencyChange(currency, walletStore, receiveKey));
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
reaction(
|
|
|
|
(_) => store.depositCurrency,
|
|
|
|
(CryptoCurrency currency) =>
|
|
|
|
_onCurrencyChange(currency, walletStore, depositKey));
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
reaction((_) => store.depositAmount, (String amount) {
|
2020-01-04 19:31:52 +00:00
|
|
|
if (depositKey.currentState.amountController.text != amount) {
|
|
|
|
depositKey.currentState.amountController.text = amount;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-05-14 17:29:10 +00:00
|
|
|
reaction((_) => store.depositAddress, (String address) {
|
|
|
|
if (depositKey.currentState.addressController.text != address) {
|
|
|
|
depositKey.currentState.addressController.text = address;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
reaction((_) => store.receiveAmount, (String amount) {
|
2020-01-04 19:31:52 +00:00
|
|
|
if (receiveKey.currentState.amountController.text !=
|
|
|
|
store.receiveAmount) {
|
|
|
|
receiveKey.currentState.amountController.text = amount;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-05-14 17:29:10 +00:00
|
|
|
reaction((_) => store.receiveAddress, (String address) {
|
|
|
|
if (receiveKey.currentState.addressController.text != address) {
|
|
|
|
receiveKey.currentState.addressController.text = address;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
reaction((_) => store.provider, (ExchangeProvider provider) {
|
2020-01-04 19:31:52 +00:00
|
|
|
receiveKey.currentState.isAddressEditable(isEditable: true);
|
|
|
|
receiveKey.currentState.isAmountEditable(isEditable: false);
|
|
|
|
depositKey.currentState.isAddressEditable(isEditable: true);
|
|
|
|
depositKey.currentState.isAmountEditable(isEditable: true);
|
|
|
|
|
2020-04-13 16:05:27 +00:00
|
|
|
receiveKey.currentState.changeIsAmountEstimated(true);
|
2020-01-04 19:31:52 +00:00
|
|
|
});
|
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
reaction((_) => store.tradeState, (ExchangeTradeState state) {
|
2020-01-04 19:31:52 +00:00
|
|
|
if (state is TradeIsCreatedFailure) {
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
2020-01-08 12:26:34 +00:00
|
|
|
showDialog<void>(
|
2020-01-04 19:31:52 +00:00
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) {
|
|
|
|
return AlertDialog(
|
|
|
|
title: Text(S.of(context).error),
|
|
|
|
content: Text(state.error),
|
|
|
|
actions: <Widget>[
|
|
|
|
FlatButton(
|
|
|
|
child: Text(S.of(context).ok),
|
|
|
|
onPressed: () => Navigator.of(context).pop())
|
|
|
|
],
|
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
if (state is TradeIsCreatedSuccessfully) {
|
|
|
|
Navigator.of(context)
|
|
|
|
.pushNamed(Routes.exchangeConfirm, arguments: state.trade);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
reaction((_) => store.limitsState, (LimitsState state) {
|
2020-01-04 19:31:52 +00:00
|
|
|
String min;
|
|
|
|
String max;
|
|
|
|
|
|
|
|
if (state is LimitsLoadedSuccessfully) {
|
|
|
|
min = state.limits.min != null ? state.limits.min.toString() : null;
|
|
|
|
max = state.limits.max != null ? state.limits.max.toString() : null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state is LimitsLoadedFailure) {
|
|
|
|
min = '0';
|
|
|
|
max = '0';
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state is LimitsIsLoading) {
|
|
|
|
min = '...';
|
|
|
|
max = '...';
|
|
|
|
}
|
|
|
|
|
2020-04-13 16:05:27 +00:00
|
|
|
depositKey.currentState.changeLimits(min: min, max: max);
|
|
|
|
receiveKey.currentState.changeLimits(min: null, max: null);
|
2020-01-04 19:31:52 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
depositAddressController.addListener(
|
|
|
|
() => store.depositAddress = depositAddressController.text);
|
|
|
|
|
|
|
|
depositAmountController.addListener(() {
|
|
|
|
if (depositAmountController.text != store.depositAmount) {
|
|
|
|
store.changeDepositAmount(amount: depositAmountController.text);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
receiveAddressController.addListener(
|
|
|
|
() => store.receiveAddress = receiveAddressController.text);
|
|
|
|
|
|
|
|
receiveAmountController.addListener(() {
|
|
|
|
if (receiveAmountController.text != store.receiveAmount) {
|
|
|
|
store.changeReceiveAmount(amount: receiveAmountController.text);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
reaction((_) => walletStore.address, (String address) {
|
2020-01-04 19:31:52 +00:00
|
|
|
if (store.depositCurrency == CryptoCurrency.xmr) {
|
|
|
|
depositKey.currentState.changeAddress(address: address);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (store.receiveCurrency == CryptoCurrency.xmr) {
|
|
|
|
receiveKey.currentState.changeAddress(address: address);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
_isReactionsSet = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onCurrencyChange(CryptoCurrency currency, WalletStore walletStore,
|
|
|
|
GlobalKey<ExchangeCardState> key) {
|
|
|
|
final isCurrentTypeWallet = currency == walletStore.type;
|
|
|
|
|
|
|
|
key.currentState.changeSelectedCurrency(currency);
|
|
|
|
key.currentState
|
|
|
|
.changeWalletName(isCurrentTypeWallet ? walletStore.name : null);
|
|
|
|
|
|
|
|
key.currentState
|
|
|
|
.changeAddress(address: isCurrentTypeWallet ? walletStore.address : '');
|
|
|
|
|
|
|
|
key.currentState.changeAmount(amount: '');
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onWalletNameChange(WalletStore walletStore, CryptoCurrency currency,
|
|
|
|
GlobalKey<ExchangeCardState> key) {
|
|
|
|
final isCurrentTypeWallet = currency == walletStore.type;
|
|
|
|
|
|
|
|
if (isCurrentTypeWallet) {
|
|
|
|
key.currentState.changeWalletName(walletStore.name);
|
|
|
|
key.currentState.addressController.text = walletStore.address;
|
|
|
|
} else if (key.currentState.addressController.text == walletStore.address) {
|
|
|
|
key.currentState.changeWalletName(null);
|
|
|
|
key.currentState.addressController.text = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|