2020-02-12 16:16:46 +01:00
|
|
|
import 'dart:io';
|
2020-02-09 13:29:09 +01:00
|
|
|
import 'dart:ui';
|
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:google_fonts/google_fonts.dart';
|
2020-03-14 04:14:24 +01:00
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
import 'package:tuple/tuple.dart';
|
|
|
|
import 'package:line_icons/line_icons.dart';
|
|
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
2020-05-06 14:08:41 +02:00
|
|
|
import 'package:auto_animated/auto_animated.dart';
|
2020-03-22 18:03:53 +01:00
|
|
|
import 'open_container.dart';
|
|
|
|
|
2020-05-06 18:50:32 +02:00
|
|
|
import '../state/audiostate.dart';
|
2020-06-10 09:42:40 +02:00
|
|
|
import '../state/download_state.dart';
|
2020-05-06 18:50:32 +02:00
|
|
|
import '../type/episodebrief.dart';
|
|
|
|
import '../episodes/episodedetail.dart';
|
|
|
|
import '../local_storage/sqflite_localpodcast.dart';
|
2020-06-10 09:42:40 +02:00
|
|
|
import '../local_storage/key_value_storage.dart';
|
2020-05-06 18:50:32 +02:00
|
|
|
import 'colorize.dart';
|
|
|
|
import 'context_extension.dart';
|
|
|
|
import 'custompaint.dart';
|
2020-04-11 19:23:12 +02:00
|
|
|
|
2020-06-03 14:39:15 +02:00
|
|
|
enum Layout { three, two, one }
|
2020-02-09 13:29:09 +01:00
|
|
|
|
|
|
|
class EpisodeGrid extends StatelessWidget {
|
2020-03-25 16:33:48 +01:00
|
|
|
final List<EpisodeBrief> episodes;
|
2020-02-09 13:29:09 +01:00
|
|
|
final bool showFavorite;
|
|
|
|
final bool showDownload;
|
|
|
|
final bool showNumber;
|
2020-03-25 16:33:48 +01:00
|
|
|
final int episodeCount;
|
2020-04-11 19:23:12 +02:00
|
|
|
final Layout layout;
|
|
|
|
final bool reverse;
|
2020-05-18 20:20:32 +02:00
|
|
|
final int initNum;
|
2020-06-05 20:33:47 +02:00
|
|
|
EpisodeGrid({
|
|
|
|
Key key,
|
|
|
|
@required this.episodes,
|
|
|
|
this.initNum = 12,
|
|
|
|
this.showDownload = false,
|
|
|
|
this.showFavorite = false,
|
|
|
|
this.showNumber = false,
|
|
|
|
this.episodeCount = 0,
|
|
|
|
this.layout = Layout.three,
|
|
|
|
this.reverse,
|
|
|
|
}) : super(key: key);
|
|
|
|
|
2020-04-11 19:23:12 +02:00
|
|
|
Future<int> _isListened(EpisodeBrief episode) async {
|
|
|
|
DBHelper dbHelper = DBHelper();
|
|
|
|
return await dbHelper.isListened(episode.enclosureUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<bool> _isLiked(EpisodeBrief episode) async {
|
|
|
|
DBHelper dbHelper = DBHelper();
|
|
|
|
return await dbHelper.isLiked(episode.enclosureUrl);
|
|
|
|
}
|
|
|
|
|
2020-06-10 09:42:40 +02:00
|
|
|
Future<List<int>> _getEpisodeMenu() async {
|
|
|
|
KeyValueStorage popupMenuStorage = KeyValueStorage(episodePopupMenuKey);
|
|
|
|
List<int> list = await popupMenuStorage.getMenu();
|
|
|
|
return list;
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<bool> _isDownloaded(EpisodeBrief episode) async {
|
|
|
|
DBHelper dbHelper = DBHelper();
|
|
|
|
return await dbHelper.isDownloaded(episode.enclosureUrl);
|
|
|
|
}
|
|
|
|
|
|
|
|
_markListened(EpisodeBrief episode) async {
|
|
|
|
DBHelper dbHelper = DBHelper();
|
|
|
|
bool marked = await dbHelper.checkMarked(episode);
|
|
|
|
if (!marked) {
|
|
|
|
final PlayHistory history =
|
|
|
|
PlayHistory(episode.title, episode.enclosureUrl, 0, 1);
|
|
|
|
await dbHelper.saveHistory(history);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-06-11 17:13:10 +02:00
|
|
|
_saveLiked(String url) async {
|
2020-06-10 09:42:40 +02:00
|
|
|
var dbHelper = DBHelper();
|
2020-06-11 17:13:10 +02:00
|
|
|
await dbHelper.setLiked(url);
|
2020-06-10 09:42:40 +02:00
|
|
|
}
|
|
|
|
|
2020-06-11 17:13:10 +02:00
|
|
|
_setUnliked(String url) async {
|
2020-06-10 09:42:40 +02:00
|
|
|
var dbHelper = DBHelper();
|
2020-06-11 17:13:10 +02:00
|
|
|
await dbHelper.setUniked(url);
|
2020-06-10 09:42:40 +02:00
|
|
|
}
|
|
|
|
|
2020-04-11 19:23:12 +02:00
|
|
|
String _stringForSeconds(double seconds) {
|
|
|
|
if (seconds == null) return null;
|
|
|
|
return '${(seconds ~/ 60)}:${(seconds.truncate() % 60).toString().padLeft(2, '0')}';
|
|
|
|
}
|
|
|
|
|
2020-06-03 14:39:15 +02:00
|
|
|
Widget _title(EpisodeBrief episode) => Container(
|
|
|
|
alignment:
|
|
|
|
layout == Layout.one ? Alignment.centerLeft : Alignment.topLeft,
|
|
|
|
padding: EdgeInsets.only(top: 2.0),
|
|
|
|
child: Text(
|
|
|
|
episode.title,
|
|
|
|
maxLines: layout == Layout.one ? 1 : 4,
|
|
|
|
overflow:
|
|
|
|
layout == Layout.one ? TextOverflow.ellipsis : TextOverflow.fade,
|
|
|
|
),
|
|
|
|
);
|
2020-06-05 20:33:47 +02:00
|
|
|
|
2020-06-03 14:39:15 +02:00
|
|
|
Widget _circleImage(BuildContext context,
|
|
|
|
{EpisodeBrief episode, Color color, bool boo}) =>
|
|
|
|
Container(
|
|
|
|
height: context.width / 16,
|
|
|
|
width: context.width / 16,
|
|
|
|
child: boo
|
|
|
|
? Center()
|
|
|
|
: CircleAvatar(
|
|
|
|
backgroundColor: color.withOpacity(0.5),
|
|
|
|
backgroundImage: FileImage(File("${episode.imagePath}")),
|
|
|
|
),
|
|
|
|
);
|
2020-06-05 20:33:47 +02:00
|
|
|
|
2020-06-11 17:13:10 +02:00
|
|
|
//Widget _listenIndicater(BuildContext context,
|
|
|
|
// {EpisodeBrief episode, int isListened}) =>
|
|
|
|
// Center();
|
2020-06-10 18:36:53 +02:00
|
|
|
// Selector<AudioPlayerNotifier, Tuple2<EpisodeBrief, bool>>(
|
|
|
|
// selector: (_, audio) => Tuple2(audio.episode, audio.playerRunning),
|
|
|
|
// builder: (_, data, __) {
|
|
|
|
// return (episode.enclosureUrl == data.item1?.enclosureUrl &&
|
|
|
|
// data.item2)
|
|
|
|
// ? Container(
|
|
|
|
// height: 20,
|
|
|
|
// width: 20,
|
|
|
|
// margin: EdgeInsets.symmetric(horizontal: 2),
|
|
|
|
// decoration: BoxDecoration(
|
|
|
|
// shape: BoxShape.circle,
|
|
|
|
// ),
|
|
|
|
// child: WaveLoader(color: context.accentColor))
|
|
|
|
// : layout != Layout.three && isListened > 0
|
|
|
|
// ? Container(
|
|
|
|
// height: 20,
|
|
|
|
// width: 20,
|
|
|
|
// margin: EdgeInsets.symmetric(horizontal: 2),
|
|
|
|
// padding: EdgeInsets.all(2),
|
|
|
|
// decoration: BoxDecoration(
|
|
|
|
// color: context.accentColor,
|
|
|
|
// shape: BoxShape.circle,
|
|
|
|
// ),
|
|
|
|
// child: CustomPaint(
|
|
|
|
// painter: ListenedAllPainter(
|
|
|
|
// Colors.white,
|
|
|
|
// )),
|
|
|
|
// )
|
|
|
|
// : Center();
|
|
|
|
// });
|
2020-06-03 14:39:15 +02:00
|
|
|
|
|
|
|
Widget _downloadIndicater(BuildContext context, {EpisodeBrief episode}) =>
|
|
|
|
showDownload || layout != Layout.three
|
|
|
|
? Container(
|
|
|
|
child: (episode.enclosureUrl != episode.mediaId)
|
|
|
|
? Container(
|
|
|
|
height: 20,
|
|
|
|
width: 20,
|
|
|
|
margin: EdgeInsets.symmetric(horizontal: 5),
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 2),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
color: context.accentColor,
|
|
|
|
shape: BoxShape.circle,
|
|
|
|
),
|
|
|
|
child: Icon(
|
|
|
|
Icons.done_all,
|
|
|
|
size: 15,
|
|
|
|
color: Colors.white,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Center(),
|
|
|
|
)
|
|
|
|
: Center();
|
2020-06-05 20:33:47 +02:00
|
|
|
|
2020-06-03 14:39:15 +02:00
|
|
|
Widget _isNewIndicator(EpisodeBrief episode) => episode.isNew == 1
|
|
|
|
? Container(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 2),
|
|
|
|
child: Text('New',
|
|
|
|
style: TextStyle(color: Colors.red, fontStyle: FontStyle.italic)),
|
|
|
|
)
|
|
|
|
: Center();
|
|
|
|
|
|
|
|
Widget _numberIndicater(BuildContext context, {int index, Color color}) =>
|
|
|
|
showNumber
|
|
|
|
? Container(
|
|
|
|
alignment: Alignment.topRight,
|
|
|
|
child: Text(
|
|
|
|
reverse
|
|
|
|
? (index + 1).toString()
|
|
|
|
: (episodeCount - index).toString(),
|
|
|
|
style: GoogleFonts.teko(
|
|
|
|
textStyle: TextStyle(
|
|
|
|
fontSize: context.width / 24,
|
|
|
|
color: color,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Center();
|
2020-06-05 20:33:47 +02:00
|
|
|
|
2020-06-03 14:39:15 +02:00
|
|
|
Widget _pubDate(BuildContext context, {EpisodeBrief episode, Color color}) =>
|
|
|
|
Text(
|
|
|
|
episode.dateToString(),
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: context.width / 35,
|
|
|
|
color: color,
|
|
|
|
fontStyle: FontStyle.italic),
|
|
|
|
);
|
2020-06-10 09:42:40 +02:00
|
|
|
|
2020-02-09 13:29:09 +01:00
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2020-06-10 09:42:40 +02:00
|
|
|
double _width = context.width;
|
2020-03-19 20:58:30 +01:00
|
|
|
Offset _offset;
|
2020-03-14 04:14:24 +01:00
|
|
|
_showPopupMenu(Offset offset, EpisodeBrief episode, BuildContext context,
|
2020-06-10 09:42:40 +02:00
|
|
|
{bool isPlaying, bool isInPlaylist}) async {
|
|
|
|
bool isLiked, isDownload;
|
|
|
|
int isListened;
|
2020-03-14 04:14:24 +01:00
|
|
|
var audio = Provider.of<AudioPlayerNotifier>(context, listen: false);
|
2020-06-10 09:42:40 +02:00
|
|
|
var downloader = Provider.of<DownloadState>(context, listen: false);
|
2020-03-14 04:14:24 +01:00
|
|
|
double left = offset.dx;
|
|
|
|
double top = offset.dy;
|
2020-06-10 09:42:40 +02:00
|
|
|
List<int> menuList = await _getEpisodeMenu();
|
|
|
|
if (menuList.contains(3)) isListened = await _isListened(episode);
|
|
|
|
if (menuList.contains(2)) isLiked = await _isLiked(episode);
|
|
|
|
if (menuList.contains(4)) isDownload = await _isDownloaded(episode);
|
2020-03-14 04:14:24 +01:00
|
|
|
await showMenu<int>(
|
|
|
|
shape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(10))),
|
|
|
|
context: context,
|
|
|
|
position: RelativeRect.fromLTRB(left, top, _width - left, 0),
|
|
|
|
items: <PopupMenuEntry<int>>[
|
|
|
|
PopupMenuItem(
|
|
|
|
value: 0,
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
|
|
|
mainAxisSize: MainAxisSize.max,
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(
|
|
|
|
LineIcons.play_circle_solid,
|
|
|
|
color: Theme.of(context).accentColor,
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 2),
|
|
|
|
),
|
|
|
|
!isPlaying ? Text('Play') : Text('Playing'),
|
|
|
|
],
|
2020-02-20 16:44:42 +01:00
|
|
|
),
|
2020-03-14 04:14:24 +01:00
|
|
|
),
|
2020-06-10 09:42:40 +02:00
|
|
|
menuList.contains(1)
|
|
|
|
? PopupMenuItem(
|
|
|
|
value: 1,
|
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(
|
|
|
|
LineIcons.clock_solid,
|
|
|
|
color: Colors.cyan,
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 2),
|
|
|
|
),
|
|
|
|
!isInPlaylist ? Text('Later') : Text('Remove')
|
|
|
|
],
|
|
|
|
))
|
|
|
|
: null,
|
|
|
|
menuList.contains(2)
|
|
|
|
? PopupMenuItem(
|
|
|
|
value: 2,
|
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(LineIcons.heart, color: Colors.red, size: 21),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 2),
|
|
|
|
),
|
|
|
|
isLiked
|
|
|
|
? Text(
|
|
|
|
'Unlike',
|
|
|
|
)
|
|
|
|
: Text('Like')
|
|
|
|
],
|
|
|
|
))
|
|
|
|
: null,
|
|
|
|
menuList.contains(3)
|
|
|
|
? PopupMenuItem(
|
|
|
|
value: 3,
|
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
SizedBox(
|
|
|
|
width: 23,
|
|
|
|
height: 23,
|
|
|
|
child: CustomPaint(
|
|
|
|
painter:
|
|
|
|
ListenedAllPainter(Colors.blue, stroke: 1.5)),
|
|
|
|
),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 2),
|
|
|
|
),
|
2020-06-10 18:36:53 +02:00
|
|
|
isListened > 0
|
2020-06-10 09:42:40 +02:00
|
|
|
? Text('Listened',
|
|
|
|
style: TextStyle(
|
|
|
|
color: context.textColor.withOpacity(0.5)))
|
|
|
|
: Text('Mark\nListened')
|
|
|
|
],
|
|
|
|
))
|
|
|
|
: null,
|
|
|
|
menuList.contains(4)
|
|
|
|
? PopupMenuItem(
|
|
|
|
value: 4,
|
|
|
|
child: Row(
|
|
|
|
children: <Widget>[
|
|
|
|
Icon(LineIcons.download_solid, color: Colors.green),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.symmetric(horizontal: 2),
|
|
|
|
),
|
|
|
|
isDownload
|
|
|
|
? Text('Downloaded',
|
|
|
|
style: TextStyle(
|
|
|
|
color: context.textColor.withOpacity(0.5)))
|
|
|
|
: Text('Download')
|
|
|
|
],
|
|
|
|
))
|
|
|
|
: null,
|
2020-03-14 04:14:24 +01:00
|
|
|
],
|
|
|
|
elevation: 5.0,
|
2020-06-10 09:42:40 +02:00
|
|
|
).then((value) async {
|
|
|
|
switch (value) {
|
|
|
|
case 0:
|
|
|
|
if (!isPlaying) audio.episodeLoad(episode);
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (!isInPlaylist) {
|
|
|
|
audio.addToPlaylist(episode);
|
|
|
|
Fluttertoast.showToast(
|
|
|
|
msg: 'Added to playlist',
|
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
audio.delFromPlaylist(episode);
|
|
|
|
Fluttertoast.showToast(
|
|
|
|
msg: 'Removed from playlist',
|
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (isLiked) {
|
|
|
|
await _setUnliked(episode.enclosureUrl);
|
|
|
|
audio.setEpisodeState = true;
|
|
|
|
Fluttertoast.showToast(
|
|
|
|
msg: 'Unliked',
|
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
await _saveLiked(episode.enclosureUrl);
|
|
|
|
audio.setEpisodeState = true;
|
|
|
|
Fluttertoast.showToast(
|
|
|
|
msg: 'Liked',
|
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
2020-06-10 18:36:53 +02:00
|
|
|
if (isListened < 1) {
|
2020-06-10 09:42:40 +02:00
|
|
|
await _markListened(episode);
|
|
|
|
audio.setEpisodeState = true;
|
|
|
|
Fluttertoast.showToast(
|
|
|
|
msg: 'Mark listened',
|
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
if (!isDownload) downloader.startTask(episode);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
2020-03-14 04:14:24 +01:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2020-05-06 14:08:41 +02:00
|
|
|
final options = LiveOptions(
|
2020-05-09 17:42:13 +02:00
|
|
|
delay: Duration.zero,
|
|
|
|
showItemInterval: Duration(milliseconds: 50),
|
|
|
|
showItemDuration: Duration(milliseconds: 50),
|
2020-05-06 14:08:41 +02:00
|
|
|
);
|
|
|
|
final scrollController = ScrollController();
|
2020-06-05 20:33:47 +02:00
|
|
|
|
2020-03-14 04:14:24 +01:00
|
|
|
return SliverPadding(
|
2020-04-11 19:23:12 +02:00
|
|
|
padding: const EdgeInsets.only(
|
|
|
|
top: 10.0, bottom: 5.0, left: 15.0, right: 15.0),
|
2020-05-06 14:08:41 +02:00
|
|
|
sliver: LiveSliverGrid.options(
|
|
|
|
controller: scrollController,
|
|
|
|
options: options,
|
|
|
|
itemCount: episodes.length,
|
2020-03-14 04:14:24 +01:00
|
|
|
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(
|
2020-06-03 14:39:15 +02:00
|
|
|
childAspectRatio:
|
|
|
|
layout == Layout.three ? 1 : layout == Layout.two ? 1.5 : 4,
|
|
|
|
crossAxisCount:
|
|
|
|
layout == Layout.three ? 3 : layout == Layout.two ? 2 : 1,
|
2020-03-14 04:14:24 +01:00
|
|
|
mainAxisSpacing: 6.0,
|
|
|
|
crossAxisSpacing: 6.0,
|
|
|
|
),
|
2020-05-06 14:08:41 +02:00
|
|
|
itemBuilder: (context, index, animation) {
|
|
|
|
Color _c = (Theme.of(context).brightness == Brightness.light)
|
|
|
|
? episodes[index].primaryColor.colorizedark()
|
|
|
|
: episodes[index].primaryColor.colorizeLight();
|
2020-06-05 20:33:47 +02:00
|
|
|
scrollController.addListener(() {
|
|
|
|
print(scrollController.offset);
|
|
|
|
});
|
2020-05-06 14:08:41 +02:00
|
|
|
return FadeTransition(
|
2020-06-05 20:33:47 +02:00
|
|
|
opacity: Tween<double>(begin: index < initNum ? 0 : 1, end: 1)
|
|
|
|
.animate(animation),
|
2020-05-06 14:08:41 +02:00
|
|
|
child: Selector<AudioPlayerNotifier,
|
2020-06-10 09:42:40 +02:00
|
|
|
Tuple3<EpisodeBrief, List<String>, bool>>(
|
|
|
|
selector: (_, audio) => Tuple3(
|
|
|
|
audio?.episode,
|
|
|
|
audio.queue.playlist.map((e) => e.enclosureUrl).toList(),
|
|
|
|
audio.episodeState),
|
2020-03-22 18:03:53 +01:00
|
|
|
builder: (_, data, __) => OpenContainerWrapper(
|
2020-03-25 16:33:48 +01:00
|
|
|
episode: episodes[index],
|
2020-04-11 19:23:12 +02:00
|
|
|
closedBuilder: (context, action, boo) => FutureBuilder<int>(
|
|
|
|
future: _isListened(episodes[index]),
|
|
|
|
initialData: 0,
|
|
|
|
builder: (BuildContext context, AsyncSnapshot snapshot) {
|
|
|
|
return Container(
|
2020-03-22 18:03:53 +01:00
|
|
|
decoration: BoxDecoration(
|
2020-04-11 19:23:12 +02:00
|
|
|
borderRadius:
|
|
|
|
BorderRadius.all(Radius.circular(5.0)),
|
|
|
|
color: snapshot.data > 0
|
|
|
|
? context.brightness == Brightness.light
|
2020-06-10 18:36:53 +02:00
|
|
|
? Colors.grey[200]
|
2020-04-11 19:23:12 +02:00
|
|
|
: Color.fromRGBO(40, 40, 40, 1)
|
|
|
|
: context.scaffoldBackgroundColor,
|
|
|
|
boxShadow: [
|
|
|
|
BoxShadow(
|
|
|
|
color: context.brightness == Brightness.light
|
|
|
|
? context.primaryColor
|
|
|
|
: Color.fromRGBO(40, 40, 40, 1),
|
|
|
|
blurRadius: 0.5,
|
|
|
|
spreadRadius: 0.5,
|
2020-03-22 18:03:53 +01:00
|
|
|
),
|
2020-04-11 19:23:12 +02:00
|
|
|
]),
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: Material(
|
|
|
|
color: Colors.transparent,
|
|
|
|
child: InkWell(
|
|
|
|
borderRadius:
|
|
|
|
BorderRadius.all(Radius.circular(5.0)),
|
|
|
|
onTapDown: (details) => _offset = Offset(
|
|
|
|
details.globalPosition.dx,
|
|
|
|
details.globalPosition.dy),
|
|
|
|
onLongPress: () => _showPopupMenu(
|
2020-06-10 09:42:40 +02:00
|
|
|
_offset,
|
|
|
|
episodes[index],
|
|
|
|
context,
|
|
|
|
isPlaying: data.item1 == episodes[index],
|
|
|
|
isInPlaylist: data.item2
|
|
|
|
.contains(episodes[index].enclosureUrl),
|
|
|
|
),
|
2020-04-11 19:23:12 +02:00
|
|
|
onTap: action,
|
|
|
|
child: Container(
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
|
|
|
decoration: BoxDecoration(
|
|
|
|
borderRadius:
|
|
|
|
BorderRadius.all(Radius.circular(5.0)),
|
|
|
|
border: Border.all(
|
|
|
|
color: context.brightness == Brightness.light
|
|
|
|
? context.primaryColor
|
|
|
|
: context.scaffoldBackgroundColor,
|
|
|
|
width: 1.0,
|
2020-02-21 16:04:02 +01:00
|
|
|
),
|
2020-02-20 16:44:42 +01:00
|
|
|
),
|
2020-04-11 19:23:12 +02:00
|
|
|
child: Column(
|
2020-06-03 14:39:15 +02:00
|
|
|
mainAxisAlignment: MainAxisAlignment.start,
|
2020-03-22 18:03:53 +01:00
|
|
|
children: <Widget>[
|
2020-04-11 19:23:12 +02:00
|
|
|
Expanded(
|
2020-06-03 14:39:15 +02:00
|
|
|
flex: layout == Layout.one ? 1 : 2,
|
2020-04-11 19:23:12 +02:00
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment:
|
|
|
|
MainAxisAlignment.start,
|
|
|
|
children: <Widget>[
|
2020-06-03 14:39:15 +02:00
|
|
|
layout != Layout.one
|
|
|
|
? _circleImage(context,
|
|
|
|
episode: episodes[index],
|
|
|
|
color: _c,
|
|
|
|
boo: boo)
|
|
|
|
: _pubDate(context,
|
|
|
|
episode: episodes[index],
|
|
|
|
color: _c),
|
2020-04-11 19:23:12 +02:00
|
|
|
Spacer(),
|
2020-06-11 17:13:10 +02:00
|
|
|
// _listenIndicater(context,
|
|
|
|
// episode: episodes[index],
|
|
|
|
// isListened: snapshot.data),
|
2020-06-16 06:40:51 +02:00
|
|
|
_isNewIndicator(episodes[index]),
|
2020-06-03 14:39:15 +02:00
|
|
|
_downloadIndicater(context,
|
|
|
|
episode: episodes[index]),
|
|
|
|
_numberIndicater(context,
|
|
|
|
index: index, color: _c)
|
2020-04-11 19:23:12 +02:00
|
|
|
],
|
2020-03-22 18:03:53 +01:00
|
|
|
),
|
2020-02-21 16:04:02 +01:00
|
|
|
),
|
2020-04-11 19:23:12 +02:00
|
|
|
Expanded(
|
2020-06-03 14:39:15 +02:00
|
|
|
flex: layout == Layout.one ? 3 : 5,
|
|
|
|
child: layout != Layout.one
|
|
|
|
? _title(episodes[index])
|
|
|
|
: Row(
|
|
|
|
crossAxisAlignment:
|
|
|
|
CrossAxisAlignment.center,
|
|
|
|
children: [
|
|
|
|
_circleImage(context,
|
|
|
|
episode: episodes[index],
|
|
|
|
color: _c,
|
|
|
|
boo: boo),
|
|
|
|
SizedBox(
|
|
|
|
width: 5,
|
|
|
|
),
|
|
|
|
Expanded(
|
|
|
|
child:
|
|
|
|
_title(episodes[index]))
|
|
|
|
],
|
|
|
|
),
|
2020-03-22 18:03:53 +01:00
|
|
|
),
|
2020-04-11 19:23:12 +02:00
|
|
|
Expanded(
|
|
|
|
flex: 1,
|
|
|
|
child: Row(
|
2020-06-03 14:39:15 +02:00
|
|
|
crossAxisAlignment:
|
|
|
|
CrossAxisAlignment.center,
|
2020-04-11 19:23:12 +02:00
|
|
|
children: <Widget>[
|
2020-06-03 14:39:15 +02:00
|
|
|
layout != Layout.one
|
|
|
|
? Align(
|
|
|
|
alignment: Alignment.bottomLeft,
|
|
|
|
child: _pubDate(context,
|
|
|
|
episode: episodes[index],
|
|
|
|
color: _c),
|
|
|
|
)
|
|
|
|
: SizedBox(width: 1),
|
2020-04-11 19:23:12 +02:00
|
|
|
Spacer(),
|
2020-06-03 14:39:15 +02:00
|
|
|
layout != Layout.three &&
|
2020-04-11 19:23:12 +02:00
|
|
|
episodes[index].duration != 0
|
|
|
|
? Container(
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: Text(
|
|
|
|
_stringForSeconds(
|
2020-04-18 06:48:02 +02:00
|
|
|
episodes[index]
|
|
|
|
.duration
|
|
|
|
.toDouble()),
|
2020-04-11 19:23:12 +02:00
|
|
|
style: TextStyle(
|
|
|
|
fontSize: _width / 35),
|
2020-02-21 16:04:02 +01:00
|
|
|
),
|
2020-04-11 19:23:12 +02:00
|
|
|
)
|
|
|
|
: Center(),
|
2020-04-18 06:48:02 +02:00
|
|
|
episodes[index].duration == 0 ||
|
|
|
|
episodes[index]
|
|
|
|
.enclosureLength ==
|
|
|
|
null ||
|
|
|
|
episodes[index]
|
|
|
|
.enclosureLength ==
|
|
|
|
0 ||
|
|
|
|
layout == Layout.three
|
|
|
|
? Center()
|
|
|
|
: Text(
|
|
|
|
'|',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: _width / 35,
|
|
|
|
// color: _c,
|
|
|
|
// fontStyle: FontStyle.italic,
|
|
|
|
),
|
|
|
|
),
|
2020-06-03 14:39:15 +02:00
|
|
|
layout != Layout.three &&
|
2020-04-11 19:23:12 +02:00
|
|
|
episodes[index]
|
|
|
|
.enclosureLength !=
|
|
|
|
null &&
|
|
|
|
episodes[index]
|
|
|
|
.enclosureLength !=
|
|
|
|
0
|
|
|
|
? Container(
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: Text(
|
|
|
|
((episodes[index]
|
|
|
|
.enclosureLength) ~/
|
|
|
|
1000000)
|
|
|
|
.toString() +
|
|
|
|
'MB',
|
|
|
|
style: TextStyle(
|
|
|
|
fontSize: _width / 35),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Center(),
|
|
|
|
Padding(
|
|
|
|
padding: EdgeInsets.all(1),
|
|
|
|
),
|
2020-06-03 14:39:15 +02:00
|
|
|
showFavorite || layout != Layout.three
|
2020-04-11 19:23:12 +02:00
|
|
|
? FutureBuilder<bool>(
|
|
|
|
future:
|
|
|
|
_isLiked(episodes[index]),
|
|
|
|
initialData: false,
|
|
|
|
builder: (context, snapshot) =>
|
|
|
|
Container(
|
2020-06-03 14:39:15 +02:00
|
|
|
alignment: Alignment.center,
|
2020-04-11 19:23:12 +02:00
|
|
|
child: (snapshot.data)
|
|
|
|
? IconTheme(
|
|
|
|
data: IconThemeData(
|
2020-06-03 14:39:15 +02:00
|
|
|
size:
|
|
|
|
_width / 35),
|
2020-04-11 19:23:12 +02:00
|
|
|
child: Icon(
|
|
|
|
Icons.favorite,
|
|
|
|
color: Colors.red,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Center(),
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Center(),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
2020-03-22 18:03:53 +01:00
|
|
|
],
|
|
|
|
),
|
2020-02-21 16:04:02 +01:00
|
|
|
),
|
2020-04-11 19:23:12 +02:00
|
|
|
),
|
2020-03-22 18:03:53 +01:00
|
|
|
),
|
2020-04-11 19:23:12 +02:00
|
|
|
);
|
|
|
|
}),
|
2020-03-14 04:14:24 +01:00
|
|
|
),
|
2020-05-06 14:08:41 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
},
|
2020-03-14 04:14:24 +01:00
|
|
|
),
|
2020-02-20 16:44:42 +01:00
|
|
|
);
|
2020-02-09 13:29:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-03-22 18:03:53 +01:00
|
|
|
class OpenContainerWrapper extends StatelessWidget {
|
|
|
|
const OpenContainerWrapper({
|
|
|
|
this.closedBuilder,
|
|
|
|
this.episode,
|
|
|
|
this.playerRunning,
|
|
|
|
});
|
|
|
|
|
|
|
|
final OpenContainerBuilder closedBuilder;
|
|
|
|
final EpisodeBrief episode;
|
|
|
|
final bool playerRunning;
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Selector<AudioPlayerNotifier, bool>(
|
|
|
|
selector: (_, audio) => audio.playerRunning,
|
|
|
|
builder: (_, data, __) => OpenContainer(
|
|
|
|
playerRunning: data,
|
|
|
|
flightWidget: CircleAvatar(
|
|
|
|
backgroundImage: FileImage(File("${episode.imagePath}")),
|
|
|
|
),
|
|
|
|
transitionDuration: Duration(milliseconds: 400),
|
|
|
|
beginColor: Theme.of(context).primaryColor,
|
|
|
|
endColor: Theme.of(context).primaryColor,
|
|
|
|
closedColor: Theme.of(context).brightness == Brightness.light
|
|
|
|
? Theme.of(context).primaryColor
|
|
|
|
: Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
openColor: Theme.of(context).scaffoldBackgroundColor,
|
|
|
|
openElevation: 0,
|
|
|
|
closedElevation: 0,
|
|
|
|
openShape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(10.0))),
|
|
|
|
closedShape: RoundedRectangleBorder(
|
|
|
|
borderRadius: BorderRadius.all(Radius.circular(5.0))),
|
|
|
|
transitionType: ContainerTransitionType.fadeThrough,
|
|
|
|
openBuilder: (BuildContext context, VoidCallback _, bool boo) {
|
|
|
|
return EpisodeDetail(
|
|
|
|
episodeItem: episode,
|
|
|
|
hide: boo,
|
|
|
|
);
|
|
|
|
},
|
|
|
|
tappable: true,
|
|
|
|
closedBuilder: closedBuilder,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|