基础组件库
 
 
 
 
 

207 righe
5.5 KiB

  1. import 'package:flutter/cupertino.dart';
  2. import 'package:flutter/material.dart';
  3. import 'package:zhiying_base_widget/pages/security_page/models/security_style_model.dart';
  4. import 'package:zhiying_base_widget/pages/security_page/security_page_bloc.dart';
  5. import 'package:zhiying_comm/util/base_bloc.dart';
  6. import 'package:zhiying_comm/zhiying_comm.dart';
  7. import 'package:provider/provider.dart';
  8. ///
  9. /// 账号安全
  10. ///
  11. class SecurityPage extends StatefulWidget {
  12. final Map<String, dynamic> data;
  13. const SecurityPage(this.data, {Key key}) : super(key: key);
  14. @override
  15. _SecurityPageState createState() => _SecurityPageState();
  16. }
  17. class _SecurityPageState extends State<SecurityPage> {
  18. @override
  19. Widget build(BuildContext context) {
  20. return BlocProvider<SecurityPageBloc>(
  21. bloc: SecurityPageBloc(),
  22. child: _SecurityContainer(widget.data),
  23. );
  24. }
  25. }
  26. class _SecurityContainer extends StatefulWidget {
  27. final Map<String, dynamic> data;
  28. const _SecurityContainer(
  29. this.data, {
  30. Key key,
  31. }) : super(key: key);
  32. @override
  33. _SecurityContainerState createState() => _SecurityContainerState();
  34. }
  35. class _SecurityContainerState extends State<_SecurityContainer> {
  36. SecurityPageBloc _bloc;
  37. UserInfoModel _user;
  38. @override
  39. void didChangeDependencies() {
  40. _user = Provider.of<UserInfoNotifier>(context).userInfo;
  41. super.didChangeDependencies();
  42. }
  43. @override
  44. void initState() {
  45. _bloc = BlocProvider.of<SecurityPageBloc>(context);
  46. _bloc.loadData(widget.data['skip_identifier']);
  47. super.initState();
  48. }
  49. @override
  50. Widget build(BuildContext context) {
  51. return StreamBuilder<SecurityStyleModel>(
  52. stream: _bloc.outData,
  53. builder: (BuildContext context, AsyncSnapshot snapshot) {
  54. SecurityStyleModel style = snapshot.data;
  55. List<Widget> widgets = List();
  56. widgets.addAll(style?.settings?.map((item) {
  57. return _createItem(item);
  58. })?.toList() ??
  59. []);
  60. // widgets.add(_createLogout());
  61. return Scaffold(
  62. backgroundColor: Color(0xfff9f9f9),
  63. appBar: _createNav(style),
  64. body: SingleChildScrollView(
  65. child: Column(
  66. children: widgets,
  67. ),
  68. ));
  69. });
  70. }
  71. // 导航栏
  72. Widget _createNav(SecurityStyleModel style) {
  73. return CupertinoNavigationBar(
  74. border: Border(
  75. bottom: BorderSide(
  76. width: 0.0, // One physical pixel.
  77. style: BorderStyle.none,
  78. ),
  79. ),
  80. backgroundColor: HexColor.fromHex(style?.appBarBgColor ?? '#ffffff'),
  81. leading: Navigator.canPop(context)
  82. ? GestureDetector(
  83. child: Container(
  84. padding: EdgeInsets.zero,
  85. child: Icon(
  86. Icons.arrow_back_ios,
  87. size: 20,
  88. ),
  89. ),
  90. onTap: () {
  91. if (Navigator.canPop(context)) {
  92. Navigator.pop(context);
  93. }
  94. },
  95. )
  96. : Container(),
  97. middle: Text(
  98. style?.appBarName ?? '账号安全',
  99. style: TextStyle(
  100. fontSize: 15,
  101. color: HexColor.fromHex(style?.appBarNameColor ?? '#333333'),
  102. ),
  103. ),
  104. );
  105. }
  106. Widget _createItem(SecurityStyleItemModel item) {
  107. return GestureDetector(
  108. child: Container(
  109. padding: EdgeInsets.only(left: 12.5, right: 12.5),
  110. width: double.infinity,
  111. height: 50,
  112. color: Colors.white,
  113. child: Row(
  114. children: <Widget>[
  115. Expanded(
  116. child: Text(
  117. item.name,
  118. style: TextStyle(
  119. fontSize: 13,
  120. color: HexColor.fromHex(item?.nameColor ?? '#333333'),
  121. fontWeight: FontWeight.bold,
  122. ),
  123. ),
  124. ),
  125. Expanded(
  126. child: Text(
  127. item.desc ?? '',
  128. textAlign: TextAlign.right,
  129. style: TextStyle(
  130. fontSize: 13,
  131. color: HexColor.fromHex(item?.descColor ?? '#333333'),
  132. ),
  133. ),
  134. ),
  135. Icon(
  136. Icons.arrow_forward_ios,
  137. size: 14,
  138. color: Color(0xff999999),
  139. )
  140. ],
  141. ),
  142. ),
  143. onTap: () async {
  144. // 淘宝授权不跳转
  145. if(item.skipIdentifier == 'pub.flutter.account_security_toabao_auth'){
  146. if(_user == null || EmptyUtil.isEmpty(_user.token)){
  147. RouterUtil.goLogin(context);
  148. return;
  149. }
  150. if( !(_user?.isTBAuth ?? false)) {
  151. // 淘宝授权
  152. await TaobaoAuth.auth(context);
  153. }
  154. return;
  155. }
  156. await RouterUtil.route(
  157. item,
  158. Map<String, dynamic>.from(
  159. {'status': _bloc.securityStatus, 'data': item.toJson()}),
  160. context);
  161. _bloc.loadData(widget.data['skip_identifier']);
  162. },
  163. );
  164. }
  165. Widget _createLogout() {
  166. return GestureDetector(
  167. child: Container(
  168. color: Colors.white,
  169. width: double.infinity,
  170. height: 50,
  171. margin: EdgeInsets.only(top: 10),
  172. child: Center(
  173. child: Text(
  174. '账号注销',
  175. style: TextStyle(
  176. fontSize: 13,
  177. color: Color(0xffff4242),
  178. fontWeight: FontWeight.bold,
  179. ),
  180. ),
  181. ),
  182. ),
  183. onTap: () {
  184. Logger.debug('账号注销');
  185. },
  186. );
  187. }
  188. }