mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-06 04:17:42 +00:00
115 lines
3.7 KiB
Dart
115 lines
3.7 KiB
Dart
import 'package:flutter/material.dart';
|
|
import 'package:flutter_riverpod/flutter_riverpod.dart';
|
|
import 'package:stackwallet/providers/exchange/changenow_initial_load_status.dart';
|
|
import 'package:stackwallet/utilities/text_styles.dart';
|
|
import 'package:stackwallet/utilities/theme/stack_colors.dart';
|
|
import 'package:stackwallet/widgets/custom_loading_overlay.dart';
|
|
import 'package:stackwallet/widgets/stack_dialog.dart';
|
|
|
|
class ExchangeLoadingOverlayView extends ConsumerStatefulWidget {
|
|
const ExchangeLoadingOverlayView({
|
|
Key? key,
|
|
required this.unawaitedLoad,
|
|
}) : super(key: key);
|
|
|
|
final VoidCallback unawaitedLoad;
|
|
|
|
@override
|
|
ConsumerState<ExchangeLoadingOverlayView> createState() =>
|
|
_ExchangeLoadingOverlayViewState();
|
|
}
|
|
|
|
class _ExchangeLoadingOverlayViewState
|
|
extends ConsumerState<ExchangeLoadingOverlayView> {
|
|
late ChangeNowLoadStatus _statusEst;
|
|
late ChangeNowLoadStatus _statusFixed;
|
|
|
|
bool userReloaded = false;
|
|
|
|
@override
|
|
void initState() {
|
|
_statusEst =
|
|
ref.read(changeNowEstimatedInitialLoadStatusStateProvider.state).state;
|
|
_statusFixed =
|
|
ref.read(changeNowFixedInitialLoadStatusStateProvider.state).state;
|
|
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
debugPrint("BUILD: $runtimeType");
|
|
|
|
ref.listen(
|
|
changeNowEstimatedInitialLoadStatusStateProvider
|
|
.select((value) => value), (previous, next) {
|
|
if (next is ChangeNowLoadStatus) {
|
|
setState(() {
|
|
_statusEst = next;
|
|
});
|
|
}
|
|
});
|
|
|
|
ref.listen(
|
|
changeNowFixedInitialLoadStatusStateProvider.select((value) => value),
|
|
(previous, next) {
|
|
if (next is ChangeNowLoadStatus) {
|
|
setState(() {
|
|
_statusFixed = next;
|
|
});
|
|
}
|
|
});
|
|
|
|
return Stack(
|
|
children: [
|
|
if (_statusEst == ChangeNowLoadStatus.loading ||
|
|
(_statusFixed == ChangeNowLoadStatus.loading && userReloaded))
|
|
Container(
|
|
color: Theme.of(context)
|
|
.extension<StackColors>()!
|
|
.overlay
|
|
.withOpacity(0.7),
|
|
child: const CustomLoadingOverlay(
|
|
message: "Loading Exchange data", eventBus: null),
|
|
),
|
|
if ((_statusEst == ChangeNowLoadStatus.failed ||
|
|
_statusFixed == ChangeNowLoadStatus.failed) &&
|
|
_statusEst != ChangeNowLoadStatus.loading &&
|
|
_statusFixed != ChangeNowLoadStatus.loading)
|
|
Container(
|
|
color: Theme.of(context)
|
|
.extension<StackColors>()!
|
|
.overlay
|
|
.withOpacity(0.7),
|
|
child: Column(
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
children: [
|
|
StackDialog(
|
|
title: "Failed to fetch Exchange data",
|
|
message:
|
|
"Exchange requires a working internet connection. Tap OK to try fetching again.",
|
|
rightButton: TextButton(
|
|
style: Theme.of(context)
|
|
.extension<StackColors>()!
|
|
.getSecondaryEnabledButtonColor(context),
|
|
child: Text(
|
|
"OK",
|
|
style: STextStyles.button(context).copyWith(
|
|
color: Theme.of(context)
|
|
.extension<StackColors>()!
|
|
.buttonTextSecondary,
|
|
),
|
|
),
|
|
onPressed: () {
|
|
userReloaded = true;
|
|
widget.unawaitedLoad();
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
}
|