tsacdop-podcast-app-android/lib/home/home_menu.dart

217 lines
7.1 KiB
Dart
Raw Normal View History

2020-02-09 13:29:09 +01:00
import 'dart:async';
2020-08-10 20:41:22 +02:00
import 'dart:developer' as developer;
2020-07-26 12:20:42 +02:00
import 'dart:io';
2020-02-11 14:48:11 +01:00
2020-02-09 13:29:09 +01:00
import 'package:file_picker/file_picker.dart';
2020-07-26 12:20:42 +02:00
import 'package:flutter/material.dart';
2020-02-09 13:29:09 +01:00
import 'package:flutter/services.dart';
import 'package:fluttertoast/fluttertoast.dart';
2020-07-26 12:20:42 +02:00
import 'package:line_icons/line_icons.dart';
import 'package:provider/provider.dart';
2020-02-11 14:48:11 +01:00
2020-07-26 12:20:42 +02:00
import '../local_storage/key_value_storage.dart';
2020-09-23 16:19:07 +02:00
import '../service/opml_build.dart';
2020-05-06 18:50:32 +02:00
import '../settings/settting.dart';
2020-07-26 12:20:42 +02:00
import '../state/podcast_group.dart';
2020-05-06 18:50:32 +02:00
import '../state/refresh_podcast.dart';
import '../util/extension_helper.dart';
2020-02-09 13:29:09 +01:00
import 'about.dart';
class PopupMenu extends StatefulWidget {
@override
_PopupMenuState createState() => _PopupMenuState();
}
class _PopupMenuState extends State<PopupMenu> {
2020-07-06 11:50:20 +02:00
Future<String> _getRefreshDate(BuildContext context) async {
int refreshDate;
2020-07-26 12:20:42 +02:00
var refreshstorage = KeyValueStorage('refreshdate');
var i = await refreshstorage.getInt();
if (i == 0) {
2020-07-26 12:20:42 +02:00
var refreshstorage = KeyValueStorage('refreshdate');
await refreshstorage.saveInt(DateTime.now().millisecondsSinceEpoch);
refreshDate = DateTime.now().millisecondsSinceEpoch;
} else {
refreshDate = i;
}
2020-09-26 16:26:25 +02:00
return refreshDate.toDate(context);
// var date = DateTime.fromMillisecondsSinceEpoch(refreshDate);
// var difference = DateTime.now().difference(date);
// if (difference.inSeconds < 60) {
// return s.secondsAgo(difference.inSeconds);
// } else if (difference.inMinutes < 60) {
// return s.minsAgo(difference.inMinutes);
// } else 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(refreshDate));
// }
}
2020-07-13 09:41:59 +02:00
void _saveOmpl(String path) async {
var subscribeWorker = Provider.of<GroupList>(context, listen: false);
2020-07-26 12:20:42 +02:00
var rssExp = RegExp(r'^(https?):\/\/(.*)');
2020-07-02 14:58:55 +02:00
final s = context.s;
2020-07-26 12:20:42 +02:00
var file = File(path);
2020-07-13 09:41:59 +02:00
try {
2020-09-23 16:19:07 +02:00
final opml = file.readAsStringSync();
2020-10-01 11:44:39 +02:00
Map<String, List<OmplOutline>> data = PodcastsBackup.parseOPML(opml);
for (var entry in data.entries) {
2020-07-26 12:20:42 +02:00
var title = entry.key;
2020-07-16 15:55:41 +02:00
var list = entry.value.reversed;
2020-07-13 14:04:44 +02:00
for (var rss in list) {
2020-07-26 12:20:42 +02:00
var rssLink = rssExp.stringMatch(rss.xmlUrl);
if (rssLink != null) {
2020-07-26 12:20:42 +02:00
var item = SubscribeItem(rssLink, rss.text, group: title);
2020-07-13 09:41:59 +02:00
await subscribeWorker.setSubscribeItem(item);
2020-07-16 15:55:41 +02:00
await Future.delayed(Duration(milliseconds: 200));
2020-02-11 14:01:57 +01:00
}
2020-02-09 13:29:09 +01:00
}
}
2020-07-13 09:41:59 +02:00
} catch (e) {
2020-08-10 20:41:22 +02:00
developer.log(e, name: 'OMPL parse error');
2020-07-13 09:41:59 +02:00
Fluttertoast.showToast(
msg: s.toastFileError,
gravity: ToastGravity.TOP,
);
2020-02-09 13:29:09 +01:00
}
2020-07-13 09:41:59 +02:00
}
2020-02-09 13:29:09 +01:00
2020-07-13 09:41:59 +02:00
void _getFilePath() async {
final s = context.s;
try {
2020-09-23 16:19:07 +02:00
var filePickResult =
await FilePicker.platform.pickFiles(type: FileType.any);
if (filePickResult == null) {
2020-07-13 09:41:59 +02:00
return;
2020-02-09 13:29:09 +01:00
}
2020-07-13 09:41:59 +02:00
Fluttertoast.showToast(
msg: s.toastReadFile,
gravity: ToastGravity.TOP,
);
2020-09-23 16:19:07 +02:00
final filePath = filePickResult.files.first.path;
2020-07-13 09:41:59 +02:00
_saveOmpl(filePath);
} on PlatformException catch (e) {
2020-08-10 20:41:22 +02:00
developer.log(e.toString(), name: 'Get OMPL file');
2020-02-09 13:29:09 +01:00
}
2020-07-13 09:41:59 +02:00
}
@override
Widget build(BuildContext context) {
var refreshWorker = Provider.of<RefreshWorker>(context, listen: false);
final s = context.s;
2020-10-10 15:43:45 +02:00
return Material(
color: Colors.transparent,
borderRadius: BorderRadius.circular(100),
clipBehavior: Clip.hardEdge,
child: PopupMenuButton<int>(
shape: RoundedRectangleBorder(
borderRadius: BorderRadius.all(Radius.circular(10))),
elevation: 1,
tooltip: s.menu,
itemBuilder: (context) => [
PopupMenuItem(
value: 1,
child: Container(
padding: EdgeInsets.only(left: 10),
child: Row(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Icon(LineIcons.cloud_download_alt_solid),
Padding(
padding: EdgeInsets.symmetric(horizontal: 5.0),
),
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
Text(
s.homeToprightMenuRefreshAll,
),
FutureBuilder<String>(
future: _getRefreshDate(context),
builder: (_, snapshot) {
if (snapshot.hasData) {
return Text(
snapshot.data,
style:
TextStyle(color: Colors.red, fontSize: 12),
);
} else {
return Center();
}
})
],
),
],
),
2020-03-01 13:17:06 +01:00
),
),
2020-10-10 15:43:45 +02:00
PopupMenuItem(
value: 2,
child: Container(
padding: EdgeInsets.only(left: 10),
child: Row(
children: <Widget>[
Icon(LineIcons.paperclip_solid),
Padding(
padding: EdgeInsets.symmetric(horizontal: 5.0),
),
Text(s.homeToprightMenuImportOMPL),
],
),
2020-03-01 13:17:06 +01:00
),
),
2020-10-10 15:43:45 +02:00
PopupMenuItem(
value: 4,
child: Container(
padding: EdgeInsets.only(left: 10),
child: Row(
children: <Widget>[
Icon(LineIcons.cog_solid),
Padding(
padding: EdgeInsets.symmetric(horizontal: 5.0),
),
Text(s.settings),
],
),
2020-03-01 13:17:06 +01:00
),
),
2020-10-10 15:43:45 +02:00
PopupMenuItem(
value: 5,
child: Container(
padding: EdgeInsets.only(left: 10),
child: Row(
children: <Widget>[
Icon(LineIcons.info_circle_solid),
Padding(
padding: EdgeInsets.symmetric(horizontal: 5.0),
),
Text(s.homeToprightMenuAbout),
],
),
2020-03-01 13:17:06 +01:00
),
),
2020-10-10 15:43:45 +02:00
],
onSelected: (value) {
if (value == 5) {
Navigator.push(
context, MaterialPageRoute(builder: (context) => AboutApp()));
} else if (value == 2) {
_getFilePath();
} else if (value == 1) {
refreshWorker.start([]);
} else if (value == 3) {
// setting.theme != 2 ? setting.setTheme(2) : setting.setTheme(1);
} else if (value == 4) {
Navigator.push(
context, MaterialPageRoute(builder: (context) => Settings()));
}
},
),
2020-02-09 13:29:09 +01:00
);
}
}