novel_detail_scene.dart 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248
  1. import 'package:flutter/material.dart';
  2. import 'package:flutter/services.dart';
  3. import 'package:shuqi/public.dart';
  4. import 'novel_detail_header.dart';
  5. import 'novel_summary_view.dart';
  6. import 'novel_detail_toolbar.dart';
  7. import 'novel_detail_recommend_view.dart';
  8. import 'novel_detail_cell.dart';
  9. import 'novel_comment_cell.dart';
  10. class NovelDetailScene extends StatefulWidget {
  11. final String novelId;
  12. NovelDetailScene(this.novelId);
  13. @override
  14. NovelDetailSceneState createState() => NovelDetailSceneState();
  15. }
  16. class NovelDetailSceneState extends State<NovelDetailScene> with RouteAware {
  17. Novel? novel;
  18. List<Novel> recommendNovels = [];
  19. List<NovelComment> comments = [];
  20. ScrollController scrollController = ScrollController();
  21. double navAlpha = 0;
  22. bool isSummaryUnfold = false;
  23. int commentCount = 0;
  24. int commentMemberCount = 0;
  25. @override
  26. void initState() {
  27. super.initState();
  28. fetchData();
  29. scrollController.addListener(() {
  30. var offset = scrollController.offset;
  31. if (offset < 0) {
  32. if (navAlpha != 0) {
  33. setState(() {
  34. navAlpha = 0;
  35. });
  36. }
  37. } else if (offset < 50) {
  38. setState(() {
  39. navAlpha = 1 - (50 - offset) / 50;
  40. });
  41. } else if (navAlpha != 1) {
  42. setState(() {
  43. navAlpha = 1;
  44. });
  45. }
  46. });
  47. }
  48. @override
  49. void dispose() {
  50. scrollController.dispose();
  51. super.dispose();
  52. }
  53. changeSummaryMaxLines() {
  54. setState(() {
  55. isSummaryUnfold = !isSummaryUnfold;
  56. });
  57. }
  58. back() {
  59. Navigator.pop(context);
  60. }
  61. fetchData() async {
  62. // try {
  63. var novelId = this.widget.novelId;
  64. var novelResponse = await Request.post(action: 'novel_detail', params: {'id': novelId});
  65. var commentsResponse = await Request.post(action: 'novel_comment', params: {'id': novelId});
  66. List<NovelComment> comments = [];
  67. commentsResponse.forEach((data) {
  68. comments.add(NovelComment.fromJson(data));
  69. });
  70. var recommendResponse = await Request.post(action: 'novel_recommend', params: {'id': novelId});
  71. List<Novel> recommendNovels = [];
  72. recommendResponse.forEach((data) {
  73. recommendNovels.add(Novel.fromJson(data));
  74. });
  75. setState(() {
  76. this.novel = Novel.fromJson(novelResponse);
  77. this.comments = comments;
  78. this.recommendNovels = recommendNovels;
  79. });
  80. // } catch (e) {
  81. // Toast.show(e.toString());
  82. // }
  83. }
  84. Widget buildNavigationBar() {
  85. return Stack(
  86. children: <Widget>[
  87. Container(
  88. width: 44,
  89. height: Screen.navigationBarHeight,
  90. padding: EdgeInsets.fromLTRB(5, Screen.topSafeHeight, 0, 0),
  91. child: GestureDetector(onTap: back, child: Image.asset('img/pub_back_white.png')),
  92. ),
  93. Opacity(
  94. opacity: navAlpha,
  95. child: Container(
  96. decoration: BoxDecoration(color: SQColor.white, boxShadow: Styles.borderShadow),
  97. padding: EdgeInsets.fromLTRB(5, Screen.topSafeHeight, 0, 0),
  98. height: Screen.navigationBarHeight,
  99. child: Row(
  100. children: <Widget>[
  101. Container(
  102. width: 44,
  103. child: GestureDetector(onTap: back, child: Image.asset('img/pub_back_gray.png')),
  104. ),
  105. Expanded(
  106. child: Text(
  107. novel!.name,
  108. style: TextStyle(fontSize: 17, fontWeight: FontWeight.bold),
  109. textAlign: TextAlign.center,
  110. ),
  111. ),
  112. Container(width: 44),
  113. ],
  114. ),
  115. ),
  116. )
  117. ],
  118. );
  119. }
  120. Widget buildComment() {
  121. return Container(
  122. color: Colors.white,
  123. child: Column(
  124. crossAxisAlignment: CrossAxisAlignment.start,
  125. children: <Widget>[
  126. Container(
  127. padding: EdgeInsets.symmetric(vertical: 15),
  128. child: Row(
  129. children: <Widget>[
  130. Image.asset('img/home_tip.png'),
  131. SizedBox(width: 13),
  132. Text('书友评价', style: TextStyle(fontSize: 16)),
  133. Expanded(child: Container()),
  134. Image.asset('img/detail_write_comment.png'),
  135. Text(' 写书评', style: TextStyle(fontSize: 14, color: SQColor.primary)),
  136. SizedBox(width: 15),
  137. ],
  138. ),
  139. ),
  140. Divider(height: 1),
  141. Column(
  142. children: comments.map((comment) => NovelCommentCell(comment)).toList(),
  143. ),
  144. Divider(height: 1),
  145. Container(
  146. padding: EdgeInsets.symmetric(vertical: 15),
  147. child: Center(
  148. child: Text(
  149. '查看全部评论(${novel!.commentCount}条)',
  150. style: TextStyle(fontSize: 14, color: SQColor.gray),
  151. ),
  152. ),
  153. )
  154. ],
  155. ),
  156. );
  157. }
  158. Widget buildTags() {
  159. var colors = [Color(0xFFF9A19F), Color(0xFF59DDB9), Color(0xFF7EB3E7)];
  160. var i = 0;
  161. var tagWidgets = novel!.tags.map((tag) {
  162. var color = colors[i % 3];
  163. var tagWidget = Container(
  164. decoration: BoxDecoration(
  165. border: Border.all(color: Color.fromARGB(99, color.red, color.green, color.blue), width: 0.5),
  166. borderRadius: BorderRadius.circular(3),
  167. ),
  168. padding: EdgeInsets.fromLTRB(6, 3, 6, 3),
  169. child: Text(tag, style: TextStyle(fontSize: 14, color: colors[i % 3])),
  170. );
  171. i++;
  172. return tagWidget;
  173. }).toList();
  174. return Container(
  175. padding: EdgeInsets.fromLTRB(15, 15, 15, 15),
  176. color: SQColor.white,
  177. child: Wrap(runSpacing: 10, spacing: 10, children: tagWidgets),
  178. );
  179. }
  180. @override
  181. Widget build(BuildContext context) {
  182. if (this.novel == null) {
  183. return Scaffold(appBar: AppBar(elevation: 0));
  184. }
  185. var novel = this.novel!;
  186. return Scaffold(
  187. body: AnnotatedRegion(
  188. value: navAlpha > 0.5 ? SystemUiOverlayStyle.dark : SystemUiOverlayStyle.light,
  189. child: Stack(
  190. children: <Widget>[
  191. Column(
  192. children: <Widget>[
  193. Expanded(
  194. child: ListView(
  195. controller: scrollController,
  196. padding: EdgeInsets.only(top: 0),
  197. children: <Widget>[
  198. NovelDetailHeader(novel),
  199. NovelSummaryView(novel.introduction, isSummaryUnfold, changeSummaryMaxLines),
  200. NovelDetailCell(
  201. iconName: 'img/detail_latest.png',
  202. title: '最新',
  203. subtitle: novel.lastChapter.title,
  204. attachedWidget: Text(novel.status, style: TextStyle(fontSize: 14, color: novel.statusColor())),
  205. ),
  206. NovelDetailCell(
  207. iconName: 'img/detail_chapter.png',
  208. title: '目录',
  209. subtitle: '共${novel.chapterCount}章',
  210. ),
  211. buildTags(),
  212. SizedBox(height: 10),
  213. buildComment(),
  214. SizedBox(height: 10),
  215. NovelDetailRecommendView(recommendNovels),
  216. ],
  217. ),
  218. ),
  219. NovelDetailToolbar(novel),
  220. ],
  221. ),
  222. buildNavigationBar(),
  223. ],
  224. ),
  225. ),
  226. );
  227. }
  228. }