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';
|
2020-06-30 21:14:36 +02:00
|
|
|
import 'package:focused_menu/focused_menu.dart';
|
|
|
|
import 'package:focused_menu/modals.dart';
|
2020-02-09 13:29:09 +01:00
|
|
|
import 'package:google_fonts/google_fonts.dart';
|
2020-07-07 17:29:21 +02:00
|
|
|
import 'package:intl/intl.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-07-07 17:29:21 +02:00
|
|
|
import '../state/audio_state.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';
|
2020-07-07 17:29:21 +02:00
|
|
|
import '../episodes/episode_detail.dart';
|
2020-05-06 18:50:32 +02:00
|
|
|
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
|
|
|
|
2020-06-30 21:14:36 +02:00
|
|
|
// ignore: must_be_immutable
|
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-07-07 17:29:21 +02:00
|
|
|
String _dateToString(BuildContext context, {int pubDate}) {
|
|
|
|
final s = context.s;
|
|
|
|
DateTime date = DateTime.fromMillisecondsSinceEpoch(pubDate, isUtc: true);
|
|
|
|
var difference = DateTime.now().toUtc().difference(date);
|
|
|
|
if (difference.inHours < 24) {
|
|
|
|
return s.hoursAgo(difference.inHours);
|
|
|
|
} else if (difference.inDays < 7) {
|
|
|
|
return s.daysAgo(difference.inDays);
|
|
|
|
} else {
|
|
|
|
return DateFormat.yMMMd().format(
|
|
|
|
DateTime.fromMillisecondsSinceEpoch(pubDate, isUtc: true).toLocal());
|
|
|
|
}
|
|
|
|
}
|
2020-06-05 20:33:47 +02:00
|
|
|
|
2020-04-11 19:23:12 +02:00
|
|
|
Future<int> _isListened(EpisodeBrief episode) async {
|
|
|
|
DBHelper dbHelper = DBHelper();
|
|
|
|
return await dbHelper.isListened(episode.enclosureUrl);
|
|
|
|
}
|
|
|
|
|
2020-07-07 19:36:40 +02:00
|
|
|
Future<Tuple5<int, bool, bool, bool, List<int>>> _initData(
|
2020-07-04 16:42:56 +02:00
|
|
|
EpisodeBrief episode) async {
|
2020-07-06 11:50:20 +02:00
|
|
|
List<int> menuList = await _getEpisodeMenu();
|
2020-07-07 19:36:40 +02:00
|
|
|
bool tapToOpen = await _getTapToOpenPopupMenu();
|
2020-06-30 21:14:36 +02:00
|
|
|
int listened = await _isListened(episode);
|
|
|
|
bool liked = await _isLiked(episode);
|
|
|
|
bool downloaded = await _isDownloaded(episode);
|
2020-07-07 19:36:40 +02:00
|
|
|
return Tuple5(listened, liked, downloaded, tapToOpen, menuList);
|
2020-06-30 21:14:36 +02:00
|
|
|
}
|
|
|
|
|
2020-04-11 19:23:12 +02:00
|
|
|
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);
|
|
|
|
}
|
|
|
|
|
2020-07-07 19:36:40 +02:00
|
|
|
Future<bool> _getTapToOpenPopupMenu() async {
|
|
|
|
KeyValueStorage tapToOpenPopupMenuStorage =
|
|
|
|
KeyValueStorage(tapToOpenPopupMenuKey);
|
2020-07-16 11:35:01 +02:00
|
|
|
bool boo = await tapToOpenPopupMenuStorage.getBool(defaultValue: false);
|
|
|
|
return boo;
|
2020-07-07 19:36:40 +02:00
|
|
|
}
|
|
|
|
|
2020-06-10 09:42:40 +02:00
|
|
|
_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-30 21:14:36 +02:00
|
|
|
Widget _downloadIndicater(BuildContext context,
|
|
|
|
{EpisodeBrief episode, bool isDownloaded}) =>
|
2020-06-03 14:39:15 +02:00
|
|
|
showDownload || layout != Layout.three
|
2020-06-30 21:14:36 +02:00
|
|
|
? isDownloaded
|
|
|
|
? 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()
|
2020-06-03 14:39:15 +02:00
|
|
|
: 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(
|
2020-07-07 17:29:21 +02:00
|
|
|
_dateToString(context, pubDate: episode.pubDate),
|
2020-06-03 14:39:15 +02:00
|
|
|
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-06-30 21:14:36 +02:00
|
|
|
var audio = Provider.of<AudioPlayerNotifier>(context, listen: false);
|
|
|
|
var downloader = Provider.of<DownloadState>(context, listen: false);
|
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-07-02 14:58:55 +02:00
|
|
|
final s = context.s;
|
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-30 21:14:36 +02:00
|
|
|
scrollController.addListener(() {});
|
|
|
|
|
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-06-30 21:14:36 +02:00
|
|
|
closedBuilder: (context, action, boo) => FutureBuilder<
|
2020-07-07 19:36:40 +02:00
|
|
|
Tuple5<int, bool, bool, bool, List<int>>>(
|
2020-06-30 21:14:36 +02:00
|
|
|
future: _initData(episodes[index]),
|
2020-07-07 19:36:40 +02:00
|
|
|
initialData: Tuple5(0, false, false, false, []),
|
2020-04-11 19:23:12 +02:00
|
|
|
builder: (BuildContext context, AsyncSnapshot snapshot) {
|
2020-06-30 21:14:36 +02:00
|
|
|
int isListened = snapshot.data.item1;
|
|
|
|
bool isLiked = snapshot.data.item2;
|
|
|
|
bool isDownloaded = snapshot.data.item3;
|
2020-07-07 19:36:40 +02:00
|
|
|
bool tapToOpen = snapshot.data.item4;
|
|
|
|
List<int> menuList = snapshot.data.item5;
|
2020-04-11 19:23:12 +02:00
|
|
|
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)),
|
2020-06-30 21:14:36 +02:00
|
|
|
color: isListened > 0
|
2020-04-11 19:23:12 +02:00
|
|
|
? 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,
|
2020-06-30 21:14:36 +02:00
|
|
|
child: Container(
|
|
|
|
decoration: BoxDecoration(
|
2020-04-11 19:23:12 +02:00
|
|
|
borderRadius:
|
|
|
|
BorderRadius.all(Radius.circular(5.0)),
|
2020-06-30 21:14:36 +02:00
|
|
|
border: Border.all(
|
|
|
|
color: context.brightness == Brightness.light
|
|
|
|
? context.primaryColor
|
|
|
|
: context.scaffoldBackgroundColor,
|
|
|
|
width: 1.0,
|
2020-06-10 09:42:40 +02:00
|
|
|
),
|
2020-06-30 21:14:36 +02:00
|
|
|
),
|
|
|
|
child: FocusedMenuHolder(
|
|
|
|
blurSize: 0.0,
|
|
|
|
menuItemExtent: 45,
|
|
|
|
menuBoxDecoration: BoxDecoration(
|
|
|
|
color: Colors.transparent,
|
2020-04-11 19:23:12 +02:00
|
|
|
borderRadius:
|
2020-06-30 21:14:36 +02:00
|
|
|
BorderRadius.all(Radius.circular(15.0))),
|
|
|
|
duration: Duration(milliseconds: 100),
|
2020-07-07 19:36:40 +02:00
|
|
|
tapMode:
|
|
|
|
tapToOpen ? TapMode.onTap : TapMode.onLongPress,
|
2020-06-30 21:14:36 +02:00
|
|
|
animateMenuItems: false,
|
|
|
|
blurBackgroundColor:
|
|
|
|
context.brightness == Brightness.light
|
|
|
|
? Colors.white38
|
|
|
|
: Colors.black38,
|
|
|
|
bottomOffsetHeight: 10,
|
|
|
|
menuOffset: 6,
|
|
|
|
menuItems: <FocusedMenuItem>[
|
|
|
|
FocusedMenuItem(
|
|
|
|
backgroundColor:
|
|
|
|
context.brightness == Brightness.light
|
|
|
|
? context.primaryColor
|
|
|
|
: context.scaffoldBackgroundColor,
|
|
|
|
title: Text(data.item1 != episodes[index]
|
2020-07-02 14:58:55 +02:00
|
|
|
? s.play
|
2020-07-04 16:42:56 +02:00
|
|
|
: s.playing),
|
2020-06-30 21:14:36 +02:00
|
|
|
trailingIcon: Icon(
|
|
|
|
LineIcons.play_circle_solid,
|
|
|
|
color: Theme.of(context).accentColor,
|
|
|
|
),
|
|
|
|
onPressed: () {
|
|
|
|
if (data.item1 != episodes[index])
|
|
|
|
audio.episodeLoad(episodes[index]);
|
|
|
|
}),
|
2020-07-04 16:42:56 +02:00
|
|
|
menuList.contains(1)
|
2020-06-30 21:14:36 +02:00
|
|
|
? FocusedMenuItem(
|
|
|
|
backgroundColor:
|
|
|
|
context.brightness == Brightness.light
|
|
|
|
? context.primaryColor
|
|
|
|
: context.scaffoldBackgroundColor,
|
|
|
|
title: data.item2.contains(
|
|
|
|
episodes[index].enclosureUrl)
|
2020-07-04 16:42:56 +02:00
|
|
|
? Text(s.remove)
|
2020-07-02 14:58:55 +02:00
|
|
|
: Text(s.later),
|
2020-06-30 21:14:36 +02:00
|
|
|
trailingIcon: Icon(
|
|
|
|
LineIcons.clock_solid,
|
|
|
|
color: Colors.cyan,
|
|
|
|
),
|
|
|
|
onPressed: () {
|
|
|
|
if (!data.item2.contains(
|
|
|
|
episodes[index].enclosureUrl)) {
|
|
|
|
audio.addToPlaylist(episodes[index]);
|
|
|
|
Fluttertoast.showToast(
|
2020-07-04 16:42:56 +02:00
|
|
|
msg: s.toastAddPlaylist,
|
2020-06-30 21:14:36 +02:00
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
audio
|
|
|
|
.delFromPlaylist(episodes[index]);
|
|
|
|
Fluttertoast.showToast(
|
2020-07-04 16:42:56 +02:00
|
|
|
msg: s.toastRemovePlaylist,
|
2020-06-30 21:14:36 +02:00
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
: null,
|
2020-07-04 16:42:56 +02:00
|
|
|
menuList.contains(2)
|
2020-06-30 21:14:36 +02:00
|
|
|
? FocusedMenuItem(
|
|
|
|
backgroundColor:
|
|
|
|
context.brightness == Brightness.light
|
|
|
|
? context.primaryColor
|
|
|
|
: context.scaffoldBackgroundColor,
|
|
|
|
title: isLiked
|
2020-07-02 14:58:55 +02:00
|
|
|
? Text(s.unlike)
|
|
|
|
: Text(s.like),
|
2020-06-30 21:14:36 +02:00
|
|
|
trailingIcon: Icon(LineIcons.heart,
|
|
|
|
color: Colors.red, size: 21),
|
|
|
|
onPressed: () async {
|
|
|
|
if (isLiked) {
|
|
|
|
await _setUnliked(
|
|
|
|
episodes[index].enclosureUrl);
|
|
|
|
audio.setEpisodeState = true;
|
|
|
|
Fluttertoast.showToast(
|
2020-07-04 16:42:56 +02:00
|
|
|
msg: s.unliked,
|
2020-06-30 21:14:36 +02:00
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
} else {
|
|
|
|
await _saveLiked(
|
|
|
|
episodes[index].enclosureUrl);
|
|
|
|
audio.setEpisodeState = true;
|
|
|
|
Fluttertoast.showToast(
|
2020-07-04 16:42:56 +02:00
|
|
|
msg: s.liked,
|
2020-06-30 21:14:36 +02:00
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
: null,
|
2020-07-04 16:42:56 +02:00
|
|
|
menuList.contains(3)
|
2020-06-30 21:14:36 +02:00
|
|
|
? FocusedMenuItem(
|
|
|
|
backgroundColor:
|
|
|
|
context.brightness == Brightness.light
|
|
|
|
? context.primaryColor
|
|
|
|
: context.scaffoldBackgroundColor,
|
|
|
|
title: isListened > 0
|
2020-07-04 16:42:56 +02:00
|
|
|
? Text(s.listened,
|
2020-06-30 21:14:36 +02:00
|
|
|
style: TextStyle(
|
|
|
|
color: context.textColor
|
|
|
|
.withOpacity(0.5)))
|
|
|
|
: Text(
|
2020-07-02 14:58:55 +02:00
|
|
|
s.markListened,
|
2020-06-30 21:14:36 +02:00
|
|
|
maxLines: 1,
|
|
|
|
overflow: TextOverflow.ellipsis,
|
|
|
|
),
|
|
|
|
trailingIcon: SizedBox(
|
|
|
|
width: 23,
|
|
|
|
height: 23,
|
|
|
|
child: CustomPaint(
|
|
|
|
painter: ListenedAllPainter(
|
|
|
|
Colors.blue,
|
|
|
|
stroke: 1.5)),
|
|
|
|
),
|
|
|
|
onPressed: () async {
|
|
|
|
if (isListened < 1) {
|
|
|
|
await _markListened(episodes[index]);
|
|
|
|
audio.setEpisodeState = true;
|
|
|
|
Fluttertoast.showToast(
|
2020-07-02 14:58:55 +02:00
|
|
|
msg: s.markListened,
|
2020-06-30 21:14:36 +02:00
|
|
|
gravity: ToastGravity.BOTTOM,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
})
|
|
|
|
: null,
|
2020-07-04 16:42:56 +02:00
|
|
|
menuList.contains(4)
|
2020-06-30 21:14:36 +02:00
|
|
|
? FocusedMenuItem(
|
|
|
|
backgroundColor:
|
|
|
|
context.brightness == Brightness.light
|
|
|
|
? context.primaryColor
|
|
|
|
: context.scaffoldBackgroundColor,
|
|
|
|
title: isDownloaded
|
2020-07-04 16:42:56 +02:00
|
|
|
? Text(s.downloaded,
|
2020-06-30 21:14:36 +02:00
|
|
|
style: TextStyle(
|
|
|
|
color: context.textColor
|
|
|
|
.withOpacity(0.5)))
|
2020-07-02 14:58:55 +02:00
|
|
|
: Text(s.download),
|
2020-06-30 21:14:36 +02:00
|
|
|
trailingIcon: Icon(
|
|
|
|
LineIcons.download_solid,
|
|
|
|
color: Colors.green),
|
|
|
|
onPressed: () {
|
|
|
|
if (!isDownloaded)
|
|
|
|
downloader.startTask(episodes[index]);
|
|
|
|
})
|
|
|
|
: null
|
|
|
|
],
|
|
|
|
action: action,
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.all(8.0),
|
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,
|
2020-06-30 21:14:36 +02:00
|
|
|
episode: episodes[index],
|
|
|
|
isDownloaded: isDownloaded),
|
2020-06-03 14:39:15 +02:00
|
|
|
_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-07-13 08:31:21 +02:00
|
|
|
if (layout != Layout.one)
|
|
|
|
Align(
|
|
|
|
alignment: Alignment.bottomLeft,
|
|
|
|
child: _pubDate(context,
|
|
|
|
episode: episodes[index],
|
|
|
|
color: _c),
|
|
|
|
),
|
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-06-30 21:14:36 +02:00
|
|
|
? isLiked
|
|
|
|
? IconTheme(
|
|
|
|
data: IconThemeData(
|
|
|
|
size: _width / 35),
|
|
|
|
child: Icon(
|
|
|
|
Icons.favorite,
|
|
|
|
color: Colors.red,
|
|
|
|
),
|
|
|
|
)
|
|
|
|
: Center()
|
|
|
|
: Center()
|
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
|
|
|
),
|
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,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|