2020-08-26 17:31:23 +00:00
|
|
|
import 'package:cake_wallet/palette.dart';
|
2020-09-21 11:50:26 +00:00
|
|
|
import 'package:cake_wallet/entities/crypto_currency.dart';
|
|
|
|
import 'package:cake_wallet/exchange/exchange_provider_description.dart';
|
2020-08-26 17:31:23 +00:00
|
|
|
import 'package:cake_wallet/src/screens/exchange_trade/exchange_trade_item.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/exchange_trade/information_page.dart';
|
2020-08-27 19:42:28 +00:00
|
|
|
import 'package:cake_wallet/src/widgets/standart_list_row.dart';
|
2020-09-30 18:23:15 +00:00
|
|
|
import 'package:cake_wallet/utils/show_bar.dart';
|
2020-09-25 15:32:44 +00:00
|
|
|
import 'package:cake_wallet/utils/show_pop_up.dart';
|
2020-08-26 17:31:23 +00:00
|
|
|
import 'package:cake_wallet/view_model/exchange/exchange_trade_view_model.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
import 'package:mobx/mobx.dart';
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'package:flutter/services.dart';
|
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
2020-09-30 18:23:15 +00:00
|
|
|
|
2020-09-21 11:50:26 +00:00
|
|
|
// import 'package:cake_wallet/src/stores/exchange_trade/exchange_trade_store.dart';
|
|
|
|
// import 'package:cake_wallet/src/stores/send/send_store.dart';
|
|
|
|
// import 'package:cake_wallet/src/stores/send/sending_state.dart';
|
|
|
|
// import 'package:cake_wallet/src/stores/wallet/wallet_store.dart';
|
2020-05-05 17:59:56 +00:00
|
|
|
import 'package:cake_wallet/src/screens/receive/widgets/qr_image.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
import 'package:cake_wallet/src/screens/base_page.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/exchange_trade/widgets/timer_widget.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/primary_button.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/scollable_with_bottom_section.dart';
|
2020-05-15 17:38:08 +00:00
|
|
|
import 'package:cake_wallet/src/widgets/alert_with_one_action.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/alert_with_two_actions.dart';
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-09-30 18:23:15 +00:00
|
|
|
void showInformation(
|
|
|
|
ExchangeTradeViewModel exchangeTradeViewModel, BuildContext context) {
|
2020-08-26 17:31:23 +00:00
|
|
|
final fetchingLabel = S.current.fetching;
|
|
|
|
final trade = exchangeTradeViewModel.trade;
|
|
|
|
final walletName = exchangeTradeViewModel.wallet.name;
|
|
|
|
|
|
|
|
final information = exchangeTradeViewModel.isSendable
|
|
|
|
? S.current.exchange_result_confirm(
|
2020-09-30 18:23:15 +00:00
|
|
|
trade.amount ?? fetchingLabel, trade.from.toString(), walletName)
|
2020-08-26 17:31:23 +00:00
|
|
|
: S.current.exchange_result_description(
|
2020-09-30 18:23:15 +00:00
|
|
|
trade.amount ?? fetchingLabel, trade.from.toString());
|
2020-08-26 17:31:23 +00:00
|
|
|
|
2020-09-25 15:32:44 +00:00
|
|
|
showPopUp<void>(
|
2020-09-30 18:23:15 +00:00
|
|
|
context: context,
|
|
|
|
builder: (_) => InformationPage(information: information));
|
2020-08-26 17:31:23 +00:00
|
|
|
}
|
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
class ExchangeTradePage extends BasePage {
|
2020-08-26 17:31:23 +00:00
|
|
|
ExchangeTradePage({@required this.exchangeTradeViewModel});
|
|
|
|
|
|
|
|
final ExchangeTradeViewModel exchangeTradeViewModel;
|
|
|
|
|
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-08-26 17:31:23 +00:00
|
|
|
Widget trailing(BuildContext context) {
|
|
|
|
final questionImage = Image.asset('assets/images/question_mark.png',
|
|
|
|
color: Theme.of(context).primaryTextTheme.title.color);
|
|
|
|
|
|
|
|
return SizedBox(
|
|
|
|
height: 20.0,
|
|
|
|
width: 20.0,
|
|
|
|
child: ButtonTheme(
|
|
|
|
minWidth: double.minPositive,
|
|
|
|
child: FlatButton(
|
|
|
|
highlightColor: Colors.transparent,
|
|
|
|
splashColor: Colors.transparent,
|
|
|
|
padding: EdgeInsets.all(0),
|
|
|
|
onPressed: () => showInformation(exchangeTradeViewModel, context),
|
|
|
|
child: questionImage),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
2020-09-30 18:23:15 +00:00
|
|
|
Widget body(BuildContext context) =>
|
|
|
|
ExchangeTradeForm(exchangeTradeViewModel);
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class ExchangeTradeForm extends StatefulWidget {
|
2020-08-26 17:31:23 +00:00
|
|
|
ExchangeTradeForm(this.exchangeTradeViewModel);
|
|
|
|
|
|
|
|
final ExchangeTradeViewModel exchangeTradeViewModel;
|
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
@override
|
2020-01-08 12:26:34 +00:00
|
|
|
ExchangeTradeState createState() => ExchangeTradeState();
|
2020-01-04 19:31:52 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
class ExchangeTradeState extends State<ExchangeTradeForm> {
|
|
|
|
final fetchingLabel = S.current.fetching;
|
2020-09-30 18:23:15 +00:00
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
String get title => S.current.exchange;
|
|
|
|
|
|
|
|
bool _effectsInstalled = false;
|
|
|
|
|
2020-08-26 17:31:23 +00:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback(afterLayout);
|
|
|
|
}
|
|
|
|
|
|
|
|
void afterLayout(dynamic _) {
|
|
|
|
showInformation(widget.exchangeTradeViewModel, context);
|
|
|
|
}
|
|
|
|
|
2020-01-04 19:31:52 +00:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-08-27 19:42:28 +00:00
|
|
|
final copyImage = Image.asset('assets/images/copy_content.png',
|
2020-09-30 18:23:15 +00:00
|
|
|
height: 16,
|
|
|
|
width: 16,
|
2020-08-27 19:42:28 +00:00
|
|
|
color: Theme.of(context).primaryTextTheme.overline.color);
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-08-26 17:31:23 +00:00
|
|
|
//_setEffects(context);
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-05-15 17:38:08 +00:00
|
|
|
return Container(
|
|
|
|
child: ScrollableWithBottomSection(
|
2020-09-30 18:23:15 +00:00
|
|
|
contentPadding: EdgeInsets.only(top: 10, bottom: 16),
|
|
|
|
content: Observer(builder: (_) {
|
|
|
|
final trade = widget.exchangeTradeViewModel.trade;
|
2020-08-27 19:42:28 +00:00
|
|
|
|
2020-09-30 18:23:15 +00:00
|
|
|
return Column(
|
|
|
|
children: <Widget>[
|
|
|
|
trade.expiredAt != null
|
|
|
|
? Row(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: <Widget>[
|
|
|
|
Text(
|
|
|
|
S.of(context).offer_expires_in,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 14.0,
|
|
|
|
fontWeight: FontWeight.w500,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.primaryTextTheme
|
|
|
|
.overline
|
|
|
|
.color),
|
|
|
|
),
|
|
|
|
TimerWidget(trade.expiredAt,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.primaryTextTheme
|
|
|
|
.title
|
|
|
|
.color)
|
|
|
|
])
|
|
|
|
: Offstage(),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 32),
|
|
|
|
child: Row(children: <Widget>[
|
|
|
|
Spacer(flex: 3),
|
|
|
|
Flexible(
|
|
|
|
flex: 4,
|
|
|
|
child: Center(
|
|
|
|
child: AspectRatio(
|
|
|
|
aspectRatio: 1.0,
|
|
|
|
child: QrImage(
|
|
|
|
data: trade.inputAddress ?? fetchingLabel,
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
foregroundColor: Theme.of(context)
|
|
|
|
.accentTextTheme
|
|
|
|
.subtitle
|
|
|
|
.color,
|
|
|
|
)))),
|
|
|
|
Spacer(flex: 3)
|
|
|
|
]),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 16),
|
|
|
|
child: ListView.separated(
|
|
|
|
shrinkWrap: true,
|
|
|
|
physics: NeverScrollableScrollPhysics(),
|
|
|
|
itemCount: widget.exchangeTradeViewModel.items.length,
|
|
|
|
separatorBuilder: (context, index) => Container(
|
|
|
|
height: 1,
|
|
|
|
color: Theme.of(context)
|
|
|
|
.accentTextTheme
|
|
|
|
.subtitle
|
|
|
|
.backgroundColor,
|
|
|
|
),
|
|
|
|
itemBuilder: (context, index) {
|
|
|
|
final item = widget.exchangeTradeViewModel.items[index];
|
|
|
|
String value;
|
2020-08-27 19:42:28 +00:00
|
|
|
|
2020-09-30 18:23:15 +00:00
|
|
|
final content = Observer(builder: (_) {
|
|
|
|
switch (index) {
|
|
|
|
case 0:
|
|
|
|
value =
|
|
|
|
'${widget.exchangeTradeViewModel.trade.id ?? fetchingLabel}';
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
value =
|
|
|
|
'${widget.exchangeTradeViewModel.trade.amount ?? fetchingLabel}';
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
value =
|
|
|
|
'${widget.exchangeTradeViewModel.trade.state ?? fetchingLabel}';
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
value = widget.exchangeTradeViewModel.trade
|
|
|
|
.inputAddress ??
|
|
|
|
fetchingLabel;
|
|
|
|
break;
|
2020-08-27 19:42:28 +00:00
|
|
|
}
|
|
|
|
|
2020-09-30 18:23:15 +00:00
|
|
|
return StandartListRow(
|
|
|
|
title: item.title,
|
|
|
|
value: value,
|
|
|
|
valueFontSize: 14,
|
|
|
|
image: item.isCopied ? copyImage : null,
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
return item.isCopied
|
|
|
|
? Builder(
|
|
|
|
builder: (context) => GestureDetector(
|
|
|
|
onTap: () {
|
|
|
|
Clipboard.setData(
|
|
|
|
ClipboardData(text: value));
|
|
|
|
showBar<void>(context,
|
|
|
|
S.of(context).copied_to_clipboard);
|
|
|
|
},
|
|
|
|
child: content,
|
|
|
|
))
|
|
|
|
: content;
|
|
|
|
},
|
|
|
|
),
|
2020-05-15 17:38:08 +00:00
|
|
|
),
|
2020-09-30 18:23:15 +00:00
|
|
|
],
|
|
|
|
);
|
|
|
|
}),
|
|
|
|
bottomSectionPadding: EdgeInsets.fromLTRB(24, 0, 24, 24),
|
2020-10-28 17:33:04 +00:00
|
|
|
bottomSection:
|
2020-09-30 18:23:15 +00:00
|
|
|
/*Observer(
|
2020-05-15 17:38:08 +00:00
|
|
|
builder: (_) => tradeStore.trade.from == CryptoCurrency.xmr &&
|
|
|
|
!(sendStore.state is TransactionCommitted)
|
|
|
|
? LoadingPrimaryButton(
|
|
|
|
isDisabled: tradeStore.trade.inputAddress == null ||
|
|
|
|
tradeStore.trade.inputAddress.isEmpty,
|
|
|
|
isLoading: sendStore.state is CreatingTransaction ||
|
|
|
|
sendStore.state is TransactionCommitted,
|
|
|
|
onPressed: () => sendStore.createTransaction(
|
|
|
|
address: tradeStore.trade.inputAddress,
|
|
|
|
amount: tradeStore.trade.amount),
|
|
|
|
text: tradeStore.trade.provider ==
|
|
|
|
ExchangeProviderDescription.xmrto
|
|
|
|
? S.of(context).confirm
|
|
|
|
: S.of(context).send_xmr,
|
|
|
|
color: Colors.blue,
|
|
|
|
textColor: Colors.white)
|
2020-08-26 17:31:23 +00:00
|
|
|
: Offstage()),*/
|
2020-10-28 17:33:04 +00:00
|
|
|
Observer(
|
|
|
|
builder: (_) {
|
|
|
|
final trade = widget.exchangeTradeViewModel.trade;
|
|
|
|
|
|
|
|
return trade.from == CryptoCurrency.xmr
|
|
|
|
? LoadingPrimaryButton(
|
|
|
|
isDisabled: trade.inputAddress == null ||
|
|
|
|
trade.inputAddress.isEmpty,
|
|
|
|
isLoading: false, // FIXME
|
|
|
|
onPressed: () {}, // FIXME
|
|
|
|
text: trade.provider ==
|
|
|
|
ExchangeProviderDescription.xmrto
|
|
|
|
? S.of(context).confirm
|
|
|
|
: S.of(context).send_xmr,
|
|
|
|
color: Theme.of(context).accentTextTheme.body2.color,
|
|
|
|
textColor: Colors.white)
|
|
|
|
: Offstage();
|
|
|
|
})
|
2020-09-30 18:23:15 +00:00
|
|
|
),
|
2020-01-04 19:31:52 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _setEffects(BuildContext context) {
|
|
|
|
if (_effectsInstalled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2020-08-26 17:31:23 +00:00
|
|
|
/*final sendStore = Provider.of<SendStore>(context);
|
2020-01-04 19:31:52 +00:00
|
|
|
|
2020-01-08 12:26:34 +00:00
|
|
|
reaction((_) => sendStore.state, (SendingState state) {
|
2020-01-04 19:31:52 +00:00
|
|
|
if (state is SendingFailed) {
|
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
2020-09-25 15:32:44 +00:00
|
|
|
showPopUp<void>(
|
2020-01-04 19:31:52 +00:00
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) {
|
2020-05-15 17:38:08 +00:00
|
|
|
return AlertWithOneAction(
|
|
|
|
alertTitle: S.of(context).error,
|
|
|
|
alertContent: state.error,
|
|
|
|
buttonText: S.of(context).ok,
|
|
|
|
buttonAction: () => Navigator.of(context).pop()
|
2020-01-04 19:31:52 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state is TransactionCreatedSuccessfully) {
|
2020-01-13 12:34:50 +00:00
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
2020-09-25 15:32:44 +00:00
|
|
|
showPopUp<void>(
|
2020-01-13 12:34:50 +00:00
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) {
|
2020-05-15 17:38:08 +00:00
|
|
|
return AlertWithTwoActions(
|
|
|
|
alertTitle: S.of(context).confirm_sending,
|
|
|
|
alertContent: S.of(context).commit_transaction_amount_fee(
|
|
|
|
sendStore.pendingTransaction.amount,
|
|
|
|
sendStore.pendingTransaction.fee),
|
|
|
|
leftButtonText: S.of(context).ok,
|
|
|
|
rightButtonText: S.of(context).cancel,
|
|
|
|
actionLeftButton: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
sendStore.commitTransaction();
|
|
|
|
},
|
|
|
|
actionRightButton: () => Navigator.of(context).pop()
|
2020-01-13 12:34:50 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (state is TransactionCommitted) {
|
2020-01-04 19:31:52 +00:00
|
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
2020-09-25 15:32:44 +00:00
|
|
|
showPopUp<void>(
|
2020-01-04 19:31:52 +00:00
|
|
|
context: context,
|
|
|
|
builder: (BuildContext context) {
|
2020-05-15 17:38:08 +00:00
|
|
|
return AlertWithOneAction(
|
|
|
|
alertTitle: S.of(context).sending,
|
|
|
|
alertContent: S.of(context).transaction_sent,
|
|
|
|
buttonText: S.of(context).ok,
|
|
|
|
buttonAction: () => Navigator.of(context).pop()
|
2020-01-04 19:31:52 +00:00
|
|
|
);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2020-08-26 17:31:23 +00:00
|
|
|
});*/
|
2020-01-04 19:31:52 +00:00
|
|
|
|
|
|
|
_effectsInstalled = true;
|
|
|
|
}
|
|
|
|
}
|