2021-10-01 15:13:10 +00:00
|
|
|
import 'package:cake_wallet/palette.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/yat/widgets/first_introduction.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/yat/widgets/second_introduction.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/yat/widgets/third_introduction.dart';
|
|
|
|
import 'package:cake_wallet/src/screens/yat/widgets/yat_close_button.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/alert_background.dart';
|
|
|
|
import 'package:cake_wallet/src/widgets/primary_button.dart';
|
|
|
|
import 'package:cake_wallet/store/yat/yat_store.dart';
|
|
|
|
import 'package:cake_wallet/view_model/dashboard/dashboard_view_model.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:animate_do/animate_do.dart';
|
|
|
|
import 'package:flutter_mobx/flutter_mobx.dart';
|
|
|
|
import 'package:url_launcher/url_launcher.dart';
|
2021-10-05 11:43:37 +00:00
|
|
|
import 'package:cake_wallet/generated/i18n.dart';
|
2021-10-01 15:13:10 +00:00
|
|
|
|
|
|
|
class YatPopup extends StatelessWidget {
|
|
|
|
YatPopup({this.dashboardViewModel, this.onClose})
|
2021-10-04 13:03:35 +00:00
|
|
|
: baseUrl = YatLink.isDevMode
|
|
|
|
? YatLink.baseDevUrl
|
|
|
|
: YatLink.baseReleaseUrl;
|
2021-10-01 15:13:10 +00:00
|
|
|
|
|
|
|
static const durationInMilliseconds = 250;
|
|
|
|
|
|
|
|
final DashboardViewModel dashboardViewModel;
|
|
|
|
final VoidCallback onClose;
|
|
|
|
final String baseUrl;
|
|
|
|
final image = Image.asset('assets/images/emoji_popup.png');
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
final screenWidth = MediaQuery.of(context).size.width;
|
|
|
|
|
|
|
|
return Stack(
|
|
|
|
clipBehavior: Clip.none,
|
|
|
|
alignment: Alignment.bottomCenter,
|
|
|
|
children: [
|
|
|
|
AlertBackground(
|
|
|
|
child: Container()
|
|
|
|
),
|
|
|
|
SlideInUp(
|
|
|
|
from: 420,
|
|
|
|
duration: Duration(milliseconds: durationInMilliseconds),
|
|
|
|
child: ClipRRect(
|
|
|
|
borderRadius: BorderRadius.only(
|
|
|
|
topLeft: Radius.circular(24),
|
|
|
|
topRight: Radius.circular(24)),
|
|
|
|
child: Container(
|
|
|
|
height: 420,
|
|
|
|
color: Colors.white,
|
|
|
|
padding: EdgeInsets.fromLTRB(24, 15, 24, 24),
|
|
|
|
child: Column(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
|
|
|
Column(
|
|
|
|
children: [
|
|
|
|
Row(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
|
|
children: [
|
|
|
|
YatCloseButton(onClose: onClose)
|
|
|
|
]
|
|
|
|
),
|
|
|
|
Row(
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
height: 64,
|
|
|
|
width: 165,
|
|
|
|
alignment: Alignment.center,
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: Colors.white,
|
|
|
|
borderRadius: BorderRadius
|
|
|
|
.all(Radius.circular(32)),
|
|
|
|
boxShadow: [
|
|
|
|
BoxShadow(
|
|
|
|
color: Colors.black.withOpacity(0.05),
|
|
|
|
blurRadius: 15,
|
|
|
|
offset: Offset(0, 5)
|
|
|
|
)
|
|
|
|
]
|
|
|
|
),
|
|
|
|
child: image
|
|
|
|
)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
]
|
|
|
|
),
|
|
|
|
Container(
|
|
|
|
padding: EdgeInsets.only(left: 6, right: 6),
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
Text(
|
2021-10-05 11:43:37 +00:00
|
|
|
S.of(context).yat_popup_title,
|
2021-10-01 15:13:10 +00:00
|
|
|
textAlign: TextAlign.center,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 24,
|
|
|
|
fontWeight: FontWeight.bold,
|
|
|
|
fontFamily: 'Lato',
|
|
|
|
color: Colors.black,
|
|
|
|
decoration: TextDecoration.none,
|
|
|
|
)
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.only(top: 20),
|
|
|
|
child: Text(
|
2021-10-05 11:43:37 +00:00
|
|
|
S.of(context).yat_popup_content,
|
2021-10-01 15:13:10 +00:00
|
|
|
textAlign: TextAlign.center,
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: 16,
|
|
|
|
fontWeight: FontWeight.normal,
|
|
|
|
fontFamily: 'Lato',
|
|
|
|
color: Colors.black,
|
|
|
|
decoration: TextDecoration.none,
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
),
|
|
|
|
PrimaryButton(
|
2021-10-05 11:43:37 +00:00
|
|
|
text: S.of(context).learn_more,
|
2021-10-01 15:13:10 +00:00
|
|
|
textColor: Colors.white,
|
|
|
|
color: Palette.protectiveBlue,
|
|
|
|
onPressed: () => dashboardViewModel
|
|
|
|
.isShowFirstYatIntroduction = true
|
|
|
|
)
|
|
|
|
],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Observer(builder: (_) => dashboardViewModel.isShowFirstYatIntroduction
|
|
|
|
? SlideInRight(
|
|
|
|
from: screenWidth,
|
|
|
|
duration: Duration(milliseconds: durationInMilliseconds),
|
|
|
|
child: FirstIntroduction(
|
|
|
|
onClose: onClose,
|
|
|
|
onNext: () => dashboardViewModel
|
|
|
|
.isShowSecondYatIntroduction = true
|
|
|
|
))
|
|
|
|
: Container()
|
|
|
|
),
|
|
|
|
Observer(builder: (_) => dashboardViewModel.isShowSecondYatIntroduction
|
|
|
|
? SlideInRight(
|
|
|
|
from: screenWidth,
|
|
|
|
duration: Duration(milliseconds: durationInMilliseconds),
|
|
|
|
child: SecondIntroduction(
|
|
|
|
onClose: onClose,
|
|
|
|
onNext: () => dashboardViewModel
|
|
|
|
.isShowThirdYatIntroduction = true
|
|
|
|
))
|
|
|
|
: Container()
|
|
|
|
),
|
|
|
|
Observer(builder: (_) => dashboardViewModel.isShowThirdYatIntroduction
|
|
|
|
? SlideInRight(
|
|
|
|
from: screenWidth,
|
|
|
|
duration: Duration(milliseconds: durationInMilliseconds),
|
|
|
|
child: ThirdIntroduction(
|
|
|
|
onClose: onClose,
|
|
|
|
onGet: () {
|
2021-11-02 09:17:24 +00:00
|
|
|
var createNewYatUrl = YatLink.startFlowUrl;
|
|
|
|
final createNewYatUrlParameters = dashboardViewModel.
|
|
|
|
yatStore.defineQueryParameters();
|
|
|
|
|
|
|
|
if (createNewYatUrlParameters.isNotEmpty) {
|
|
|
|
createNewYatUrl += '?sub1=' + createNewYatUrlParameters;
|
|
|
|
}
|
|
|
|
|
|
|
|
launch(createNewYatUrl, forceSafariVC: false);
|
2021-10-01 15:13:10 +00:00
|
|
|
},
|
|
|
|
onConnect: () {
|
2021-10-04 13:03:35 +00:00
|
|
|
String url = baseUrl + YatLink.signInSuffix;
|
2021-10-01 15:13:10 +00:00
|
|
|
final parameters = dashboardViewModel
|
|
|
|
.yatStore.defineQueryParameters();
|
|
|
|
if (parameters.isNotEmpty) {
|
2021-10-04 13:03:35 +00:00
|
|
|
url += YatLink.queryParameter + parameters;
|
2021-10-01 15:13:10 +00:00
|
|
|
}
|
2021-11-02 09:17:24 +00:00
|
|
|
launch(url, forceSafariVC: false);
|
2021-10-01 15:13:10 +00:00
|
|
|
}
|
|
|
|
))
|
|
|
|
: Container()
|
|
|
|
)
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|