mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-01-23 19:05:51 +00:00
desktop trade steps 3 and 4 mostly laid out
This commit is contained in:
parent
648c896b9e
commit
c9e2c4abb7
3 changed files with 295 additions and 31 deletions
|
@ -18,7 +18,6 @@ import 'package:stackwallet/utilities/assets.dart';
|
||||||
import 'package:stackwallet/utilities/clipboard_interface.dart';
|
import 'package:stackwallet/utilities/clipboard_interface.dart';
|
||||||
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
||||||
import 'package:stackwallet/utilities/enums/fee_rate_type_enum.dart';
|
import 'package:stackwallet/utilities/enums/fee_rate_type_enum.dart';
|
||||||
import 'package:stackwallet/utilities/enums/flush_bar_type.dart';
|
|
||||||
import 'package:stackwallet/utilities/format.dart';
|
import 'package:stackwallet/utilities/format.dart';
|
||||||
import 'package:stackwallet/utilities/text_styles.dart';
|
import 'package:stackwallet/utilities/text_styles.dart';
|
||||||
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
||||||
|
|
|
@ -1,13 +1,135 @@
|
||||||
|
import 'dart:async';
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
import 'package:stackwallet/models/exchange/incomplete_exchange.dart';
|
||||||
|
import 'package:stackwallet/models/exchange/response_objects/trade.dart';
|
||||||
|
import 'package:stackwallet/pages/exchange_view/exchange_step_views/step_4_view.dart';
|
||||||
|
import 'package:stackwallet/pages/exchange_view/sub_widgets/exchange_rate_sheet.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/desktop_exchange/exchange_steps/subwidgets/desktop_step_item.dart';
|
import 'package:stackwallet/pages_desktop_specific/desktop_exchange/exchange_steps/subwidgets/desktop_step_item.dart';
|
||||||
|
import 'package:stackwallet/providers/exchange/current_exchange_name_state_provider.dart';
|
||||||
|
import 'package:stackwallet/providers/exchange/exchange_provider.dart';
|
||||||
|
import 'package:stackwallet/providers/global/trades_service_provider.dart';
|
||||||
|
import 'package:stackwallet/services/exchange/exchange_response.dart';
|
||||||
|
import 'package:stackwallet/services/notifications_api.dart';
|
||||||
|
import 'package:stackwallet/utilities/assets.dart';
|
||||||
import 'package:stackwallet/utilities/text_styles.dart';
|
import 'package:stackwallet/utilities/text_styles.dart';
|
||||||
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
||||||
|
import 'package:stackwallet/widgets/custom_loading_overlay.dart';
|
||||||
import 'package:stackwallet/widgets/desktop/primary_button.dart';
|
import 'package:stackwallet/widgets/desktop/primary_button.dart';
|
||||||
import 'package:stackwallet/widgets/desktop/secondary_button.dart';
|
import 'package:stackwallet/widgets/desktop/secondary_button.dart';
|
||||||
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
||||||
|
import 'package:stackwallet/widgets/stack_dialog.dart';
|
||||||
|
|
||||||
class DesktopStep3 extends StatelessWidget {
|
class DesktopStep3 extends ConsumerStatefulWidget {
|
||||||
const DesktopStep3({Key? key}) : super(key: key);
|
const DesktopStep3({
|
||||||
|
Key? key,
|
||||||
|
required this.model,
|
||||||
|
}) : super(key: key);
|
||||||
|
|
||||||
|
final IncompleteExchangeModel model;
|
||||||
|
|
||||||
|
@override
|
||||||
|
ConsumerState<DesktopStep3> createState() => _DesktopStep3State();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _DesktopStep3State extends ConsumerState<DesktopStep3> {
|
||||||
|
late final IncompleteExchangeModel model;
|
||||||
|
|
||||||
|
Future<void> createTrade() async {
|
||||||
|
unawaited(
|
||||||
|
showDialog<void>(
|
||||||
|
context: context,
|
||||||
|
barrierDismissible: false,
|
||||||
|
builder: (_) => WillPopScope(
|
||||||
|
onWillPop: () async => false,
|
||||||
|
child: Container(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.extension<StackColors>()!
|
||||||
|
.overlay
|
||||||
|
.withOpacity(0.6),
|
||||||
|
child: const CustomLoadingOverlay(
|
||||||
|
message: "Creating a trade",
|
||||||
|
eventBus: null,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
);
|
||||||
|
|
||||||
|
final ExchangeResponse<Trade> response =
|
||||||
|
await ref.read(exchangeProvider).createTrade(
|
||||||
|
from: model.sendTicker,
|
||||||
|
to: model.receiveTicker,
|
||||||
|
fixedRate: model.rateType != ExchangeRateType.estimated,
|
||||||
|
amount: model.reversed ? model.receiveAmount : model.sendAmount,
|
||||||
|
addressTo: model.recipientAddress!,
|
||||||
|
extraId: null,
|
||||||
|
addressRefund: model.refundAddress!,
|
||||||
|
refundExtraId: "",
|
||||||
|
rateId: model.rateId,
|
||||||
|
reversed: model.reversed,
|
||||||
|
);
|
||||||
|
|
||||||
|
if (response.value == null) {
|
||||||
|
if (mounted) {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
}
|
||||||
|
|
||||||
|
unawaited(showDialog<void>(
|
||||||
|
context: context,
|
||||||
|
barrierDismissible: true,
|
||||||
|
builder: (_) => StackDialog(
|
||||||
|
title: "Failed to create trade",
|
||||||
|
message: response.exception?.toString(),
|
||||||
|
),
|
||||||
|
));
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// save trade to hive
|
||||||
|
await ref.read(tradesServiceProvider).add(
|
||||||
|
trade: response.value!,
|
||||||
|
shouldNotifyListeners: true,
|
||||||
|
);
|
||||||
|
|
||||||
|
String status = response.value!.status;
|
||||||
|
|
||||||
|
model.trade = response.value!;
|
||||||
|
|
||||||
|
// extra info if status is waiting
|
||||||
|
if (status == "Waiting") {
|
||||||
|
status += " for deposit";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mounted) {
|
||||||
|
Navigator.of(context).pop();
|
||||||
|
}
|
||||||
|
|
||||||
|
unawaited(NotificationApi.showNotification(
|
||||||
|
changeNowId: model.trade!.tradeId,
|
||||||
|
title: status,
|
||||||
|
body: "Trade ID ${model.trade!.tradeId}",
|
||||||
|
walletId: "",
|
||||||
|
iconAssetName: Assets.svg.arrowRotate,
|
||||||
|
date: model.trade!.timestamp,
|
||||||
|
shouldWatchForUpdates: true,
|
||||||
|
coinName: "coinName",
|
||||||
|
));
|
||||||
|
|
||||||
|
if (mounted) {
|
||||||
|
unawaited(Navigator.of(context).pushNamed(
|
||||||
|
Step4View.routeName,
|
||||||
|
arguments: model,
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
model = widget.model;
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
@ -25,33 +147,55 @@ class DesktopStep3 extends StatelessWidget {
|
||||||
padding: const EdgeInsets.all(0),
|
padding: const EdgeInsets.all(0),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
const DesktopStepItem(
|
DesktopStepItem(
|
||||||
label: "Exchange",
|
label: "Exchange",
|
||||||
value: "lol",
|
value: ref.watch(currentExchangeNameStateProvider.state).state,
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
height: 1,
|
height: 1,
|
||||||
color: Theme.of(context).extension<StackColors>()!.background,
|
color: Theme.of(context).extension<StackColors>()!.background,
|
||||||
),
|
),
|
||||||
const DesktopStepItem(
|
DesktopStepItem(
|
||||||
label: "You send",
|
label: "You send",
|
||||||
value: "lol",
|
value:
|
||||||
|
"${model.sendAmount.toStringAsFixed(8)} ${model.sendTicker.toUpperCase()}",
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
height: 1,
|
height: 1,
|
||||||
color: Theme.of(context).extension<StackColors>()!.background,
|
color: Theme.of(context).extension<StackColors>()!.background,
|
||||||
),
|
),
|
||||||
const DesktopStepItem(
|
DesktopStepItem(
|
||||||
label: "You receive",
|
label: "You receive",
|
||||||
value: "lol",
|
value:
|
||||||
|
"~${model.receiveAmount.toStringAsFixed(8)} ${model.receiveTicker.toUpperCase()}",
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
height: 1,
|
height: 1,
|
||||||
color: Theme.of(context).extension<StackColors>()!.background,
|
color: Theme.of(context).extension<StackColors>()!.background,
|
||||||
),
|
),
|
||||||
const DesktopStepItem(
|
DesktopStepItem(
|
||||||
label: "Rate",
|
label: model.rateType == ExchangeRateType.estimated
|
||||||
value: "lol",
|
? "Estimated rate"
|
||||||
|
: "Fixed rate",
|
||||||
|
value: model.rateInfo,
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
height: 1,
|
||||||
|
color: Theme.of(context).extension<StackColors>()!.background,
|
||||||
|
),
|
||||||
|
DesktopStepItem(
|
||||||
|
vertical: true,
|
||||||
|
label: "Recipient ${model.receiveTicker.toUpperCase()} address",
|
||||||
|
value: model.recipientAddress!,
|
||||||
|
),
|
||||||
|
Container(
|
||||||
|
height: 1,
|
||||||
|
color: Theme.of(context).extension<StackColors>()!.background,
|
||||||
|
),
|
||||||
|
DesktopStepItem(
|
||||||
|
vertical: true,
|
||||||
|
label: "Refund ${model.sendTicker.toUpperCase()} address",
|
||||||
|
value: model.refundAddress!,
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
@ -77,9 +221,7 @@ class DesktopStep3 extends StatelessWidget {
|
||||||
child: PrimaryButton(
|
child: PrimaryButton(
|
||||||
label: "Confirm",
|
label: "Confirm",
|
||||||
buttonHeight: ButtonHeight.l,
|
buttonHeight: ButtonHeight.l,
|
||||||
onPressed: () {
|
onPressed: createTrade,
|
||||||
// todo
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
|
|
|
@ -1,64 +1,187 @@
|
||||||
|
import 'dart:async';
|
||||||
|
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
||||||
|
import 'package:stackwallet/models/exchange/incomplete_exchange.dart';
|
||||||
import 'package:stackwallet/pages_desktop_specific/desktop_exchange/exchange_steps/subwidgets/desktop_step_item.dart';
|
import 'package:stackwallet/pages_desktop_specific/desktop_exchange/exchange_steps/subwidgets/desktop_step_item.dart';
|
||||||
|
import 'package:stackwallet/providers/providers.dart';
|
||||||
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
||||||
import 'package:stackwallet/utilities/text_styles.dart';
|
import 'package:stackwallet/utilities/text_styles.dart';
|
||||||
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
||||||
import 'package:stackwallet/widgets/desktop/primary_button.dart';
|
import 'package:stackwallet/widgets/desktop/primary_button.dart';
|
||||||
import 'package:stackwallet/widgets/desktop/secondary_button.dart';
|
import 'package:stackwallet/widgets/desktop/secondary_button.dart';
|
||||||
|
import 'package:stackwallet/widgets/rounded_container.dart';
|
||||||
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
import 'package:stackwallet/widgets/rounded_white_container.dart';
|
||||||
|
|
||||||
class DesktopStep4 extends StatelessWidget {
|
class DesktopStep4 extends ConsumerStatefulWidget {
|
||||||
const DesktopStep4({Key? key}) : super(key: key);
|
const DesktopStep4({
|
||||||
|
Key? key,
|
||||||
|
required this.model,
|
||||||
|
}) : super(key: key);
|
||||||
|
|
||||||
|
final IncompleteExchangeModel model;
|
||||||
|
|
||||||
|
@override
|
||||||
|
ConsumerState<DesktopStep4> createState() => _DesktopStep4State();
|
||||||
|
}
|
||||||
|
|
||||||
|
class _DesktopStep4State extends ConsumerState<DesktopStep4> {
|
||||||
|
late final IncompleteExchangeModel model;
|
||||||
|
|
||||||
|
String _statusString = "New";
|
||||||
|
|
||||||
|
Timer? _statusTimer;
|
||||||
|
|
||||||
|
bool _isWalletCoinAndHasWallet(String ticker) {
|
||||||
|
try {
|
||||||
|
final coin = coinFromTickerCaseInsensitive(ticker);
|
||||||
|
return ref
|
||||||
|
.read(walletsChangeNotifierProvider)
|
||||||
|
.managers
|
||||||
|
.where((element) => element.coin == coin)
|
||||||
|
.isNotEmpty;
|
||||||
|
} catch (_) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Future<void> _updateStatus() async {
|
||||||
|
final statusResponse =
|
||||||
|
await ref.read(exchangeProvider).updateTrade(model.trade!);
|
||||||
|
String status = "Waiting";
|
||||||
|
if (statusResponse.value != null) {
|
||||||
|
status = statusResponse.value!.status;
|
||||||
|
}
|
||||||
|
|
||||||
|
// extra info if status is waiting
|
||||||
|
if (status == "Waiting") {
|
||||||
|
status += " for deposit";
|
||||||
|
}
|
||||||
|
|
||||||
|
if (mounted) {
|
||||||
|
setState(() {
|
||||||
|
_statusString = status;
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void initState() {
|
||||||
|
model = widget.model;
|
||||||
|
|
||||||
|
_statusTimer = Timer.periodic(const Duration(seconds: 60), (_) {
|
||||||
|
_updateStatus();
|
||||||
|
});
|
||||||
|
|
||||||
|
super.initState();
|
||||||
|
}
|
||||||
|
|
||||||
|
@override
|
||||||
|
void dispose() {
|
||||||
|
_statusTimer?.cancel();
|
||||||
|
_statusTimer = null;
|
||||||
|
super.dispose();
|
||||||
|
}
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Column(
|
return Column(
|
||||||
children: [
|
children: [
|
||||||
Text(
|
Text(
|
||||||
"Confirm amount",
|
"Send ${model.sendTicker.toUpperCase()} to the address below",
|
||||||
style: STextStyles.desktopTextMedium(context),
|
style: STextStyles.desktopTextMedium(context),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 8,
|
height: 8,
|
||||||
),
|
),
|
||||||
Text(
|
Text(
|
||||||
"Network fees and other exchange charges are included in the rate.",
|
"Send ${model.sendTicker.toUpperCase()} to the address below. Once it is received, ${model.trade!.exchangeName} will send the ${model.receiveTicker.toUpperCase()} to the recipient address you provided. You can find this trade details and check its status in the list of trades.",
|
||||||
style: STextStyles.desktopTextExtraExtraSmall(context),
|
style: STextStyles.desktopTextExtraExtraSmall(context),
|
||||||
),
|
),
|
||||||
const SizedBox(
|
const SizedBox(
|
||||||
height: 20,
|
height: 20,
|
||||||
),
|
),
|
||||||
|
RoundedContainer(
|
||||||
|
color: Theme.of(context).extension<StackColors>()!.warningBackground,
|
||||||
|
child: RichText(
|
||||||
|
text: TextSpan(
|
||||||
|
text:
|
||||||
|
"You must send at least ${model.sendAmount.toString()} ${model.sendTicker}. ",
|
||||||
|
style: STextStyles.label700(context).copyWith(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.extension<StackColors>()!
|
||||||
|
.warningForeground,
|
||||||
|
fontSize: 14,
|
||||||
|
),
|
||||||
|
children: [
|
||||||
|
TextSpan(
|
||||||
|
text:
|
||||||
|
"If you send less than ${model.sendAmount.toString()} ${model.sendTicker}, your transaction may not be converted and it may not be refunded.",
|
||||||
|
style: STextStyles.label(context).copyWith(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.extension<StackColors>()!
|
||||||
|
.warningForeground,
|
||||||
|
fontSize: 14,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
const SizedBox(
|
||||||
|
height: 20,
|
||||||
|
),
|
||||||
RoundedWhiteContainer(
|
RoundedWhiteContainer(
|
||||||
borderColor: Theme.of(context).extension<StackColors>()!.background,
|
borderColor: Theme.of(context).extension<StackColors>()!.background,
|
||||||
padding: const EdgeInsets.all(0),
|
padding: const EdgeInsets.all(0),
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
const DesktopStepItem(
|
DesktopStepItem(
|
||||||
label: "Exchange",
|
vertical: true,
|
||||||
value: "lol",
|
label: "Send ${model.sendTicker.toUpperCase()} to this address",
|
||||||
|
value: model.trade!.payInAddress,
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
height: 1,
|
height: 1,
|
||||||
color: Theme.of(context).extension<StackColors>()!.background,
|
color: Theme.of(context).extension<StackColors>()!.background,
|
||||||
),
|
),
|
||||||
const DesktopStepItem(
|
DesktopStepItem(
|
||||||
label: "You send",
|
label: "Amount",
|
||||||
value: "lol",
|
value:
|
||||||
|
"${model.sendAmount.toString()} ${model.sendTicker.toUpperCase()}",
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
height: 1,
|
height: 1,
|
||||||
color: Theme.of(context).extension<StackColors>()!.background,
|
color: Theme.of(context).extension<StackColors>()!.background,
|
||||||
),
|
),
|
||||||
const DesktopStepItem(
|
DesktopStepItem(
|
||||||
label: "You receive",
|
label: "Trade ID",
|
||||||
value: "lol",
|
value: model.trade!.tradeId,
|
||||||
),
|
),
|
||||||
Container(
|
Container(
|
||||||
height: 1,
|
height: 1,
|
||||||
color: Theme.of(context).extension<StackColors>()!.background,
|
color: Theme.of(context).extension<StackColors>()!.background,
|
||||||
),
|
),
|
||||||
const DesktopStepItem(
|
Padding(
|
||||||
label: "Rate",
|
padding: const EdgeInsets.all(16),
|
||||||
value: "lol",
|
child: Row(
|
||||||
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||||||
|
children: [
|
||||||
|
Text(
|
||||||
|
"Status",
|
||||||
|
style: STextStyles.desktopTextExtraExtraSmall(context),
|
||||||
|
),
|
||||||
|
Text(
|
||||||
|
_statusString,
|
||||||
|
style: STextStyles.desktopTextExtraExtraSmall(context)
|
||||||
|
.copyWith(
|
||||||
|
color: Theme.of(context)
|
||||||
|
.extension<StackColors>()!
|
||||||
|
.colorForStatus(_statusString),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in a new issue