mirror of
https://gitlab.com/nkming2/nc-photos.git
synced 2025-01-22 16:56:19 +01:00
428 lines
13 KiB
Dart
428 lines
13 KiB
Dart
import 'package:cached_network_image/cached_network_image.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/widgets.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:flutter_gen/gen_l10n/app_localizations.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';
|
|
import 'package:nc_photos/api/api.dart';
|
|
import 'package:nc_photos/api/api_util.dart' as api_util;
|
|
import 'package:nc_photos/bloc/list_album.dart';
|
|
import 'package:nc_photos/entity/album.dart';
|
|
import 'package:nc_photos/entity/file.dart';
|
|
import 'package:nc_photos/entity/file_util.dart' as file_util;
|
|
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;
|
|
import 'package:nc_photos/snack_bar_manager.dart';
|
|
import 'package:nc_photos/theme.dart';
|
|
import 'package:nc_photos/use_case/remove.dart';
|
|
import 'package:nc_photos/widget/album_grid_item.dart';
|
|
import 'package:nc_photos/widget/album_viewer.dart';
|
|
import 'package:nc_photos/widget/home_app_bar.dart';
|
|
import 'package:nc_photos/widget/new_album_dialog.dart';
|
|
import 'package:tuple/tuple.dart';
|
|
|
|
class HomeAlbums extends StatefulWidget {
|
|
HomeAlbums({
|
|
Key key,
|
|
@required this.account,
|
|
}) : super(key: key);
|
|
|
|
@override
|
|
createState() => _HomeAlbumsState();
|
|
|
|
final Account account;
|
|
}
|
|
|
|
class _HomeAlbumsState extends State<HomeAlbums> {
|
|
@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
|
|
_onStateChange(context, _bloc.state);
|
|
}
|
|
}
|
|
|
|
Widget _buildContent(BuildContext context, ListAlbumBlocState state) {
|
|
return Stack(
|
|
children: [
|
|
Theme(
|
|
data: Theme.of(context).copyWith(
|
|
accentColor: AppTheme.getOverscrollIndicatorColor(context),
|
|
),
|
|
child: CustomScrollView(
|
|
slivers: [
|
|
_buildAppBar(context),
|
|
SliverPadding(
|
|
padding: const EdgeInsets.all(16),
|
|
sliver: SliverStaggeredGrid.extentBuilder(
|
|
maxCrossAxisExtent: 256,
|
|
mainAxisSpacing: 8,
|
|
itemCount: _items.length + (_isSelectionMode ? 0 : 1),
|
|
itemBuilder: _buildItem,
|
|
staggeredTileBuilder: (index) {
|
|
return const StaggeredTile.count(1, 1);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
if (state is ListAlbumBlocLoading)
|
|
Align(
|
|
alignment: Alignment.bottomCenter,
|
|
child: const LinearProgressIndicator(),
|
|
),
|
|
],
|
|
);
|
|
}
|
|
|
|
Widget _buildAppBar(BuildContext context) {
|
|
if (_isSelectionMode) {
|
|
return _buildSelectionAppBar(context);
|
|
} else {
|
|
return _buildNormalAppBar(context);
|
|
}
|
|
}
|
|
|
|
Widget _buildSelectionAppBar(BuildContext conetxt) {
|
|
return Theme(
|
|
data: Theme.of(context).copyWith(
|
|
appBarTheme: AppTheme.getContextualAppBarTheme(context),
|
|
),
|
|
child: SliverAppBar(
|
|
pinned: true,
|
|
leading: IconButton(
|
|
icon: const Icon(Icons.close),
|
|
tooltip: MaterialLocalizations.of(context).closeButtonTooltip,
|
|
onPressed: () {
|
|
setState(() {
|
|
_selectedItems.clear();
|
|
});
|
|
},
|
|
),
|
|
title: Text(AppLocalizations.of(context)
|
|
.selectionAppBarTitle(_selectedItems.length)),
|
|
actions: [
|
|
IconButton(
|
|
icon: const Icon(Icons.delete),
|
|
tooltip: AppLocalizations.of(context).deleteSelectedTooltip,
|
|
onPressed: () {
|
|
_onSelectionAppBarDeletePressed();
|
|
},
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildNormalAppBar(BuildContext context) {
|
|
return HomeSliverAppBar(
|
|
account: widget.account,
|
|
);
|
|
}
|
|
|
|
Widget _buildItem(BuildContext context, int index) {
|
|
if (index < _items.length) {
|
|
return _buildAlbumItem(context, index);
|
|
} else {
|
|
return _buildNewAlbumItem(context);
|
|
}
|
|
}
|
|
|
|
Widget _buildAlbumItem(BuildContext context, int index) {
|
|
final item = _items[index];
|
|
return AlbumGridItem(
|
|
cover: _buildAlbumCover(context, item.album),
|
|
title: item.album.name,
|
|
subtitle: AppLocalizations.of(context).albumSize(item.album.items.length),
|
|
isSelected: _selectedItems.contains(item),
|
|
onTap: () => _onItemTap(item),
|
|
onLongPress: _isSelectionMode ? null : () => _onItemLongPress(item),
|
|
);
|
|
}
|
|
|
|
Widget _buildAlbumCover(BuildContext context, Album album) {
|
|
Widget cover;
|
|
try {
|
|
// use the latest file as cover
|
|
final latestFile = album.items
|
|
.whereType<AlbumFileItem>()
|
|
.map((e) => e.file)
|
|
.where((element) => file_util.isSupportedFormat(element))
|
|
.sorted(compareFileDateTimeDescending)
|
|
.first;
|
|
|
|
String previewUrl;
|
|
if (latestFile.hasPreview) {
|
|
previewUrl = api_util.getFilePreviewUrl(widget.account, latestFile,
|
|
width: 512, height: 512);
|
|
} else {
|
|
previewUrl = api_util.getFileUrl(widget.account, latestFile);
|
|
}
|
|
cover = FittedBox(
|
|
clipBehavior: Clip.hardEdge,
|
|
fit: BoxFit.cover,
|
|
child: CachedNetworkImage(
|
|
imageUrl: previewUrl,
|
|
httpHeaders: {
|
|
"Authorization": Api.getAuthorizationHeaderValue(widget.account),
|
|
},
|
|
fadeInDuration: const Duration(),
|
|
filterQuality: FilterQuality.high,
|
|
imageRenderMethodForWeb: ImageRenderMethodForWeb.HttpGet,
|
|
),
|
|
);
|
|
} catch (_) {
|
|
cover = const Icon(
|
|
Icons.panorama,
|
|
color: Colors.white,
|
|
size: 96,
|
|
);
|
|
}
|
|
|
|
return ClipRRect(
|
|
borderRadius: BorderRadius.circular(8),
|
|
child: Container(
|
|
color: Theme.of(context).brightness == Brightness.light
|
|
? Colors.black.withAlpha(40)
|
|
: Colors.white.withAlpha(40),
|
|
constraints: const BoxConstraints.expand(),
|
|
child: cover,
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _buildNewAlbumItem(BuildContext context) {
|
|
return AlbumGridItem(
|
|
cover: ClipRRect(
|
|
borderRadius: BorderRadius.circular(8),
|
|
child: Container(
|
|
color: Theme.of(context).brightness == Brightness.light
|
|
? Colors.black.withAlpha(40)
|
|
: Colors.white.withAlpha(40),
|
|
constraints: const BoxConstraints.expand(),
|
|
child: const Icon(
|
|
Icons.add,
|
|
color: Colors.white,
|
|
size: 96,
|
|
),
|
|
),
|
|
),
|
|
title: AppLocalizations.of(context).createAlbumTooltip,
|
|
onTap: () => _onNewAlbumItemTap(context),
|
|
);
|
|
}
|
|
|
|
void _onStateChange(BuildContext context, ListAlbumBlocState state) {
|
|
if (state is ListAlbumBlocInit) {
|
|
_items.clear();
|
|
} else if (state is ListAlbumBlocSuccess || state is ListAlbumBlocLoading) {
|
|
_transformItems(state.albums);
|
|
} else if (state is ListAlbumBlocFailure) {
|
|
SnackBarManager().showSnackBar(SnackBar(
|
|
content: Text(exception_util.toUserString(state.exception, context)),
|
|
duration: k.snackBarDurationNormal,
|
|
));
|
|
} else if (state is ListAlbumBlocInconsistent) {
|
|
_reqQuery();
|
|
}
|
|
}
|
|
|
|
void _onItemTap(_GridItem item) {
|
|
if (_isSelectionMode) {
|
|
if (!_items.contains(item)) {
|
|
_log.warning("[_onItemTap] Item not found in backing list, ignoring");
|
|
return;
|
|
}
|
|
if (_selectedItems.contains(item)) {
|
|
// unselect
|
|
setState(() {
|
|
_selectedItems.remove(item);
|
|
});
|
|
} else {
|
|
// select
|
|
setState(() {
|
|
_selectedItems.add(item);
|
|
});
|
|
}
|
|
} else {
|
|
Navigator.of(context).pushNamed(AlbumViewer.routeName,
|
|
arguments: AlbumViewerArguments(widget.account, item.album));
|
|
}
|
|
}
|
|
|
|
void _onItemLongPress(_GridItem item) {
|
|
if (!_items.contains(item)) {
|
|
_log.warning(
|
|
"[_onItemLongPress] Item not found in backing list, ignoring");
|
|
return;
|
|
}
|
|
setState(() {
|
|
_selectedItems.add(item);
|
|
});
|
|
}
|
|
|
|
void _onNewAlbumItemTap(BuildContext context) {
|
|
showDialog(
|
|
context: context,
|
|
builder: (_) => NewAlbumDialog(
|
|
account: widget.account,
|
|
),
|
|
).catchError((e, stacktrace) {
|
|
_log.severe(
|
|
"[_onNewAlbumItemTap] Failed while showDialog", e, stacktrace);
|
|
SnackBarManager().showSnackBar(SnackBar(
|
|
content:
|
|
Text(AppLocalizations.of(context).createAlbumFailureNotification),
|
|
duration: k.snackBarDurationNormal,
|
|
));
|
|
});
|
|
}
|
|
|
|
Future<void> _onSelectionAppBarDeletePressed() async {
|
|
SnackBarManager().showSnackBar(SnackBar(
|
|
content: Text(AppLocalizations.of(context)
|
|
.deleteSelectedProcessingNotification(_selectedItems.length)),
|
|
duration: k.snackBarDurationShort,
|
|
));
|
|
final selectedFiles = _selectedItems.map((e) => e.album.albumFile).toList();
|
|
setState(() {
|
|
_selectedItems.clear();
|
|
});
|
|
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) {
|
|
_log.severe(
|
|
"[_onSelectionAppBarDeletePressed] Failed while removing file: ${f.path}",
|
|
e,
|
|
stacktrace);
|
|
failures.add(f);
|
|
}
|
|
}
|
|
if (failures.isEmpty) {
|
|
SnackBarManager().showSnackBar(SnackBar(
|
|
content: Text(
|
|
AppLocalizations.of(context).deleteSelectedSuccessNotification),
|
|
duration: k.snackBarDurationNormal,
|
|
));
|
|
} else {
|
|
SnackBarManager().showSnackBar(SnackBar(
|
|
content: Text(AppLocalizations.of(context)
|
|
.deleteSelectedFailureNotification(failures.length)),
|
|
duration: k.snackBarDurationNormal,
|
|
));
|
|
}
|
|
}
|
|
|
|
/// Transform an Album list to grid items
|
|
void _transformItems(List<Album> albums) {
|
|
final sortedAlbums = albums.map((e) {
|
|
// find the latest file in this album
|
|
try {
|
|
return Tuple2(
|
|
e.items
|
|
.whereType<AlbumFileItem>()
|
|
.map((e) => e.file)
|
|
.where((element) => file_util.isSupportedFormat(element))
|
|
.sorted(compareFileDateTimeDescending)
|
|
.first
|
|
.lastModified,
|
|
e);
|
|
} catch (_) {
|
|
return Tuple2(e.lastUpdated, e);
|
|
}
|
|
}).sorted((a, b) {
|
|
// then sort in descending order
|
|
final tmp = b.item1.compareTo(a.item1);
|
|
if (tmp != 0) {
|
|
return tmp;
|
|
} else {
|
|
return a.item2.name.compareTo(b.item2.name);
|
|
}
|
|
}).map((e) => e.item2);
|
|
_items.clear();
|
|
_items.addAll(sortedAlbums.map((e) => _GridItem(e)));
|
|
|
|
_transformSelectedItems();
|
|
}
|
|
|
|
/// Map selected items to the new item list
|
|
void _transformSelectedItems() {
|
|
final newSelectedItems = _selectedItems
|
|
.map((from) {
|
|
try {
|
|
return _items.whereType<_GridItem>().firstWhere(
|
|
(to) => from.album.albumFile.path == to.album.albumFile.path);
|
|
} catch (_) {
|
|
return null;
|
|
}
|
|
})
|
|
.where((element) => element != null)
|
|
.toList();
|
|
_selectedItems
|
|
..clear()
|
|
..addAll(newSelectedItems);
|
|
}
|
|
|
|
void _reqQuery() {
|
|
_bloc.add(ListAlbumBlocQuery(widget.account));
|
|
}
|
|
|
|
bool get _isSelectionMode => _selectedItems.isNotEmpty;
|
|
|
|
ListAlbumBloc _bloc;
|
|
|
|
final _items = <_GridItem>[];
|
|
final _selectedItems = <_GridItem>[];
|
|
|
|
static final _log = Logger("widget.home_albums._HomeAlbumsState");
|
|
}
|
|
|
|
class _GridItem {
|
|
_GridItem(this.album);
|
|
|
|
Album album;
|
|
}
|