nc-photos/lib/widget/new_album_dialog.dart

213 lines
6.2 KiB
Dart
Raw Normal View History

2021-04-10 06:28:12 +02:00
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:logging/logging.dart';
import 'package:nc_photos/account.dart';
2021-07-25 07:00:38 +02:00
import 'package:nc_photos/app_localizations.dart';
2021-04-10 06:28:12 +02:00
import 'package:nc_photos/entity/album.dart';
2021-06-26 13:51:13 +02:00
import 'package:nc_photos/entity/album/cover_provider.dart';
2021-06-24 18:26:56 +02:00
import 'package:nc_photos/entity/album/provider.dart';
2021-07-07 20:40:43 +02:00
import 'package:nc_photos/entity/album/sort_provider.dart';
2021-07-23 22:05:57 +02:00
import 'package:nc_photos/entity/file.dart';
2021-04-10 06:28:12 +02:00
import 'package:nc_photos/use_case/create_album.dart';
2021-06-29 11:44:35 +02:00
import 'package:nc_photos/widget/album_dir_picker.dart';
2021-04-10 06:28:12 +02:00
/// Dialog to create a new album
///
/// The created album will be popped to the previous route, or null if user
/// cancelled
class NewAlbumDialog extends StatefulWidget {
2021-09-15 08:58:06 +02:00
const NewAlbumDialog({
2021-07-23 22:05:57 +02:00
Key? key,
required this.account,
2021-06-29 11:44:35 +02:00
this.isAllowDynamic = true,
2021-04-10 06:28:12 +02:00
}) : super(key: key);
@override
createState() => _NewAlbumDialogState();
final Account account;
2021-06-29 11:44:35 +02:00
final bool isAllowDynamic;
2021-04-10 06:28:12 +02:00
}
class _NewAlbumDialogState extends State<NewAlbumDialog> {
@override
initState() {
super.initState();
}
@override
build(BuildContext context) {
2021-06-29 11:44:35 +02:00
return Visibility(
visible: _isVisible,
child: AlertDialog(
title: Text(L10n.global().createAlbumTooltip),
2021-06-29 11:44:35 +02:00
content: Form(
key: _formKey,
child: Container(
2021-09-15 08:58:06 +02:00
constraints: const BoxConstraints.tightFor(width: 280),
2021-06-29 11:44:35 +02:00
child: Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
TextFormField(
decoration: InputDecoration(
hintText: L10n.global().nameInputHint,
2021-06-29 11:44:35 +02:00
),
validator: (value) {
2021-07-23 22:05:57 +02:00
if (value!.isEmpty) {
return L10n.global().albumNameInputInvalidEmpty;
2021-06-29 11:44:35 +02:00
}
return null;
},
onSaved: (value) {
2021-07-23 22:05:57 +02:00
_formValue.name = value!;
2021-06-29 11:44:35 +02:00
},
),
if (widget.isAllowDynamic) ...[
DropdownButtonHideUnderline(
child: DropdownButtonFormField<_Provider>(
value: _provider,
items: [_Provider.static, _Provider.dir]
.map((e) => DropdownMenuItem<_Provider>(
value: e,
child: Text(e.toValueString(context)),
))
.toList(),
onChanged: (newValue) {
setState(() {
2021-07-23 22:05:57 +02:00
_provider = newValue!;
2021-06-29 11:44:35 +02:00
});
},
onSaved: (value) {
_formValue.provider = value;
},
),
),
const SizedBox(height: 8),
Text(
_provider.toDescription(context),
style: Theme.of(context).textTheme.bodyText2,
),
],
],
),
2021-04-10 06:28:12 +02:00
),
),
2021-06-29 11:44:35 +02:00
actions: [
TextButton(
onPressed: () => _onOkPressed(context),
child: Text(MaterialLocalizations.of(context).okButtonLabel),
),
],
2021-04-10 06:28:12 +02:00
),
);
}
void _onOkPressed(BuildContext context) {
2021-07-23 22:05:57 +02:00
if (_formKey.currentState?.validate() == true) {
_formKey.currentState!.save();
if (_formValue.provider == _Provider.static ||
_formValue.provider == null) {
2021-06-29 11:44:35 +02:00
_onConfirmStaticAlbum();
} else {
_onConfirmDirAlbum();
}
}
}
void _onConfirmStaticAlbum() {
final album = Album(
name: _formValue.name,
provider: AlbumStaticProvider(
items: const [],
),
coverProvider: AlbumAutoCoverProvider(),
2021-09-15 08:58:06 +02:00
sortProvider: const AlbumTimeSortProvider(isAscending: false),
2021-06-29 11:44:35 +02:00
);
_log.info("[_onOkPressed] Creating static album: $album");
final albumRepo = AlbumRepo(AlbumCachedDataSource());
final newAlbum = CreateAlbum(albumRepo)(widget.account, album);
// let previous route to handle this future
Navigator.of(context).pop(newAlbum);
}
void _onConfirmDirAlbum() {
setState(() {
_isVisible = false;
});
Navigator.of(context)
2021-07-23 22:05:57 +02:00
.pushNamed<List<File>>(AlbumDirPicker.routeName,
2021-06-29 11:44:35 +02:00
arguments: AlbumDirPickerArguments(widget.account))
.then((value) {
if (value == null) {
Navigator.of(context).pop();
return;
}
2021-04-10 06:28:12 +02:00
final album = Album(
name: _formValue.name,
2021-06-29 11:44:35 +02:00
provider: AlbumDirProvider(
dirs: value,
2021-06-24 18:26:56 +02:00
),
2021-06-26 13:51:13 +02:00
coverProvider: AlbumAutoCoverProvider(),
2021-09-15 08:58:06 +02:00
sortProvider: const AlbumTimeSortProvider(isAscending: false),
2021-04-10 06:28:12 +02:00
);
2021-06-29 11:44:35 +02:00
_log.info("[_onOkPressed] Creating dir album: $album");
2021-04-10 06:28:12 +02:00
final albumRepo = AlbumRepo(AlbumCachedDataSource());
final newAlbum = CreateAlbum(albumRepo)(widget.account, album);
// let previous route to handle this future
Navigator.of(context).pop(newAlbum);
2021-06-29 11:44:35 +02:00
}).catchError((e, stacktrace) {
_log.shout("[_onOkPressed] Failed while pushNamed", e, stacktrace);
Navigator.of(context).pop();
});
2021-04-10 06:28:12 +02:00
}
final _formKey = GlobalKey<FormState>();
2021-06-29 11:44:35 +02:00
var _provider = _Provider.static;
2021-04-10 06:28:12 +02:00
final _formValue = _FormValue();
2021-06-29 11:44:35 +02:00
var _isVisible = true;
2021-07-01 22:23:30 +02:00
static final _log = Logger("widget.new_album_dialog._NewAlbumDialogState");
2021-04-10 06:28:12 +02:00
}
class _FormValue {
2021-07-23 22:05:57 +02:00
late String name;
_Provider? provider;
2021-06-29 11:44:35 +02:00
}
enum _Provider {
static,
dir,
}
extension on _Provider {
String toValueString(BuildContext context) {
switch (this) {
case _Provider.static:
return L10n.global().createAlbumDialogBasicLabel;
2021-06-29 11:44:35 +02:00
case _Provider.dir:
return L10n.global().createAlbumDialogFolderBasedLabel;
2021-06-29 11:44:35 +02:00
default:
throw StateError("Unknown value: $this");
}
}
String toDescription(BuildContext context) {
switch (this) {
case _Provider.static:
return L10n.global().createAlbumDialogBasicDescription;
2021-06-29 11:44:35 +02:00
case _Provider.dir:
return L10n.global().createAlbumDialogFolderBasedDescription;
2021-06-29 11:44:35 +02:00
default:
throw StateError("Unknown value: $this");
}
}
2021-04-10 06:28:12 +02:00
}