2023-03-27 07:44:34 +00:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:pikapika/basic/Method.dart';
|
|
|
|
|
|
|
|
import '../basic/Channels.dart';
|
|
|
|
import 'components/ContentLoading.dart';
|
2023-05-08 09:57:28 +00:00
|
|
|
import 'components/ListView.dart';
|
2023-03-27 07:44:34 +00:00
|
|
|
import 'components/RightClickPop.dart';
|
|
|
|
|
|
|
|
class ImportFromOffScreen extends StatefulWidget {
|
|
|
|
final String dbPath;
|
|
|
|
|
|
|
|
const ImportFromOffScreen({Key? key, required this.dbPath}) : super(key: key);
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<StatefulWidget> createState() => _ImportFromOffScreenState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _ImportFromOffScreenState extends State<ImportFromOffScreen> {
|
|
|
|
bool _importing = false;
|
|
|
|
String _importMessage = "";
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
registerEvent(_onMessageChange, "EXPORT");
|
|
|
|
_process();
|
|
|
|
super.initState();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
void dispose() {
|
|
|
|
unregisterEvent(_onMessageChange);
|
|
|
|
super.dispose();
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onMessageChange(event) {
|
|
|
|
if (event is String) {
|
|
|
|
setState(() {
|
|
|
|
_importMessage = event;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return rightClickPop(
|
|
|
|
child: buildScreen(context),
|
|
|
|
context: context,
|
|
|
|
canPop: !_importing,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget buildScreen(BuildContext context) {
|
|
|
|
if (_importing) {
|
|
|
|
return Scaffold(
|
|
|
|
body: ContentLoading(label: _importMessage),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text('导入'),
|
|
|
|
),
|
2023-05-08 09:57:28 +00:00
|
|
|
body: PikaListView(
|
2023-03-27 07:44:34 +00:00
|
|
|
children: [
|
|
|
|
Container(
|
|
|
|
padding: const EdgeInsets.all(10),
|
|
|
|
child: Text(_importMessage),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
_process() async {
|
|
|
|
try {
|
|
|
|
setState(() {
|
|
|
|
_importing = true;
|
|
|
|
});
|
|
|
|
await method.importComicViewFormOff(widget.dbPath);
|
|
|
|
setState(() {
|
|
|
|
_importMessage = "导入成功";
|
|
|
|
});
|
|
|
|
} catch (e) {
|
|
|
|
setState(() {
|
|
|
|
_importMessage = "导入失败 $e";
|
|
|
|
});
|
|
|
|
} finally {
|
|
|
|
setState(() {
|
|
|
|
_importing = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|