nc-photos/lib/widget/home_albums.dart

515 lines
15 KiB
Dart
Raw Normal View History

2021-04-27 22:06:16 +02:00
import 'package:flutter/foundation.dart';
2021-04-10 06:28:12 +02:00
import 'package:flutter/material.dart';
import 'package:flutter/widgets.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_staggered_grid_view/flutter_staggered_grid_view.dart';
import 'package:kiwi/kiwi.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/bloc/list_album.dart';
import 'package:nc_photos/entity/album.dart';
2021-06-24 18:26:56 +02:00
import 'package:nc_photos/entity/album/provider.dart';
2021-04-10 06:28:12 +02:00
import 'package:nc_photos/entity/file.dart';
2021-05-24 09:09:25 +02:00
import 'package:nc_photos/entity/file/data_source.dart';
2021-04-10 06:28:12 +02:00
import 'package:nc_photos/exception_util.dart' as exception_util;
import 'package:nc_photos/iterable_extension.dart';
import 'package:nc_photos/k.dart' as k;
2021-08-20 19:02:13 +02:00
import 'package:nc_photos/lab.dart';
import 'package:nc_photos/pref.dart';
2021-04-10 06:28:12 +02:00
import 'package:nc_photos/snack_bar_manager.dart';
import 'package:nc_photos/theme.dart';
import 'package:nc_photos/use_case/remove.dart';
2021-08-20 08:06:37 +02:00
import 'package:nc_photos/widget/album_browser_util.dart' as album_browser_util;
2021-07-01 13:32:22 +02:00
import 'package:nc_photos/widget/album_importer.dart';
2021-07-13 21:29:52 +02:00
import 'package:nc_photos/widget/album_search_delegate.dart';
2021-07-31 19:02:41 +02:00
import 'package:nc_photos/widget/archive_browser.dart';
2021-07-13 21:29:52 +02:00
import 'package:nc_photos/widget/builder/album_grid_item_builder.dart';
import 'package:nc_photos/widget/dynamic_album_browser.dart';
2021-04-10 06:28:12 +02:00
import 'package:nc_photos/widget/home_app_bar.dart';
import 'package:nc_photos/widget/new_album_dialog.dart';
import 'package:nc_photos/widget/page_visibility_mixin.dart';
2021-08-20 19:02:13 +02:00
import 'package:nc_photos/widget/pending_albums.dart';
2021-08-22 22:03:13 +02:00
import 'package:nc_photos/widget/selectable_item_stream_list_mixin.dart';
2021-07-25 16:27:19 +02:00
import 'package:nc_photos/widget/selection_app_bar.dart';
2021-08-01 22:46:16 +02:00
import 'package:nc_photos/widget/trashbin_browser.dart';
2021-04-10 06:28:12 +02:00
import 'package:tuple/tuple.dart';
class HomeAlbums extends StatefulWidget {
HomeAlbums({
2021-07-23 22:05:57 +02:00
Key? key,
required this.account,
2021-04-10 06:28:12 +02:00
}) : super(key: key);
@override
createState() => _HomeAlbumsState();
final Account account;
}
class _HomeAlbumsState extends State<HomeAlbums>
2021-08-22 22:03:13 +02:00
with
SelectableItemStreamListMixin,
RouteAware,
PageVisibilityMixin<HomeAlbums> {
2021-04-10 06:28:12 +02:00
@override
initState() {
super.initState();
_initBloc();
}
@override
build(BuildContext context) {
return BlocListener<ListAlbumBloc, ListAlbumBlocState>(
bloc: _bloc,
listener: (context, state) => _onStateChange(context, state),
child: BlocBuilder<ListAlbumBloc, ListAlbumBlocState>(
bloc: _bloc,
builder: (context, state) => _buildContent(context, state),
),
);
}
void _initBloc() {
ListAlbumBloc bloc;
final blocId =
"${widget.account.scheme}://${widget.account.username}@${widget.account.address}";
try {
_log.fine("[_initBloc] Resolving bloc for '$blocId'");
bloc = KiwiContainer().resolve<ListAlbumBloc>("ListAlbumBloc($blocId)");
} catch (e) {
// no created instance for this account, make a new one
_log.info("[_initBloc] New bloc instance for account: ${widget.account}");
bloc = ListAlbumBloc();
KiwiContainer().registerInstance<ListAlbumBloc>(bloc,
name: "ListAlbumBloc($blocId)");
}
_bloc = bloc;
if (_bloc.state is ListAlbumBlocInit) {
_log.info("[_initBloc] Initialize bloc");
_reqQuery();
} else {
// process the current state
2021-07-23 22:05:57 +02:00
WidgetsBinding.instance!.addPostFrameCallback((_) {
2021-07-03 13:32:23 +02:00
setState(() {
_onStateChange(context, _bloc.state);
});
});
2021-04-10 06:28:12 +02:00
}
}
Widget _buildContent(BuildContext context, ListAlbumBlocState state) {
return Stack(
children: [
2021-08-22 22:03:13 +02:00
buildItemStreamListOuter(
context,
child: Theme(
data: Theme.of(context).copyWith(
accentColor: AppTheme.getOverscrollIndicatorColor(context),
),
child: CustomScrollView(
slivers: [
_buildAppBar(context),
SliverPadding(
padding: const EdgeInsets.all(8),
sliver: buildItemStreamList(
maxCrossAxisExtent: 256,
mainAxisSpacing: 8,
),
2021-04-10 06:28:12 +02:00
),
2021-08-22 22:03:13 +02:00
],
),
2021-04-10 06:28:12 +02:00
),
),
if (state is ListAlbumBlocLoading)
Align(
alignment: Alignment.bottomCenter,
child: const LinearProgressIndicator(),
),
],
);
}
Widget _buildAppBar(BuildContext context) {
2021-08-22 22:03:13 +02:00
if (isSelectionMode) {
2021-04-10 06:28:12 +02:00
return _buildSelectionAppBar(context);
} else {
return _buildNormalAppBar(context);
}
}
Widget _buildSelectionAppBar(BuildContext conetxt) {
2021-07-25 16:27:19 +02:00
return SelectionAppBar(
2021-08-22 22:03:13 +02:00
count: selectedListItems.length,
2021-07-25 16:27:19 +02:00
onClosePressed: () {
setState(() {
2021-08-22 22:03:13 +02:00
clearSelectedItems();
2021-07-25 16:27:19 +02:00
});
},
actions: [
IconButton(
icon: const Icon(Icons.delete),
2021-08-02 13:59:05 +02:00
tooltip: L10n.of(context).deleteTooltip,
2021-04-10 06:28:12 +02:00
onPressed: () {
2021-07-25 16:27:19 +02:00
_onSelectionAppBarDeletePressed();
2021-04-10 06:28:12 +02:00
},
),
2021-07-25 16:27:19 +02:00
],
2021-04-10 06:28:12 +02:00
);
}
Widget _buildNormalAppBar(BuildContext context) {
return HomeSliverAppBar(
account: widget.account,
2021-07-16 09:55:04 +02:00
actions: [
IconButton(
onPressed: () => _onSearchPressed(context),
icon: const Icon(Icons.search),
2021-07-25 07:00:38 +02:00
tooltip: L10n.of(context).searchTooltip,
2021-07-16 09:55:04 +02:00
),
],
2021-07-01 13:32:22 +02:00
menuActions: [
PopupMenuItem(
value: _menuValueImport,
2021-07-25 07:00:38 +02:00
child: Text(L10n.of(context).importFoldersTooltip),
2021-07-01 13:32:22 +02:00
),
],
onSelectedMenuActions: (option) {
switch (option) {
case _menuValueImport:
_onAppBarImportPressed(context);
break;
}
},
2021-04-10 06:28:12 +02:00
);
}
2021-08-22 22:03:13 +02:00
SelectableItem _buildArchiveItem(BuildContext context) {
return _ButtonListItem(
icon: Icons.archive_outlined,
label: L10n.of(context).albumArchiveLabel,
2021-08-22 22:03:13 +02:00
onTap: () {
if (!isSelectionMode) {
Navigator.of(context).pushNamed(ArchiveBrowser.routeName,
arguments: ArchiveBrowserArguments(widget.account));
}
},
2021-05-28 21:44:09 +02:00
);
}
2021-08-22 22:03:13 +02:00
SelectableItem _buildTrashbinItem(BuildContext context) {
return _ButtonListItem(
icon: Icons.delete_outlined,
label: L10n.of(context).albumTrashLabel,
2021-08-22 22:03:13 +02:00
onTap: () {
if (!isSelectionMode) {
Navigator.of(context).pushNamed(TrashbinBrowser.routeName,
arguments: TrashbinBrowserArguments(widget.account));
}
},
2021-08-01 22:46:16 +02:00
);
}
2021-08-22 22:03:13 +02:00
SelectableItem _buildShareItem(BuildContext context) {
return _ButtonListItem(
2021-08-20 19:02:13 +02:00
icon: Icons.share_outlined,
label: "Sharing",
isShowIndicator: Pref.inst().hasNewSharedAlbumOr(false),
2021-08-22 22:03:13 +02:00
onTap: () {
if (!isSelectionMode) {
Navigator.of(context).pushNamed(PendingAlbums.routeName,
arguments: PendingAlbumsArguments(widget.account));
}
},
2021-08-20 19:02:13 +02:00
);
}
2021-08-22 22:03:13 +02:00
SelectableItem _buildNewAlbumItem(BuildContext context) {
return _ButtonListItem(
icon: Icons.add,
label: L10n.of(context).createAlbumTooltip,
2021-08-22 22:03:13 +02:00
onTap: () {
if (!isSelectionMode) {
_onNewAlbumItemTap(context);
}
},
2021-04-10 06:28:12 +02:00
);
}
void _onStateChange(BuildContext context, ListAlbumBlocState state) {
if (state is ListAlbumBlocInit) {
2021-08-22 22:03:13 +02:00
itemStreamListItems = [];
2021-04-10 06:28:12 +02:00
} else if (state is ListAlbumBlocSuccess || state is ListAlbumBlocLoading) {
2021-08-13 12:38:46 +02:00
_transformItems(state.items);
2021-04-10 06:28:12 +02:00
} else if (state is ListAlbumBlocFailure) {
2021-08-13 12:38:46 +02:00
_transformItems(state.items);
if (isPageVisible()) {
SnackBarManager().showSnackBar(SnackBar(
content: Text(exception_util.toUserString(state.exception, context)),
duration: k.snackBarDurationNormal,
));
}
2021-04-10 06:28:12 +02:00
} else if (state is ListAlbumBlocInconsistent) {
_reqQuery();
}
}
void _onNewAlbumItemTap(BuildContext context) {
showDialog(
context: context,
builder: (_) => NewAlbumDialog(
account: widget.account,
),
2021-06-29 11:44:35 +02:00
).then((album) {
if (album == null || album is! Album) {
return;
}
if (album.provider is AlbumDynamicProvider) {
// open the album automatically to refresh its content, otherwise it'll
// be empty
Navigator.of(context).pushNamed(DynamicAlbumBrowser.routeName,
arguments: DynamicAlbumBrowserArguments(widget.account, album));
2021-06-29 11:44:35 +02:00
}
}).catchError((e, stacktrace) {
2021-04-10 06:28:12 +02:00
_log.severe(
"[_onNewAlbumItemTap] Failed while showDialog", e, stacktrace);
SnackBarManager().showSnackBar(SnackBar(
2021-07-25 07:00:38 +02:00
content: Text(L10n.of(context).createAlbumFailureNotification),
2021-04-10 06:28:12 +02:00
duration: k.snackBarDurationNormal,
));
});
}
2021-07-01 13:32:22 +02:00
void _onAppBarImportPressed(BuildContext context) {
Navigator.of(context).pushNamed(AlbumImporter.routeName,
arguments: AlbumImporterArguments(widget.account));
}
2021-04-10 06:28:12 +02:00
Future<void> _onSelectionAppBarDeletePressed() async {
2021-08-22 22:03:13 +02:00
final selected = selectedListItems
.whereType<_AlbumListItem>()
.map((e) => e.album)
.toList();
2021-04-10 06:28:12 +02:00
SnackBarManager().showSnackBar(SnackBar(
2021-07-25 07:00:38 +02:00
content: Text(L10n.of(context)
2021-08-22 22:03:13 +02:00
.deleteSelectedProcessingNotification(selected.length)),
2021-04-10 06:28:12 +02:00
duration: k.snackBarDurationShort,
));
2021-08-22 22:03:13 +02:00
final selectedFiles = selected.map((e) => e.albumFile!).toList();
2021-04-10 06:28:12 +02:00
setState(() {
2021-08-22 22:03:13 +02:00
clearSelectedItems();
2021-04-10 06:28:12 +02:00
});
final fileRepo = FileRepo(FileCachedDataSource());
final albumRepo = AlbumRepo(AlbumCachedDataSource());
final failures = <File>[];
for (final f in selectedFiles) {
try {
await Remove(fileRepo, albumRepo)(widget.account, f);
} catch (e, stacktrace) {
2021-04-27 22:06:16 +02:00
_log.shout(
"[_onSelectionAppBarDeletePressed] Failed while removing file" +
(kDebugMode ? ": ${f.path}" : ""),
2021-04-10 06:28:12 +02:00
e,
stacktrace);
failures.add(f);
}
}
if (failures.isEmpty) {
SnackBarManager().showSnackBar(SnackBar(
2021-07-25 07:00:38 +02:00
content: Text(L10n.of(context).deleteSelectedSuccessNotification),
2021-04-10 06:28:12 +02:00
duration: k.snackBarDurationNormal,
));
} else {
SnackBarManager().showSnackBar(SnackBar(
2021-07-25 07:00:38 +02:00
content: Text(L10n.of(context)
2021-04-10 06:28:12 +02:00
.deleteSelectedFailureNotification(failures.length)),
duration: k.snackBarDurationNormal,
));
}
}
2021-07-16 09:55:04 +02:00
void _onSearchPressed(BuildContext context) {
showSearch(
context: context,
delegate: AlbumSearchDelegate(context, widget.account),
).then((value) {
if (value is Album) {
2021-08-20 08:06:37 +02:00
_openAlbum(context, value);
2021-07-16 09:55:04 +02:00
}
});
}
2021-04-10 06:28:12 +02:00
/// Transform an Album list to grid items
2021-08-13 12:38:46 +02:00
void _transformItems(List<ListAlbumBlocItem> items) {
final sortedAlbums = items
2021-08-13 12:45:26 +02:00
.map((e) =>
Tuple2(e.album.provider.latestItemTime ?? e.album.lastUpdated, e))
2021-06-27 17:35:40 +02:00
.sorted((a, b) {
2021-04-10 06:28:12 +02:00
// then sort in descending order
final tmp = b.item1.compareTo(a.item1);
if (tmp != 0) {
return tmp;
} else {
2021-08-13 12:45:26 +02:00
return a.item2.album.name.compareTo(b.item2.album.name);
2021-04-10 06:28:12 +02:00
}
}).map((e) => e.item2);
2021-08-22 22:03:13 +02:00
itemStreamListItems = [
_buildArchiveItem(context),
_buildTrashbinItem(context),
if (Lab().enableSharedAlbum) _buildShareItem(context),
_buildNewAlbumItem(context),
_SeparatorListItem(),
...sortedAlbums.map((e) => _AlbumListItem(
account: widget.account,
album: e.album,
isSharedByMe: e.isSharedByMe,
isSharedToMe: e.isSharedToMe,
onTap: () {
_openAlbum(context, e.album);
},
)),
];
2021-04-10 06:28:12 +02:00
}
2021-08-20 08:06:37 +02:00
void _openAlbum(BuildContext context, Album album) {
album_browser_util.open(context, widget.account, album);
2021-07-16 09:55:04 +02:00
}
2021-04-10 06:28:12 +02:00
void _reqQuery() {
_bloc.add(ListAlbumBlocQuery(widget.account));
}
2021-07-23 22:05:57 +02:00
late ListAlbumBloc _bloc;
2021-04-10 06:28:12 +02:00
static final _log = Logger("widget.home_albums._HomeAlbumsState");
2021-07-01 13:32:22 +02:00
static const _menuValueImport = 0;
2021-04-10 06:28:12 +02:00
}
2021-08-22 22:03:13 +02:00
abstract class _ListItem implements SelectableItem {
_ListItem({
VoidCallback? onTap,
}) : _onTap = onTap;
2021-04-10 06:28:12 +02:00
2021-08-22 22:03:13 +02:00
@override
get onTap => _onTap;
@override
get isSelectable => true;
@override
get staggeredTile => const StaggeredTile.count(1, 1);
final VoidCallback? _onTap;
2021-04-10 06:28:12 +02:00
}
2021-08-22 22:03:13 +02:00
class _ButtonListItem extends _ListItem {
_ButtonListItem({
required this.icon,
required this.label,
2021-08-22 22:03:13 +02:00
VoidCallback? onTap,
2021-08-20 19:02:13 +02:00
this.isShowIndicator = false,
2021-08-22 22:03:13 +02:00
}) : _onTap = onTap;
@override
2021-08-22 22:03:13 +02:00
get isSelectable => false;
@override
get staggeredTile => const StaggeredTile.fit(1);
@override
buildWidget(BuildContext context) {
return Padding(
2021-08-05 13:07:40 +02:00
padding: const EdgeInsets.symmetric(horizontal: 8),
child: ClipRRect(
borderRadius: BorderRadius.circular(8),
child: Material(
type: MaterialType.transparency,
child: InkWell(
2021-08-22 22:03:13 +02:00
onTap: _onTap,
child: Container(
decoration: BoxDecoration(
border: Border.all(
color: AppTheme.getListItemBackgroundColor(context),
width: 1,
),
borderRadius: BorderRadius.circular(8),
),
padding: const EdgeInsets.all(8),
child: Row(
children: [
Icon(
icon,
color: AppTheme.getPrimaryTextColor(context),
size: 24,
),
const SizedBox(width: 8),
Expanded(
child: Text(label),
),
2021-08-20 19:02:13 +02:00
if (isShowIndicator)
Icon(
Icons.circle,
color: Colors.red,
size: 8,
),
],
),
),
),
),
),
);
}
final IconData icon;
final String label;
2021-08-20 19:02:13 +02:00
final bool isShowIndicator;
2021-08-22 22:03:13 +02:00
final VoidCallback? _onTap;
}
class _SeparatorListItem extends _ListItem {
@override
get isSelectable => false;
@override
get staggeredTile => const StaggeredTile.extent(99, 1);
@override
buildWidget(BuildContext context) => Container();
}
class _AlbumListItem extends _ListItem {
_AlbumListItem({
required this.account,
required this.album,
required this.isSharedByMe,
required this.isSharedToMe,
VoidCallback? onTap,
}) : super(onTap: onTap);
@override
operator ==(Object other) {
return other is _AlbumListItem &&
album.albumFile!.path == other.album.albumFile!.path;
}
@override
get hashCode => album.albumFile!.path.hashCode;
@override
buildWidget(BuildContext context) {
return AlbumGridItemBuilder(
account: account,
album: album,
isShared: isSharedByMe || isSharedToMe,
).build(context);
}
final Account account;
final Album album;
final bool isSharedByMe;
final bool isSharedToMe;
}