mirror of
https://github.com/stonega/tsacdop
synced 2025-02-10 00:20:49 +01:00
632 lines
28 KiB
Dart
632 lines
28 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
import 'package:google_fonts/google_fonts.dart';
|
|
import 'package:line_icons/line_icons.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:tuple/tuple.dart';
|
|
|
|
import '../local_storage/sqflite_localpodcast.dart';
|
|
import '../state/audio_state.dart';
|
|
import '../type/episodebrief.dart';
|
|
import '../type/play_histroy.dart';
|
|
import '../type/playlist.dart';
|
|
import '../util/custom_widget.dart';
|
|
import '../util/extension_helper.dart';
|
|
|
|
class PlaylistPage extends StatefulWidget {
|
|
@override
|
|
_PlaylistPageState createState() => _PlaylistPageState();
|
|
}
|
|
|
|
class _PlaylistPageState extends State<PlaylistPage> {
|
|
final textstyle = TextStyle(fontSize: 15.0, color: Colors.black);
|
|
|
|
int _sumPlaylistLength(List<EpisodeBrief> episodes) {
|
|
var sum = 0;
|
|
if (episodes.length == 0) {
|
|
return sum;
|
|
} else {
|
|
for (var episode in episodes) {
|
|
sum += episode.duration ~/ 60;
|
|
}
|
|
return sum;
|
|
}
|
|
}
|
|
|
|
Future<double> _getListenTime() async {
|
|
var dbHelper = DBHelper();
|
|
var listenTime = await dbHelper.listenMins(0);
|
|
return listenTime;
|
|
}
|
|
|
|
bool _loadHistory = false;
|
|
|
|
List<EpisodeBrief> episodes = [];
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final s = context.s;
|
|
var audio = Provider.of<AudioPlayerNotifier>(context, listen: false);
|
|
return AnnotatedRegion<SystemUiOverlayStyle>(
|
|
value: SystemUiOverlayStyle(
|
|
systemNavigationBarIconBrightness:
|
|
Theme.of(context).accentColorBrightness,
|
|
statusBarIconBrightness: Theme.of(context).accentColorBrightness,
|
|
systemNavigationBarColor: Theme.of(context).primaryColor,
|
|
),
|
|
child: Scaffold(
|
|
backgroundColor: Theme.of(context).primaryColor,
|
|
appBar: AppBar(
|
|
elevation: 0,
|
|
backgroundColor: context.primaryColor,
|
|
),
|
|
body: SafeArea(
|
|
child: Selector<AudioPlayerNotifier, Tuple3<Playlist, bool, bool>>(
|
|
selector: (_, audio) =>
|
|
Tuple3(audio.queue, audio.playerRunning, audio.queueUpdate),
|
|
builder: (_, data, __) {
|
|
episodes = data.item1.playlist;
|
|
return Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
children: <Widget>[
|
|
Row(
|
|
children: <Widget>[
|
|
Expanded(
|
|
flex: 2,
|
|
child: Container(
|
|
height: 100,
|
|
padding: EdgeInsets.only(
|
|
left: 60,
|
|
),
|
|
alignment: Alignment.centerLeft,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Row(
|
|
children: [
|
|
Text(
|
|
_loadHistory
|
|
? s.settingsHistory
|
|
: s.homeMenuPlaylist,
|
|
style: TextStyle(
|
|
color: context.textColor,
|
|
fontSize: 30,
|
|
),
|
|
),
|
|
SizedBox(width: 5),
|
|
IconButton(
|
|
icon: _loadHistory
|
|
? Icon(Icons.playlist_play)
|
|
: Icon(Icons.history),
|
|
onPressed: () => setState(() {
|
|
_loadHistory = !_loadHistory;
|
|
}))
|
|
],
|
|
),
|
|
_loadHistory
|
|
? FutureBuilder<double>(
|
|
future: _getListenTime(),
|
|
initialData: 0.0,
|
|
builder: (context, snapshot) => RichText(
|
|
text: TextSpan(
|
|
text: 'Today ',
|
|
style: GoogleFonts.cairo(
|
|
textStyle: TextStyle(
|
|
color:
|
|
Theme.of(context).accentColor,
|
|
fontSize: 20,
|
|
),
|
|
),
|
|
children: <TextSpan>[
|
|
TextSpan(
|
|
text:
|
|
'${snapshot.data.toStringAsFixed(0)} ',
|
|
style: GoogleFonts.cairo(
|
|
textStyle: TextStyle(
|
|
color: context.accentColor,
|
|
fontSize: 25,
|
|
)),
|
|
),
|
|
TextSpan(
|
|
text: 'mins',
|
|
style: TextStyle(
|
|
color: context.accentColor,
|
|
fontSize: 15,
|
|
)),
|
|
],
|
|
),
|
|
),
|
|
)
|
|
: RichText(
|
|
text: TextSpan(
|
|
text: episodes.length.toString(),
|
|
style: GoogleFonts.cairo(
|
|
textStyle: TextStyle(
|
|
color:
|
|
Theme.of(context).accentColor,
|
|
fontSize: 25,
|
|
),
|
|
),
|
|
children: <TextSpan>[
|
|
TextSpan(
|
|
text: episodes.length < 2
|
|
? 'episode'
|
|
: 'episodes',
|
|
style: TextStyle(
|
|
color: context.accentColor,
|
|
fontSize: 15,
|
|
)),
|
|
TextSpan(
|
|
text: _sumPlaylistLength(episodes)
|
|
.toString(),
|
|
style: GoogleFonts.cairo(
|
|
textStyle: TextStyle(
|
|
color: context.accentColor,
|
|
fontSize: 25,
|
|
)),
|
|
),
|
|
TextSpan(
|
|
text: 'mins',
|
|
style: TextStyle(
|
|
color: context.accentColor,
|
|
fontSize: 15,
|
|
)),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
),
|
|
Expanded(
|
|
flex: 1,
|
|
child: Container(
|
|
alignment: Alignment.center,
|
|
padding: EdgeInsets.all(5.0),
|
|
margin: EdgeInsets.only(right: 20.0, bottom: 5.0),
|
|
decoration: data.item2
|
|
? BoxDecoration(
|
|
color: context.brightness == Brightness.dark
|
|
? Colors.grey[800]
|
|
: Colors.grey[200],
|
|
borderRadius:
|
|
BorderRadius.all(Radius.circular(10.0)),
|
|
)
|
|
: BoxDecoration(color: Colors.transparent),
|
|
child: data.item2
|
|
// ? _topHeight < 90
|
|
// ? Row(
|
|
// mainAxisAlignment:
|
|
// MainAxisAlignment.center,
|
|
// crossAxisAlignment:
|
|
// CrossAxisAlignment.center,
|
|
// children: <Widget>[
|
|
// CircleAvatar(
|
|
// radius: 12,
|
|
// backgroundImage: FileImage(File(
|
|
// "${episodes.first.imagePath}")),
|
|
// ),
|
|
// Padding(
|
|
// padding: EdgeInsets.symmetric(
|
|
// horizontal: 15),
|
|
// child: SizedBox(
|
|
// width: 20,
|
|
// height: 15,
|
|
// child: WaveLoader(
|
|
// color: context.accentColor,
|
|
// )),
|
|
// ),
|
|
// ],
|
|
// )
|
|
? Column(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
children: <Widget>[
|
|
CircleAvatar(
|
|
radius: 15,
|
|
//backgroundColor: _c.withOpacity(0.5),
|
|
backgroundImage: FileImage(
|
|
File("${episodes.first.imagePath}")),
|
|
),
|
|
Container(
|
|
width: 150,
|
|
alignment: Alignment.center,
|
|
child: Text(
|
|
episodes.first.title,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.fade,
|
|
textAlign: TextAlign.center,
|
|
),
|
|
),
|
|
Padding(
|
|
padding:
|
|
EdgeInsets.symmetric(horizontal: 15),
|
|
child: SizedBox(
|
|
width: 20,
|
|
height: 15,
|
|
child: WaveLoader(
|
|
color: context.accentColor,
|
|
)),
|
|
),
|
|
],
|
|
)
|
|
: IconButton(
|
|
icon: Icon(Icons.play_circle_filled,
|
|
size: 40, color: (context).accentColor),
|
|
onPressed: () {
|
|
audio.playlistLoad();
|
|
// setState(() {});
|
|
}),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
Divider(
|
|
height: 3,
|
|
),
|
|
Expanded(
|
|
child: _loadHistory
|
|
? HistoryList()
|
|
: ReorderableListView(
|
|
// scrollController: _playlistController,
|
|
onReorder: (oldIndex, newIndex) {
|
|
if (newIndex > oldIndex) {
|
|
newIndex -= 1;
|
|
}
|
|
audio.reorderPlaylist(oldIndex, newIndex);
|
|
// final episodeRemove = episodes.removeAt(oldIndex);
|
|
setState(() {
|
|
// episodes.insert(newIndex, episodeRemove);
|
|
});
|
|
},
|
|
scrollDirection: Axis.vertical,
|
|
children: data.item2
|
|
? episodes.map<Widget>((episode) {
|
|
if (episode.enclosureUrl !=
|
|
episodes.first.enclosureUrl) {
|
|
return DismissibleContainer(
|
|
episode: episode,
|
|
key: ValueKey(episode.enclosureUrl),
|
|
);
|
|
} else {
|
|
return Container(
|
|
key: ValueKey('sd'),
|
|
);
|
|
}
|
|
}).toList()
|
|
: episodes
|
|
.map<Widget>((episode) =>
|
|
DismissibleContainer(
|
|
episode: episode,
|
|
key: ValueKey(episode.enclosureUrl),
|
|
))
|
|
.toList()),
|
|
),
|
|
],
|
|
);
|
|
},
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class DismissibleContainer extends StatefulWidget {
|
|
final EpisodeBrief episode;
|
|
DismissibleContainer({this.episode, Key key}) : super(key: key);
|
|
|
|
@override
|
|
_DismissibleContainerState createState() => _DismissibleContainerState();
|
|
}
|
|
|
|
class _DismissibleContainerState extends State<DismissibleContainer> {
|
|
bool _delete;
|
|
Widget _episodeTag(String text, Color color) {
|
|
return Container(
|
|
decoration: BoxDecoration(
|
|
color: color, borderRadius: BorderRadius.all(Radius.circular(15.0))),
|
|
height: 23.0,
|
|
margin: EdgeInsets.only(right: 10.0),
|
|
padding: EdgeInsets.symmetric(horizontal: 8.0),
|
|
alignment: Alignment.center,
|
|
child: Text(text, style: TextStyle(fontSize: 14.0, color: Colors.black)),
|
|
);
|
|
}
|
|
|
|
@override
|
|
void initState() {
|
|
_delete = false;
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
var audio = Provider.of<AudioPlayerNotifier>(context, listen: false);
|
|
final s = context.s;
|
|
var c = (Theme.of(context).brightness == Brightness.light)
|
|
? widget.episode.primaryColor.colorizedark()
|
|
: widget.episode.primaryColor.colorizeLight();
|
|
return AnimatedContainer(
|
|
duration: Duration(milliseconds: 300),
|
|
alignment: Alignment.center,
|
|
height: _delete ? 0 : 95.0,
|
|
child: _delete
|
|
? Container(
|
|
color: Colors.transparent,
|
|
)
|
|
: Dismissible(
|
|
key: ValueKey('${widget.episode.enclosureUrl}t'),
|
|
background: Container(
|
|
padding: EdgeInsets.symmetric(horizontal: 20.0),
|
|
child: Row(
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
children: <Widget>[
|
|
Container(
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle, color: Colors.red),
|
|
padding: EdgeInsets.all(5),
|
|
alignment: Alignment.center,
|
|
child: Icon(
|
|
LineIcons.trash_alt_solid,
|
|
color: Colors.white,
|
|
size: 15,
|
|
),
|
|
),
|
|
Container(
|
|
decoration: BoxDecoration(
|
|
shape: BoxShape.circle, color: Colors.red),
|
|
padding: EdgeInsets.all(5),
|
|
alignment: Alignment.center,
|
|
child: Icon(
|
|
LineIcons.trash_alt_solid,
|
|
color: Colors.white,
|
|
size: 15,
|
|
),
|
|
),
|
|
],
|
|
),
|
|
height: 50,
|
|
color: Theme.of(context).accentColor,
|
|
),
|
|
onDismissed: (direction) async {
|
|
setState(() {
|
|
_delete = true;
|
|
});
|
|
var index = await audio.delFromPlaylist(widget.episode);
|
|
final episodeRemove = widget.episode;
|
|
Fluttertoast.showToast(
|
|
msg: s.toastRemovePlaylist,
|
|
gravity: ToastGravity.BOTTOM,
|
|
);
|
|
Scaffold.of(context).showSnackBar(SnackBar(
|
|
behavior: SnackBarBehavior.floating,
|
|
backgroundColor: Colors.grey[800],
|
|
content: Text(s.toastRemovePlaylist,
|
|
style: TextStyle(color: Colors.white)),
|
|
action: SnackBarAction(
|
|
textColor: context.accentColor,
|
|
label: s.undo,
|
|
onPressed: () {
|
|
audio.addToPlaylistAt(episodeRemove, index);
|
|
}),
|
|
));
|
|
},
|
|
child: Column(
|
|
children: <Widget>[
|
|
ListTile(
|
|
title: Container(
|
|
padding: EdgeInsets.only(top: 10.0, bottom: 5.0),
|
|
child: Text(
|
|
widget.episode.title,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
),
|
|
leading: Row(
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
crossAxisAlignment: CrossAxisAlignment.center,
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Icon(Icons.unfold_more, color: c),
|
|
CircleAvatar(
|
|
backgroundColor: c.withOpacity(0.5),
|
|
backgroundImage:
|
|
FileImage(File(widget.episode.imagePath)),
|
|
),
|
|
],
|
|
),
|
|
subtitle: Container(
|
|
padding: EdgeInsets.only(top: 5, bottom: 10),
|
|
child: Row(
|
|
children: <Widget>[
|
|
(widget.episode.explicit == 1)
|
|
? Container(
|
|
decoration: BoxDecoration(
|
|
color: Colors.red[800],
|
|
shape: BoxShape.circle),
|
|
height: 20.0,
|
|
width: 20.0,
|
|
margin: EdgeInsets.only(right: 10.0),
|
|
alignment: Alignment.center,
|
|
child: Text('E',
|
|
style: TextStyle(color: Colors.white)))
|
|
: Center(),
|
|
widget.episode.duration != 0
|
|
? _episodeTag(
|
|
s.minsCount(widget.episode.duration ~/ 60),
|
|
Colors.cyan[300])
|
|
: Center(),
|
|
widget.episode.enclosureLength != null
|
|
? _episodeTag(
|
|
'${(widget.episode.enclosureLength) ~/ 1000000}MB',
|
|
Colors.lightBlue[300])
|
|
: Center(),
|
|
],
|
|
),
|
|
),
|
|
//trailing: Icon(Icons.menu),
|
|
),
|
|
// Divider(
|
|
// height: 2,
|
|
// ),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class HistoryList extends StatefulWidget {
|
|
HistoryList({Key key}) : super(key: key);
|
|
|
|
@override
|
|
_HistoryListState createState() => _HistoryListState();
|
|
}
|
|
|
|
class _HistoryListState extends State<HistoryList> {
|
|
var dbHelper = DBHelper();
|
|
Future<List<PlayHistory>> getPlayRecords(int top) async {
|
|
List<PlayHistory> playHistory;
|
|
playHistory = await dbHelper.getPlayRecords(top);
|
|
for (var record in playHistory) {
|
|
await record.getEpisode();
|
|
}
|
|
return playHistory;
|
|
}
|
|
|
|
_loadMoreData() async {
|
|
if (mounted) {
|
|
setState(() {
|
|
_top = _top + 100;
|
|
});
|
|
}
|
|
}
|
|
|
|
int _top = 100;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final s = context.s;
|
|
final audio = context.watch<AudioPlayerNotifier>();
|
|
return FutureBuilder<List<PlayHistory>>(
|
|
future: getPlayRecords(_top),
|
|
builder: (context, snapshot) {
|
|
return snapshot.hasData
|
|
? NotificationListener<ScrollNotification>(
|
|
onNotification: (scrollInfo) {
|
|
if (scrollInfo.metrics.pixels ==
|
|
scrollInfo.metrics.maxScrollExtent &&
|
|
snapshot.data.length == _top) _loadMoreData();
|
|
return true;
|
|
},
|
|
child: ListView.builder(
|
|
scrollDirection: Axis.vertical,
|
|
itemCount: snapshot.data.length,
|
|
itemBuilder: (context, index) {
|
|
final seekValue = snapshot.data[index].seekValue;
|
|
final seconds = snapshot.data[index].seconds;
|
|
final date = snapshot
|
|
.data[index].playdate.millisecondsSinceEpoch;
|
|
final episode = snapshot.data[index].episode;
|
|
var c =
|
|
(Theme.of(context).brightness == Brightness.light)
|
|
? episode.primaryColor.colorizedark()
|
|
: episode.primaryColor.colorizeLight();
|
|
return ListTile(
|
|
contentPadding:
|
|
EdgeInsets.only(left: 40, right: 20, top: 10),
|
|
onTap: () => audio.episodeLoad(episode),
|
|
leading: CircleAvatar(
|
|
backgroundColor: c.withOpacity(0.5),
|
|
backgroundImage: FileImage(File(episode.imagePath)),
|
|
),
|
|
title: Text(
|
|
snapshot.data[index].title,
|
|
maxLines: 1,
|
|
overflow: TextOverflow.ellipsis,
|
|
),
|
|
subtitle: Row(
|
|
children: <Widget>[
|
|
Text(
|
|
date.toDate(context),
|
|
style: TextStyle(
|
|
fontSize: 15,
|
|
),
|
|
),
|
|
SizedBox(width: 5),
|
|
if (seekValue < 0.9)
|
|
Material(
|
|
color: Colors.transparent,
|
|
child: InkWell(
|
|
onTap: () async {
|
|
audio.episodeLoad(episode,
|
|
startPosition:
|
|
(seconds * 1000).toInt());
|
|
},
|
|
child: Container(
|
|
height: 20,
|
|
alignment: Alignment.center,
|
|
padding:
|
|
EdgeInsets.symmetric(horizontal: 5),
|
|
decoration: BoxDecoration(
|
|
borderRadius: BorderRadius.all(
|
|
Radius.circular(10.0)),
|
|
color: context.accentColor,
|
|
),
|
|
child: Text(
|
|
seconds.toTime,
|
|
style: TextStyle(color: Colors.white),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
SizedBox(width: 5),
|
|
Selector<AudioPlayerNotifier,
|
|
Tuple2<List<EpisodeBrief>, bool>>(
|
|
selector: (_, audio) => Tuple2(
|
|
audio.queue.playlist, audio.queueUpdate),
|
|
builder: (_, data, __) {
|
|
return data.item1.contains(episode)
|
|
? IconButton(
|
|
icon: Icon(Icons.playlist_add_check,
|
|
color: context.accentColor),
|
|
onPressed: () async {
|
|
audio.delFromPlaylist(episode);
|
|
Fluttertoast.showToast(
|
|
msg: s.toastRemovePlaylist,
|
|
gravity: ToastGravity.BOTTOM,
|
|
);
|
|
})
|
|
: IconButton(
|
|
icon: Icon(Icons.playlist_add,
|
|
color: Colors.grey[700]),
|
|
onPressed: () async {
|
|
audio.addToPlaylist(episode);
|
|
Fluttertoast.showToast(
|
|
msg: s.toastAddPlaylist,
|
|
gravity: ToastGravity.BOTTOM,
|
|
);
|
|
});
|
|
},
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}),
|
|
)
|
|
: Center(
|
|
child: SizedBox(
|
|
height: 25,
|
|
width: 25,
|
|
child: CircularProgressIndicator()),
|
|
);
|
|
});
|
|
}
|
|
}
|