You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
62 lines
1.8 KiB
62 lines
1.8 KiB
part of '../neon_files.dart'; |
|
|
|
class FilesMainPage extends StatefulWidget { |
|
const FilesMainPage({ |
|
super.key, |
|
}); |
|
|
|
@override |
|
State<FilesMainPage> createState() => _FilesMainPageState(); |
|
} |
|
|
|
class _FilesMainPageState extends State<FilesMainPage> { |
|
late FilesBloc bloc; |
|
|
|
@override |
|
void initState() { |
|
super.initState(); |
|
bloc = Provider.of<FilesBloc>(context, listen: false); |
|
|
|
bloc.errors.listen((final error) { |
|
NeonException.showSnackbar(context, error); |
|
}); |
|
} |
|
|
|
@override |
|
Widget build(final BuildContext context) => Scaffold( |
|
body: FilesBrowserView( |
|
bloc: bloc.browser, |
|
filesBloc: bloc, |
|
onPickFile: (final details) async { |
|
final sizeWarning = bloc.options.downloadSizeWarning.value; |
|
if (sizeWarning != null && details.size > sizeWarning) { |
|
// ignore: use_build_context_synchronously |
|
if (!(await showConfirmationDialog( |
|
context, |
|
// ignore: use_build_context_synchronously |
|
AppLocalizations.of(context).downloadConfirmSizeWarning( |
|
filesize(sizeWarning), |
|
filesize(details.size), |
|
), |
|
))) { |
|
return; |
|
} |
|
} |
|
bloc.openFile(details.path, details.etag!, details.mimeType); |
|
}, |
|
), |
|
floatingActionButton: FloatingActionButton( |
|
onPressed: () async { |
|
await showDialog( |
|
context: context, |
|
builder: (final context) => FilesChooseCreateDialog( |
|
bloc: bloc, |
|
basePath: bloc.browser.path.value, |
|
), |
|
); |
|
}, |
|
tooltip: AppLocalizations.of(context).uploadFiles, |
|
child: const Icon(Icons.add), |
|
), |
|
); |
|
}
|
|
|