2021-09-29 23:57:09 +00:00
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
import 'package:filesystem_picker/filesystem_picker.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2021-11-11 03:00:38 +00:00
|
|
|
import 'package:pikapika/basic/Channels.dart';
|
|
|
|
import 'package:pikapika/basic/Common.dart';
|
|
|
|
import 'package:pikapika/basic/Method.dart';
|
|
|
|
import 'package:pikapika/basic/config/ChooserRoot.dart';
|
2021-09-29 23:57:09 +00:00
|
|
|
|
|
|
|
import 'components/ContentLoading.dart';
|
|
|
|
|
|
|
|
// 导入
|
|
|
|
class DownloadImportScreen extends StatefulWidget {
|
2022-03-17 03:31:25 +00:00
|
|
|
const DownloadImportScreen({Key? key}) : super(key: key);
|
|
|
|
|
2021-09-29 23:57:09 +00:00
|
|
|
@override
|
|
|
|
State<StatefulWidget> createState() => _DownloadImportScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _DownloadImportScreenState extends State<DownloadImportScreen> {
|
|
|
|
bool _importing = false;
|
|
|
|
String _importMessage = "";
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
registerEvent(_onMessageChange, "EXPORT");
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
unregisterEvent(_onMessageChange);
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onMessageChange(event) {
|
|
|
|
if (event is String) {
|
|
|
|
setState(() {
|
|
|
|
_importMessage = event;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
if (_importing) {
|
|
|
|
return Scaffold(
|
|
|
|
body: ContentLoading(label: _importMessage),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
List<Widget> actions = [];
|
|
|
|
|
|
|
|
if (Platform.isWindows ||
|
|
|
|
Platform.isMacOS ||
|
|
|
|
Platform.isLinux ||
|
|
|
|
Platform.isAndroid) {
|
|
|
|
actions.add(_fileImportButton());
|
|
|
|
}
|
|
|
|
|
|
|
|
actions.add(_networkImportButton());
|
|
|
|
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2022-03-19 04:12:27 +00:00
|
|
|
title: const Text('导入'),
|
2021-09-29 23:57:09 +00:00
|
|
|
),
|
|
|
|
body: ListView(
|
|
|
|
children: [
|
|
|
|
Container(
|
2022-03-19 04:12:27 +00:00
|
|
|
padding: const EdgeInsets.all(10),
|
2021-09-29 23:57:09 +00:00
|
|
|
child: Text(_importMessage),
|
|
|
|
),
|
|
|
|
...actions,
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _fileImportButton() {
|
|
|
|
return MaterialButton(
|
|
|
|
height: 80,
|
|
|
|
onPressed: () async {
|
2021-11-18 01:53:30 +00:00
|
|
|
late String chooseRoot;
|
|
|
|
try {
|
|
|
|
chooseRoot = await currentChooserRoot();
|
|
|
|
} catch (e) {
|
|
|
|
defaultToast(context, "$e");
|
|
|
|
return;
|
|
|
|
}
|
2021-09-29 23:57:09 +00:00
|
|
|
String? path = await FilesystemPicker.open(
|
2021-10-07 03:47:28 +00:00
|
|
|
title: '选择要导入的文件',
|
2021-09-29 23:57:09 +00:00
|
|
|
context: context,
|
2021-11-18 01:53:30 +00:00
|
|
|
rootDirectory: Directory(chooseRoot),
|
2021-09-29 23:57:09 +00:00
|
|
|
fsType: FilesystemType.file,
|
|
|
|
folderIconColor: Colors.teal,
|
|
|
|
allowedExtensions: ['.zip'],
|
|
|
|
fileTileSelectMode: FileTileSelectMode.wholeTile,
|
|
|
|
);
|
|
|
|
if (path != null) {
|
|
|
|
try {
|
|
|
|
setState(() {
|
|
|
|
_importing = true;
|
|
|
|
});
|
|
|
|
await method.importComicDownload(path);
|
|
|
|
setState(() {
|
|
|
|
_importMessage = "导入成功";
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
setState(() {
|
|
|
|
_importMessage = "导入失败 $e";
|
|
|
|
});
|
|
|
|
} finally {
|
|
|
|
setState(() {
|
|
|
|
_importing = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2022-03-19 04:12:27 +00:00
|
|
|
child: const Text('选择zip文件进行导入'),
|
2021-09-29 23:57:09 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _networkImportButton() {
|
|
|
|
return MaterialButton(
|
|
|
|
height: 80,
|
|
|
|
onPressed: () async {
|
2021-11-18 01:53:30 +00:00
|
|
|
var path =
|
|
|
|
await inputString(context, '请输入导出设备提供的地址\n例如 "192.168.1.2:50000"');
|
2021-09-29 23:57:09 +00:00
|
|
|
if (path != null) {
|
|
|
|
try {
|
|
|
|
setState(() {
|
|
|
|
_importing = true;
|
|
|
|
});
|
|
|
|
await method.importComicDownloadUsingSocket(path);
|
|
|
|
setState(() {
|
|
|
|
_importMessage = "导入成功";
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
setState(() {
|
|
|
|
_importMessage = "导入失败 $e";
|
|
|
|
});
|
|
|
|
} finally {
|
|
|
|
setState(() {
|
|
|
|
_importing = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2022-03-19 04:12:27 +00:00
|
|
|
child: const Text('从其他设备导入'),
|
2021-09-29 23:57:09 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|