membership_page.dart
10.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
import 'dart:ui';
import 'package:Parlando/apis/api_response.dart';
import 'package:Parlando/login/login_router.dart';
import 'package:Parlando/membership/models/membership_entity.dart';
import 'package:Parlando/membership/models/order_entity.dart';
import 'package:Parlando/membership/models/pay_entity.dart';
import 'package:Parlando/membership/view_models/membership_view_model.dart';
import 'package:Parlando/net/dio_utils.dart';
import 'package:Parlando/net/http_api.dart';
import 'package:Parlando/res/constant.dart';
import 'package:cached_network_image/cached_network_image.dart';
import 'package:flustars/flustars.dart';
import 'package:flutter/material.dart';
import 'package:Parlando/res/resources.dart';
import 'package:Parlando/routers/fluro_navigator.dart';
import 'package:Parlando/extension/int_extension.dart';
import 'package:Parlando/util/toast_utils.dart';
import 'package:flutter_braintree/flutter_braintree.dart';
import 'package:provider/provider.dart';
class MembershipPage extends StatefulWidget {
const MembershipPage({Key? key}) : super(key: key);
@override
MembershipPageState createState() => MembershipPageState();
}
class MembershipPageState extends State<MembershipPage>
with WidgetsBindingObserver {
bool _isLoading = false;
@override
void initState() {
super.initState();
if (SpUtil.containsKey(Constant.userToken)!) {
Provider.of<MembershipViewProvider>(context, listen: false)
.setSelectedMembership(null);
Provider.of<MembershipViewProvider>(context, listen: false)
.fetchMembershipData('0');
} else {
NavigatorUtils.push(context, LoginRouter.loginPage, replace: true);
}
}
@override
Widget build(BuildContext context) {
ApiResponse apiResponse =
Provider.of<MembershipViewProvider>(context).response;
switch (apiResponse.status) {
case Status.LOADING:
return const Center(child: CircularProgressIndicator());
case Status.COMPLETED:
MembershipData mb = apiResponse.data as MembershipData;
return SafeArea(
child: Scaffold(
backgroundColor: Colors.black,
body: Container(
alignment: Alignment.topCenter,
decoration: BoxDecoration(
image: DecorationImage(
image: CachedNetworkImageProvider(mb.bgImages!),
fit: BoxFit.fill,
),
),
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Container(
alignment: Alignment.centerLeft,
child: IconButton(
onPressed: () {
NavigatorUtils.goBack(context);
},
icon: const Icon(
Icons.arrow_back_ios,
color: Colors.white,
),
),
),
const Spacer(),
Container(
margin: EdgeInsets.symmetric(
vertical: 60.px, horizontal: 20.px),
height: MediaQuery.of(context).size.height / 2,
width: double.infinity,
decoration: BoxDecoration(
color: Colors.grey.shade200.withOpacity(0.1),
border: Border.all(
color: Colors.grey.shade50,
width: 0.5,
), // 边色与边宽度
),
child: ClipRect(
child: BackdropFilter(
filter: ImageFilter.blur(
sigmaX: 10.0,
sigmaY: 10.0,
),
child: Container(
decoration: BoxDecoration(
color: Colors.grey.shade200.withOpacity(0.1),
),
child: Padding(
padding: EdgeInsets.all(10.px),
child: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Text(
mb.title!,
style: TextStyle(
fontSize: 18.px,
color: Colors.white,
),
),
Gaps.vGap24,
// TODO 如果会员则显示会员详情
Expanded(
child: ListView.builder(
itemExtent: 48.0,
itemBuilder: (_, index) {
return _buildItem(mb.goodsList![index]);
},
itemCount: mb.goodsList!.length,
),
),
Gaps.vGap24,
Text(
mb.intro!,
style: TextStyle(
fontSize: 14.px,
color: Colors.white,
),
),
Gaps.vGap10,
Row(
mainAxisAlignment:
MainAxisAlignment.spaceBetween,
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
TextButton(
onPressed: () {},
child: Text(
"服务协议",
style: TextStyle(
fontSize: 14.px,
color: Colors.white,
),
),
),
Container(
width: 0.6,
height: 15.0,
color: Colours.line,
),
TextButton(
onPressed: () {},
child: Text(
"隐私政策",
style: TextStyle(
fontSize: 14.px,
color: Colors.white,
),
),
),
Container(
width: 0.6,
height: 15.0,
color: Colours.line,
),
TextButton(
onPressed: () {},
child: Text(
"恢复购买",
style: TextStyle(
fontSize: 14.px,
color: Colors.white,
),
),
),
],
),
],
),
),
),
),
),
),
],
),
),
),
);
case Status.ERROR:
return Center(
child: Text('暂时无法获取数据,请稍候再试!${apiResponse.message}'),
);
case Status.INITIAL:
default:
return const Center(
child: Text('正在获取数据....'),
);
}
}
Widget _buildItem(MembershipDataGoodsList goods) {
return Flex(
direction: Axis.horizontal,
children: [
Text(
goods.name!,
style: const TextStyle(
color: Colors.white,
fontSize: 15.0,
),
),
Gaps.hGap10,
Expanded(
flex: 1,
child: Align(
alignment: Alignment.centerRight,
child: Text(
goods.price!,
style: const TextStyle(
color: Colors.white,
fontSize: 15.0,
),
),
),
),
Gaps.hGap32,
ElevatedButton(
child: const Text(
"开通",
style: TextStyle(color: Colors.white, fontSize: 15.0),
),
onPressed: () {
DioUtils.instance.requestNetwork<OrderEntity>(
Method.post,
HttpApi.order,
params: {'goods_id': goods.id},
onSuccess: (data) {
String orderSn = data!.data!.orderSn!;
DioUtils.instance.requestNetwork<PayEntity>(
Method.get,
"${HttpApi.pay}?order_sn=$orderSn&pay_type=paypal",
params: [],
onSuccess: (data) {
String id = data!.data!.id!;
payPalRequest(id);
_isLoading = false;
},
onError: (code, msg) {
Toast.show(msg.toString());
_isLoading = false;
setState(() {});
},
);
_isLoading = false;
},
onError: (code, msg) {
Toast.show(msg.toString());
_isLoading = false;
setState(() {});
},
);
},
),
],
);
}
Future<void> payPalRequest(String key) async {
final request = BraintreePayPalRequest(
amount: '0.01',
currencyCode: 'CNY',
billingAgreementDescription: '贝宝支付很无敌',
);
BraintreePaymentMethodNonce? result = await Braintree.requestPaypalNonce(
key,
request,
);
if (result != null) {
print('Nonce: ${result.nonce}');
} else {
print('PayPal flow was canceled.');
}
}
@override
void didChangeAppLifecycleState(AppLifecycleState state) {}
@override
void dispose() {
super.dispose();
}
}