bookshelf_scene.dart 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter/services.dart';
  3. import 'package:shuqi/public.dart';
  4. import 'bookshelf_item_view.dart';
  5. import 'bookshelf_header.dart';
  6. class BookshelfScene extends StatefulWidget {
  7. @override
  8. State<StatefulWidget> createState() => BookshelfState();
  9. }
  10. class BookshelfState extends State<BookshelfScene> with RouteAware {
  11. List<Novel> favoriteNovels = [];
  12. ScrollController scrollController = ScrollController();
  13. double navAlpha = 0;
  14. @override
  15. void initState() {
  16. super.initState();
  17. fetchData();
  18. scrollController.addListener(() {
  19. var offset = scrollController.offset;
  20. if (offset < 0) {
  21. if (navAlpha != 0) {
  22. setState(() {
  23. navAlpha = 0;
  24. });
  25. }
  26. } else if (offset < 50) {
  27. setState(() {
  28. navAlpha = 1 - (50 - offset) / 50;
  29. });
  30. } else if (navAlpha != 1) {
  31. setState(() {
  32. navAlpha = 1;
  33. });
  34. }
  35. });
  36. }
  37. Future<void> fetchData() async {
  38. try {
  39. List<Novel> favoriteNovels = [];
  40. List<dynamic> favoriteResponse = await Request.get(action: 'bookshelf');
  41. favoriteResponse.forEach((data) {
  42. favoriteNovels.add(Novel.fromJson(data));
  43. });
  44. setState(() {
  45. this.favoriteNovels = favoriteNovels;
  46. });
  47. } catch (e) {
  48. Toast.show(e.toString());
  49. }
  50. }
  51. Widget buildActions(Color iconColor) {
  52. return Row(children: <Widget>[
  53. Container(
  54. height: kToolbarHeight,
  55. width: 44,
  56. child: Image.asset('img/actionbar_checkin.png', color: iconColor),
  57. ),
  58. Container(
  59. height: kToolbarHeight,
  60. width: 44,
  61. child: Image.asset('img/actionbar_search.png', color: iconColor),
  62. ),
  63. SizedBox(width: 15)
  64. ]);
  65. }
  66. Widget buildNavigationBar() {
  67. return Stack(
  68. children: <Widget>[
  69. Positioned(
  70. right: 0,
  71. child: Container(
  72. margin: EdgeInsets.fromLTRB(5, Screen.topSafeHeight, 0, 0),
  73. child: buildActions(SQColor.white),
  74. ),
  75. ),
  76. Opacity(
  77. opacity: navAlpha,
  78. child: Container(
  79. padding: EdgeInsets.fromLTRB(5, Screen.topSafeHeight, 0, 0),
  80. height: Screen.navigationBarHeight,
  81. color: SQColor.white,
  82. child: Row(
  83. children: <Widget>[
  84. SizedBox(width: 103),
  85. Expanded(
  86. child: Text(
  87. '书架',
  88. style: TextStyle(fontSize: 17, fontWeight: FontWeight.bold),
  89. textAlign: TextAlign.center,
  90. ),
  91. ),
  92. buildActions(SQColor.darkGray),
  93. ],
  94. ),
  95. ),
  96. )
  97. ],
  98. );
  99. }
  100. Widget buildFavoriteView() {
  101. if (favoriteNovels.length <= 1) {
  102. return Container();
  103. }
  104. List<Widget> children = [];
  105. var novels = favoriteNovels.sublist(1);
  106. novels.forEach((novel) {
  107. children.add(BookshelfItemView(novel));
  108. });
  109. var width = (Screen.width - 15 * 2 - 24 * 2) / 3;
  110. children.add(GestureDetector(
  111. onTap: () {
  112. eventBus.emit(EventToggleTabBarIndex, 1);
  113. },
  114. child: Container(
  115. color: SQColor.paper,
  116. width: width,
  117. height: width / 0.75,
  118. child: Image.asset('img/bookshelf_add.png'),
  119. ),
  120. ));
  121. return Container(
  122. padding: EdgeInsets.fromLTRB(15, 20, 15, 15),
  123. child: Wrap(
  124. spacing: 23,
  125. children: children,
  126. ),
  127. );
  128. }
  129. @override
  130. Widget build(BuildContext context) {
  131. return Scaffold(
  132. backgroundColor: SQColor.white,
  133. body: AnnotatedRegion(
  134. value: navAlpha > 0.5 ? SystemUiOverlayStyle.dark : SystemUiOverlayStyle.light,
  135. child: Stack(children: [
  136. RefreshIndicator(
  137. onRefresh: fetchData,
  138. child: ListView(
  139. padding: EdgeInsets.only(top: 0),
  140. controller: scrollController,
  141. children: <Widget>[
  142. favoriteNovels.length > 0 ? BookshelfHeader(favoriteNovels[0]) : Container(),
  143. buildFavoriteView(),
  144. ],
  145. ),
  146. ),
  147. buildNavigationBar(),
  148. ]),
  149. ),
  150. );
  151. }
  152. }