-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathallSongsView.dart
513 lines (495 loc) · 18.8 KB
/
allSongsView.dart
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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
// ignore_for_file: prefer_const_constructors, camel_case_types, file_names, invalid_use_of_protected_member, prefer_const_literals_to_create_immutables, sized_box_for_whitespace, use_build_context_synchronously, unused_element, avoid_unnecessary_containers
import 'dart:io';
import 'package:flutter/cupertino.dart';
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import 'package:netplayer_mobile/components/operations.dart';
import 'package:netplayer_mobile/functions/requests.dart';
import 'package:netplayer_mobile/para/para.dart';
class allSongsView extends StatefulWidget {
const allSongsView({super.key, required this.audioHandler});
final dynamic audioHandler;
@override
State<allSongsView> createState() => _allSongsViewState();
}
class _allSongsViewState extends State<allSongsView> {
final Controller c = Get.put(Controller());
final ScrollController myScrollController=ScrollController();
// List songList=[];
void scrollToNowPlay(){
if(c.playInfo['name']=='allSongs' && myScrollController.hasClients){
myScrollController.animateTo(
(c.playInfo['index']-1)*60.0,
duration: Duration(milliseconds: 300),
curve: Curves.easeInOut
);
}
}
Future<void> getLovedSongs() async {
if(c.lovedSongs.isEmpty){
var tmp=await lovedSongRequest();
c.updateLovedSongs(tmp);
}
}
Future<void> reloadLoved() async {
var tmp=await lovedSongRequest();
c.updateLovedSongs(tmp);
if(c.playInfo["name"]=="lovedSongs"){
int index = c.lovedSongs.indexWhere((element) => element["id"] == c.playInfo["id"]);
if(index==-1){
widget.audioHandler.stop();
c.updatePlayInfo({});
return;
}
var tmpPlayInfo=c.playInfo.value;
tmpPlayInfo["index"]=index;
tmpPlayInfo["list"]=c.lovedSongs.value;
c.updatePlayInfo(tmpPlayInfo);
}
}
Future<void> getList() async {
getLovedSongs();
if(c.allSongs.value.isEmpty){
var tmp=await allSongsRequest();
if(tmp["status"]=="URL Err"){
// 请求超时/错误
if(Platform.isIOS){
showCupertinoDialog(
context: context,
builder: (BuildContext context) {
return CupertinoAlertDialog(
title: Text("请求超时/错误,是否重试?"),
content: Text("请求时间超过3秒"),
actions: <Widget>[
CupertinoDialogAction(
child: Text('退出登录'),
onPressed: () {
c.updateLogin(false);
Navigator.of(context).pop();
},
),
CupertinoDialogAction(
child: Text('重试'),
onPressed: () async {
getList();
Navigator.of(context).pop();
},
)
],
);
},
);
}else{
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("请求超时/错误,是否重试?"),
content: Text("请求时间超过3秒"),
actions: <Widget>[
TextButton(
child: Text('退出登录'),
onPressed: () {
c.updateLogin(false);
Navigator.of(context).pop();
},
),
TextButton(
child: Text('重试'),
onPressed: () async {
getList();
Navigator.of(context).pop();
},
)
],
);
},
);
}
}else if(tmp["status"]!="ok"){
c.updateLogin(false);
}else{
var tmpList=tmp["randomSongs"]["song"];
tmpList.sort((a, b) {
DateTime dateTimeA = DateTime.parse(a['created']);
DateTime dateTimeB = DateTime.parse(b['created']);
return dateTimeB.compareTo(dateTimeA);
});
// setState(() {
// songList=tmpList;
// });
c.updateAllSongs(tmpList);
// print("请求+1");
}
}
// }else{
// setState(() {
// songList=c.allSongs.value;
// });
// }
// print(songList.length);
}
@override
void initState() {
super.initState();
WidgetsBinding.instance.addPostFrameCallback((_) {
// 这个回调会在Widget构建完毕后被触发
getList();
});
if(c.playInfo["name"]=="allSongs"){
reloadHandler();
}
}
Future<void> reloadHandler() async {
// print("重新载入所有歌曲");
var tmp=await allSongsRequest();
var tmpList=tmp["randomSongs"]["song"];
tmpList.sort((a, b) {
DateTime dateTimeA = DateTime.parse(a['created']);
DateTime dateTimeB = DateTime.parse(b['created']);
return dateTimeB.compareTo(dateTimeA);
});
c.updateAllSongs(tmpList);
reloadLoved();
if(c.playInfo["name"]=="allSongs"){
int index = c.allSongs.indexWhere((element) => element["id"] == c.playInfo["id"]);
if(index==-1){
widget.audioHandler.stop();
c.updatePlayInfo({});
return;
}
var tmpPlayInfo=c.playInfo.value;
tmpPlayInfo["index"]=index;
tmpPlayInfo["list"]=c.allSongs.value;
c.updatePlayInfo(tmpPlayInfo);
}
}
Future<void> reloadList(BuildContext context) async {
if(Platform.isIOS){
showCupertinoDialog(
context: context,
builder: (BuildContext context) {
return CupertinoAlertDialog(
title: Text("确定要刷新所有歌曲列表吗?"),
actions: <Widget>[
CupertinoDialogAction(
child: Text('取消'),
onPressed: () {
Navigator.of(context).pop();
},
),
CupertinoDialogAction(
child: Text('确定'),
onPressed: () async {
reloadHandler();
Navigator.of(context).pop();
},
)
],
);
},
);
}else{
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("确定要刷新所有歌曲列表吗?"),
actions: <Widget>[
TextButton(
child: Text('取消'),
onPressed: () {
Navigator.of(context).pop();
},
),
TextButton(
child: Text('确定'),
onPressed: () {
reloadHandler();
Navigator.of(context).pop();
},
)
],
);
},
);
}
}
void overCountDialog(BuildContext context){
if(Platform.isIOS){
showCupertinoDialog(
context: context,
builder: (BuildContext context) {
return CupertinoAlertDialog(
title: Text("显示的歌曲可能不完全"),
content: Text("Subsonic API能够一次性获取到的歌曲数量最多为500首,因此你看到的所有歌曲为随机的500首歌曲经过排序得到的"),
actions: <Widget>[
CupertinoDialogAction(
child: Text('好的'),
onPressed: () async {
Navigator.of(context).pop();
},
)
],
);
},
);
}else{
showDialog(
context: context,
builder: (BuildContext context) {
return AlertDialog(
title: Text("显示的歌曲可能不完全"),
content: Text("Subsonic API能够一次性获取到的歌曲数量最多为500首,因此你看到的所有歌曲为随机的500首歌曲经过排序得到的"),
actions: <Widget>[
TextButton(
child: Text('好的'),
onPressed: () {
Navigator.of(context).pop();
},
)
],
);
},
);
}
}
@override
Widget build(BuildContext context) {
return Column(
children: [
Container(
width: MediaQuery.of(context).size.width,
height: 30,
color: Colors.white,
child: Obx(() =>
Stack(
children: [
Center(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Obx(() =>
GestureDetector(
onTap: (){
scrollToNowPlay();
},
child: Icon(
Icons.my_location_rounded,
color: c.pageAsycEn[c.pageIndex]==c.playInfo['name'] ? c.mainColor : Colors.grey[500],
size: 22,
),
),
),
SizedBox(width: 8,),
Text(
c.allSongs.length >= 500 ? "合计≥500首歌曲" : "合计${c.allSongs.length}首歌",
style: TextStyle(color: c.mainColor),
),
SizedBox(width: 8,),
GestureDetector(
onTap: (){
reloadList(context);
},
child: Icon(
Icons.refresh,
color: c.mainColor,
size: 22,
),
)
],
),
),
c.allSongs.length >=500 ?
Center(
child: Row(
children: [
Expanded(child: Container()),
GestureDetector(
onTap: (){
overCountDialog(context);
},
child: Icon(
Icons.warning,
color: c.mainColor,
size: 20,
),
),
SizedBox(width: 20,)
],
),
) : Container()
],
),
)
),
Expanded(
child: CupertinoScrollbar(
controller: myScrollController,
child: Obx(() =>
ListView.builder(
controller: myScrollController,
itemCount: c.allSongs.length,
itemBuilder: (BuildContext context, int index){
return GestureDetector(
onTap: (){
playSong(c.allSongs[index], index, "allSongs", widget.audioHandler);
},
child: Padding(
padding: const EdgeInsets.fromLTRB(10,0,10,0),
child: Container(
height: 60,
color: Colors.white,
child: Row(
crossAxisAlignment: CrossAxisAlignment.center,
children: [
SizedBox(
width: 40,
child: Center(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
Obx(() =>
c.playInfo.isNotEmpty && c.playInfo["name"]=="allSongs" && c.playInfo["index"]==index ?
Icon(
Icons.play_arrow_rounded,
color: c.mainColor,
) :
Text(
(index+1).toString(),
style: TextStyle(
color: Colors.grey,
),
)
),
SizedBox(width: 5,)
],
),
),
),
Expanded(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
mainAxisAlignment: MainAxisAlignment.center,
children: [
Obx(() =>
c.playInfo.isNotEmpty && c.playInfo["name"]=="allSongs" && c.playInfo["index"]==index ?
Text(
c.allSongs[index]["title"],
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 16,
color: c.mainColor
),
) :
Text(
c.allSongs[index]["title"],
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 16
),
)
),
Row(
children: [
Obx(() =>
c.fav(c.allSongs[index]["id"])==false ?
Container() :
Row(
children: [
Icon(
Icons.favorite,
size: 15,
color: Colors.red,
),
SizedBox(width: 5,)
],
),
),
Expanded(
child: Obx(() =>
c.playInfo.isNotEmpty && c.playInfo["name"]=="allSongs" && c.playInfo["index"]==index ?
Text(
c.allSongs[index]["artist"],
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: 14,
color: c.mainColor
)
) :
Text(
c.allSongs[index]["artist"],
overflow: TextOverflow.ellipsis,
style: TextStyle(
fontSize: 14,
color: Colors.grey
)
)
),
),
],
)
],
)
),
GestureDetector(
onTap: (){
showModalBottomSheet<void>(
context: context,
backgroundColor: Colors.transparent,
builder: (BuildContext context) {
return moreOperations(
item: c.allSongs[index],
index: index,
pageName: "allSongs",
audioHandler: widget.audioHandler,
reloadLoved: reloadLoved,
playSong: ()=>playSong(c.allSongs[index], index, "allSongs", widget.audioHandler),
);
},
);
},
child: Container(
color: Colors.white,
width: 50,
height: double.infinity,
child: Center(
child: Row(
mainAxisAlignment: MainAxisAlignment.center,
children: [
SizedBox(width: 10,),
Obx(() =>
c.playInfo.isNotEmpty && c.playInfo["name"]=="allSongs" && c.playInfo["index"]==index ?
Icon(
Icons.more_vert,
size: 20,
color: c.mainColor,
) :
Icon(
Icons.more_vert,
size: 20,
)
),
],
)
),
),
),
],
),
),
),
);
}
),
),
)
),
SizedBox(height: 70,)
],
);
}
}