tsacdop-podcast-app-android/lib/podcasts/podcast_group.dart

604 lines
25 KiB
Dart
Raw Normal View History

import 'dart:io';
import 'dart:math' as math;
import 'package:flutter/foundation.dart';
import 'package:flutter/material.dart';
import 'package:flutter/services.dart';
import 'package:fluttertoast/fluttertoast.dart';
import 'package:permission_handler/permission_handler.dart';
import 'package:provider/provider.dart';
2020-07-26 12:20:42 +02:00
import '../local_storage/sqflite_localpodcast.dart';
2020-05-06 18:50:32 +02:00
import '../state/podcast_group.dart';
import '../type/podcastlocal.dart';
import '../util/duraiton_picker.dart';
import '../util/extension_helper.dart';
import '../util/general_dialog.dart';
class PodcastGroupList extends StatefulWidget {
final PodcastGroup group;
PodcastGroupList({this.group, Key key}) : super(key: key);
@override
_PodcastGroupListState createState() => _PodcastGroupListState();
}
class _PodcastGroupListState extends State<PodcastGroupList> {
@override
Widget build(BuildContext context) {
var groupList = Provider.of<GroupList>(context, listen: false);
return widget.group.podcastList.length == 0
? Container(
color: Theme.of(context).primaryColor,
)
: Container(
color: Theme.of(context).primaryColor,
child: ReorderableListView(
2020-07-26 12:20:42 +02:00
onReorder: (oldIndex, newIndex) {
setState(() {
if (newIndex > oldIndex) {
newIndex -= 1;
}
2020-07-26 12:20:42 +02:00
final podcast = widget.group.podcasts.removeAt(oldIndex);
widget.group.podcasts.insert(newIndex, podcast);
});
2020-08-14 14:13:10 +02:00
widget.group.orderedPodcasts = widget.group.podcasts;
2020-03-31 18:36:20 +02:00
groupList.addToOrderChanged(widget.group);
},
2020-07-26 12:20:42 +02:00
children: widget.group.podcasts.map<Widget>((podcastLocal) {
return Container(
decoration:
BoxDecoration(color: Theme.of(context).primaryColor),
key: ObjectKey(podcastLocal.title),
2020-08-14 14:13:10 +02:00
child: _PodcastCard(
podcastLocal: podcastLocal,
group: widget.group,
),
);
}).toList(),
),
);
}
}
2020-08-14 14:13:10 +02:00
class _PodcastCard extends StatefulWidget {
final PodcastLocal podcastLocal;
final PodcastGroup group;
2020-08-14 14:13:10 +02:00
_PodcastCard({this.podcastLocal, this.group, Key key}) : super(key: key);
@override
2020-08-14 14:13:10 +02:00
__PodcastCardState createState() => __PodcastCardState();
}
2020-08-14 14:13:10 +02:00
class __PodcastCardState extends State<_PodcastCard>
with SingleTickerProviderStateMixin {
bool _loadMenu;
bool _addGroup;
List<PodcastGroup> _selectedGroups;
List<PodcastGroup> _belongGroups;
AnimationController _controller;
Animation _animation;
double _value;
int _seconds;
int _skipSeconds;
2020-08-11 19:06:56 +02:00
Future<int> _getSkipSecond(String id) async {
var dbHelper = DBHelper();
var seconds = await dbHelper.getSkipSecondsStart(id);
_skipSeconds = seconds;
return seconds;
}
2020-08-11 19:06:56 +02:00
_saveSkipSeconds(String id, int seconds) async {
var dbHelper = DBHelper();
await dbHelper.saveSkipSecondsStart(id, seconds);
}
2020-06-07 20:42:27 +02:00
_setAutoDownload(String id, bool boo) async {
2020-07-26 12:20:42 +02:00
var permission = await _checkPermmison();
if (permission) {
2020-07-26 12:20:42 +02:00
var dbHelper = DBHelper();
await dbHelper.saveAutoDownload(id, boo: boo);
}
2020-06-07 20:42:27 +02:00
}
Future<bool> _getAutoDownload(String id) async {
2020-07-26 12:20:42 +02:00
var dbHelper = DBHelper();
2020-06-07 20:42:27 +02:00
return await dbHelper.getAutoDownload(id);
}
Future<bool> _checkPermmison() async {
2020-07-26 12:20:42 +02:00
var permission = await Permission.storage.status;
if (permission != PermissionStatus.granted) {
2020-07-26 12:20:42 +02:00
var permissions = await [Permission.storage].request();
if (permissions[Permission.storage] == PermissionStatus.granted) {
return true;
} else {
return false;
}
} else {
return true;
}
}
@override
void initState() {
super.initState();
_loadMenu = false;
_addGroup = false;
_selectedGroups = [widget.group];
_value = 0;
_seconds = 0;
_controller =
AnimationController(vsync: this, duration: Duration(milliseconds: 300));
_animation = Tween<double>(begin: 0.0, end: 1.0).animate(_controller)
..addListener(() {
setState(() {
_value = _animation.value;
});
});
}
2020-06-07 20:42:27 +02:00
Widget _buttonOnMenu({Widget icon, VoidCallback onTap, String tooltip}) =>
Material(
color: Colors.transparent,
child: InkWell(
onTap: onTap,
child: Container(
height: 50.0,
2020-06-07 20:42:27 +02:00
padding: EdgeInsets.symmetric(horizontal: 5.0),
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.center,
children: [
Expanded(
child: icon,
),
Text(tooltip, style: context.textTheme.subtitle2),
],
)),
),
);
@override
Widget build(BuildContext context) {
2020-08-15 19:43:45 +02:00
final c = widget.podcastLocal.backgroudColor(context);
2020-07-06 11:50:20 +02:00
final s = context.s;
2020-08-14 14:13:10 +02:00
var width = context.width;
var groupList = context.watch<GroupList>();
_belongGroups = groupList.getPodcastGroup(widget.podcastLocal.id);
return Container(
decoration: BoxDecoration(
border: Border(
bottom: Divider.createBorderSide(context),
),
),
child: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
InkWell(
onTap: () => setState(
() {
_loadMenu = !_loadMenu;
2020-07-26 12:20:42 +02:00
if (_value == 0) {
_controller.forward();
2020-07-26 12:20:42 +02:00
} else {
_controller.reverse();
2020-07-26 12:20:42 +02:00
}
},
),
child: Container(
padding: EdgeInsets.symmetric(horizontal: 12),
height: 100,
child: Row(
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(
child: Icon(
Icons.unfold_more,
2020-08-14 14:13:10 +02:00
color: c,
),
),
Container(
child: ClipRRect(
borderRadius: BorderRadius.all(Radius.circular(30)),
child: Container(
height: 60,
width: 60,
child: Image.file(
File("${widget.podcastLocal.imagePath}")),
),
),
),
Container(
2020-08-14 14:13:10 +02:00
width: width / 2,
padding: EdgeInsets.symmetric(horizontal: 10),
alignment: Alignment.centerLeft,
child: Column(
mainAxisAlignment: MainAxisAlignment.start,
mainAxisSize: MainAxisSize.min,
children: <Widget>[
Container(
alignment: Alignment.centerLeft,
child: Text(
widget.podcastLocal.title,
maxLines: 2,
overflow: TextOverflow.fade,
style: TextStyle(
fontWeight: FontWeight.bold, fontSize: 15),
),
),
Row(
children: _belongGroups.map((group) {
return Container(
padding: EdgeInsets.only(right: 5.0),
child: Text(group.name));
}).toList(),
),
],
)),
Spacer(),
Transform.rotate(
angle: math.pi * _value,
child: Icon(Icons.keyboard_arrow_down),
),
Padding(
padding: EdgeInsets.symmetric(horizontal: 5.0),
),
]),
),
),
!_loadMenu
? Center()
: Container(
child: Container(
decoration: BoxDecoration(
color: Theme.of(context).primaryColor,
border: Border(
bottom: BorderSide(
color: Theme.of(context).primaryColorDark),
top: BorderSide(
color: Theme.of(context).primaryColorDark))),
height: 50,
child: _addGroup
? Row(
mainAxisAlignment: MainAxisAlignment.start,
children: <Widget>[
Expanded(
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Row(
2020-07-26 12:20:42 +02:00
children:
groupList.groups.map<Widget>((group) {
return Container(
padding: EdgeInsets.only(left: 5.0),
child: FilterChip(
key: ValueKey<String>(group.id),
label: Text(group.name),
selected:
_selectedGroups.contains(group),
2020-07-26 12:20:42 +02:00
onSelected: (value) {
setState(() {
if (!value) {
_selectedGroups.remove(group);
} else {
_selectedGroups.add(group);
}
});
},
),
);
}).toList()),
),
),
2020-06-02 16:05:49 +02:00
SizedBox(
width: 100,
child: Row(
2020-06-02 16:05:49 +02:00
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
IconButton(
icon: Icon(Icons.clear),
onPressed: () => setState(() {
_addGroup = false;
}),
),
IconButton(
onPressed: () async {
if (_selectedGroups.length > 0) {
setState(() {
_addGroup = false;
});
await groupList.changeGroup(
widget.podcastLocal.id,
_selectedGroups,
);
Fluttertoast.showToast(
2020-07-06 11:50:20 +02:00
msg: s.toastSettingSaved,
gravity: ToastGravity.BOTTOM,
);
2020-07-26 12:20:42 +02:00
} else {
Fluttertoast.showToast(
2020-07-06 11:50:20 +02:00
msg: s.toastOneGroup,
gravity: ToastGravity.BOTTOM,
);
2020-07-26 12:20:42 +02:00
}
},
icon: Icon(Icons.done),
),
],
),
)
],
)
: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
_buttonOnMenu(
2020-06-07 20:42:27 +02:00
icon: Icon(Icons.add,
size: _value == 0 ? 1 : 20 * _value),
onTap: () {
setState(() {
_addGroup = true;
});
},
2020-07-06 11:50:20 +02:00
tooltip: s.groups(0)),
2020-06-07 20:42:27 +02:00
FutureBuilder<bool>(
future:
_getAutoDownload(widget.podcastLocal.id),
initialData: false,
builder: (context, snapshot) {
return _buttonOnMenu(
icon: Container(
2020-06-11 17:13:10 +02:00
child: Icon(Icons.file_download,
size: _value * 15,
color: snapshot.data
? Colors.white
: null),
height: _value == 0 ? 1 : 20 * _value,
width: _value == 0 ? 1 : 20 * _value,
decoration: BoxDecoration(
2020-06-11 17:13:10 +02:00
border: snapshot.data
? Border.all(
width: 1,
color: snapshot.data
? context.accentColor
: context.textTheme
.subtitle1.color)
: null,
shape: BoxShape.circle,
color: snapshot.data
? context.accentColor
: null),
),
2020-07-06 11:50:20 +02:00
tooltip: s.autoDownload,
2020-06-11 17:13:10 +02:00
onTap: () async {
await _setAutoDownload(
widget.podcastLocal.id,
2020-06-07 20:42:27 +02:00
!snapshot.data);
setState(() {});
},
);
},
),
FutureBuilder<int>(
2020-08-11 19:06:56 +02:00
future:
_getSkipSecond(widget.podcastLocal.id),
2020-06-07 20:42:27 +02:00
initialData: 0,
builder: (context, snapshot) {
return _buttonOnMenu(
icon: Icon(
Icons.fast_forward,
size: _value == 0 ? 1 : 20 * (_value),
),
2020-07-26 12:20:42 +02:00
tooltip:
2020-08-11 19:06:56 +02:00
'Skip${snapshot.data == 0 ? '' : snapshot.data.toTime}',
2020-06-07 20:42:27 +02:00
onTap: () {
generalDialog(
context,
2020-07-06 11:50:20 +02:00
title: Text(s.skipSecondsAtStart,
2020-06-07 20:42:27 +02:00
maxLines: 2),
content: DurationPicker(
duration: Duration(
seconds: _skipSeconds ?? 0),
onChange: (value) =>
_seconds = value.inSeconds,
),
actions: <Widget>[
FlatButton(
2020-09-12 12:22:26 +02:00
splashColor: context.accentColor
.withAlpha(70),
2020-06-07 20:42:27 +02:00
onPressed: () {
Navigator.of(context).pop();
_seconds = 0;
},
child: Text(
2020-07-06 11:50:20 +02:00
s.cancel,
2020-06-07 20:42:27 +02:00
style: TextStyle(
color: Colors.grey[600]),
),
),
FlatButton(
2020-09-12 12:22:26 +02:00
splashColor: context.accentColor
.withAlpha(70),
2020-06-07 20:42:27 +02:00
onPressed: () {
Navigator.of(context).pop();
2020-08-11 19:06:56 +02:00
_saveSkipSeconds(
2020-06-07 20:42:27 +02:00
widget.podcastLocal.id,
_seconds);
},
child: Text(
2020-07-06 11:50:20 +02:00
s.confirm,
2020-06-07 20:42:27 +02:00
style: TextStyle(
color:
context.accentColor),
),
)
],
);
});
}),
_buttonOnMenu(
2020-06-07 20:42:27 +02:00
icon: Icon(
Icons.delete,
color: Colors.red,
2020-06-07 20:42:27 +02:00
size: _value == 0 ? 1 : 20 * _value,
),
2020-07-06 11:50:20 +02:00
tooltip: s.remove,
2020-06-07 20:42:27 +02:00
onTap: () {
generalDialog(
context,
2020-07-06 11:50:20 +02:00
title: Text(s.removeConfirm),
content: Text(s.removePodcastDes),
2020-06-07 20:42:27 +02:00
actions: <Widget>[
FlatButton(
2020-09-12 12:22:26 +02:00
splashColor:
context.accentColor.withAlpha(70),
2020-06-07 20:42:27 +02:00
onPressed: () =>
Navigator.of(context).pop(),
child: Text(
2020-07-06 11:50:20 +02:00
s.cancel,
2020-06-07 20:42:27 +02:00
style: TextStyle(
color: Colors.grey[600]),
),
),
FlatButton(
splashColor: Colors.red.withAlpha(70),
2020-06-07 20:42:27 +02:00
onPressed: () {
groupList.removePodcast(
2020-09-23 16:19:07 +02:00
widget.podcastLocal);
2020-06-07 20:42:27 +02:00
Navigator.of(context).pop();
},
child: Text(
2020-07-06 11:50:20 +02:00
s.confirm,
2020-06-07 20:42:27 +02:00
style: TextStyle(color: Colors.red),
),
)
],
);
}),
],
),
),
),
],
),
);
}
}
class RenameGroup extends StatefulWidget {
final PodcastGroup group;
RenameGroup({this.group, Key key}) : super(key: key);
@override
_RenameGroupState createState() => _RenameGroupState();
}
class _RenameGroupState extends State<RenameGroup> {
TextEditingController _controller;
String _newName;
int _error;
@override
void initState() {
super.initState();
_error = 0;
2020-09-10 12:09:57 +02:00
_controller = TextEditingController(text: widget.group.name);
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
var groupList = Provider.of<GroupList>(context, listen: false);
List list = groupList.groups.map((e) => e.name).toList();
2020-07-06 11:50:20 +02:00
final s = context.s;
return AnnotatedRegion<SystemUiOverlayStyle>(
value: SystemUiOverlayStyle(
statusBarIconBrightness: Brightness.light,
systemNavigationBarColor:
Theme.of(context).brightness == Brightness.light
? Color.fromRGBO(113, 113, 113, 1)
: Color.fromRGBO(5, 5, 5, 1),
),
child: AlertDialog(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(10))),
elevation: 1,
contentPadding: EdgeInsets.symmetric(horizontal: 20),
2020-06-07 20:42:27 +02:00
titlePadding: EdgeInsets.only(top: 20, left: 20, right: 20, bottom: 20),
actionsPadding: EdgeInsets.all(0),
actions: <Widget>[
FlatButton(
2020-09-12 12:22:26 +02:00
splashColor: context.accentColor.withAlpha(70),
onPressed: () => Navigator.of(context).pop(),
child: Text(
2020-07-06 11:50:20 +02:00
s.cancel,
style: TextStyle(color: Colors.grey[600]),
),
),
FlatButton(
2020-09-12 12:22:26 +02:00
splashColor: context.accentColor.withAlpha(70),
onPressed: () async {
if (list.contains(_newName)) {
setState(() => _error = 1);
} else {
2020-07-26 12:20:42 +02:00
var newGroup = PodcastGroup(_newName,
color: widget.group.color,
id: widget.group.id,
podcastList: widget.group.podcastList);
groupList.updateGroup(newGroup);
Navigator.of(context).pop();
}
},
2020-07-06 11:50:20 +02:00
child: Text(s.confirm,
style: TextStyle(color: Theme.of(context).accentColor)),
)
],
2020-07-06 11:50:20 +02:00
title:
SizedBox(width: context.width - 160, child: Text(s.editGroupName)),
content: Column(
mainAxisSize: MainAxisSize.min,
children: <Widget>[
TextField(
decoration: InputDecoration(
contentPadding: EdgeInsets.symmetric(horizontal: 10),
hintStyle: TextStyle(fontSize: 18),
filled: true,
focusedBorder: UnderlineInputBorder(
borderSide: BorderSide(
color: Theme.of(context).accentColor, width: 2.0),
),
enabledBorder: UnderlineInputBorder(
borderSide: BorderSide(
color: Theme.of(context).accentColor, width: 2.0),
),
),
cursorRadius: Radius.circular(2),
autofocus: true,
maxLines: 1,
controller: _controller,
onChanged: (value) {
_newName = value;
},
),
Container(
alignment: Alignment.centerLeft,
child: (_error == 1)
? Text(
2020-07-06 11:50:20 +02:00
s.groupExisted,
style: TextStyle(color: Colors.red[400]),
)
: Center(),
),
],
),
),
);
}
}