2022-08-28 17:35:29 +02:00
|
|
|
import 'dart:ui';
|
|
|
|
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
|
|
import 'package:kiwi/kiwi.dart';
|
|
|
|
import 'package:logging/logging.dart';
|
|
|
|
import 'package:nc_photos/account.dart';
|
|
|
|
import 'package:nc_photos/app_localizations.dart';
|
|
|
|
import 'package:nc_photos/bloc/list_location_file.dart';
|
|
|
|
import 'package:nc_photos/compute_queue.dart';
|
|
|
|
import 'package:nc_photos/di_container.dart';
|
|
|
|
import 'package:nc_photos/download_handler.dart';
|
|
|
|
import 'package:nc_photos/entity/file.dart';
|
2022-10-15 16:29:18 +02:00
|
|
|
import 'package:nc_photos/entity/file_descriptor.dart';
|
2022-08-28 17:35:29 +02:00
|
|
|
import 'package:nc_photos/exception_util.dart' as exception_util;
|
|
|
|
import 'package:nc_photos/k.dart' as k;
|
|
|
|
import 'package:nc_photos/language_util.dart' as language_util;
|
|
|
|
import 'package:nc_photos/location_util.dart' as location_util;
|
|
|
|
import 'package:nc_photos/object_extension.dart';
|
|
|
|
import 'package:nc_photos/pref.dart';
|
|
|
|
import 'package:nc_photos/share_handler.dart';
|
|
|
|
import 'package:nc_photos/snack_bar_manager.dart';
|
2022-08-28 21:36:42 +02:00
|
|
|
import 'package:nc_photos/widget/about_geocoding_dialog.dart';
|
2022-11-12 10:55:33 +01:00
|
|
|
import 'package:nc_photos/widget/app_bar_title_container.dart';
|
2022-08-28 17:35:29 +02:00
|
|
|
import 'package:nc_photos/widget/builder/photo_list_item_builder.dart';
|
|
|
|
import 'package:nc_photos/widget/handler/add_selection_to_album_handler.dart';
|
|
|
|
import 'package:nc_photos/widget/handler/archive_selection_handler.dart';
|
|
|
|
import 'package:nc_photos/widget/handler/remove_selection_handler.dart';
|
|
|
|
import 'package:nc_photos/widget/photo_list_item.dart';
|
|
|
|
import 'package:nc_photos/widget/photo_list_util.dart' as photo_list_util;
|
|
|
|
import 'package:nc_photos/widget/selectable_item_stream_list_mixin.dart';
|
|
|
|
import 'package:nc_photos/widget/selection_app_bar.dart';
|
|
|
|
import 'package:nc_photos/widget/viewer.dart';
|
|
|
|
import 'package:nc_photos/widget/zoom_menu_button.dart';
|
2022-12-16 16:01:04 +01:00
|
|
|
import 'package:np_codegen/np_codegen.dart';
|
|
|
|
|
|
|
|
part 'place_browser.g.dart';
|
2022-08-28 17:35:29 +02:00
|
|
|
|
|
|
|
class PlaceBrowserArguments {
|
|
|
|
const PlaceBrowserArguments(this.account, this.place, this.countryCode);
|
|
|
|
|
|
|
|
final Account account;
|
|
|
|
final String? place;
|
|
|
|
final String countryCode;
|
|
|
|
}
|
|
|
|
|
|
|
|
class PlaceBrowser extends StatefulWidget {
|
|
|
|
static const routeName = "/place-browser";
|
|
|
|
|
|
|
|
static Route buildRoute(PlaceBrowserArguments args) => MaterialPageRoute(
|
|
|
|
builder: (context) => PlaceBrowser.fromArgs(args),
|
|
|
|
);
|
|
|
|
|
|
|
|
const PlaceBrowser({
|
|
|
|
Key? key,
|
|
|
|
required this.account,
|
|
|
|
required this.place,
|
|
|
|
required this.countryCode,
|
|
|
|
}) : super(key: key);
|
|
|
|
|
|
|
|
PlaceBrowser.fromArgs(PlaceBrowserArguments args, {Key? key})
|
|
|
|
: this(
|
|
|
|
key: key,
|
|
|
|
account: args.account,
|
|
|
|
place: args.place,
|
|
|
|
countryCode: args.countryCode,
|
|
|
|
);
|
|
|
|
|
|
|
|
@override
|
|
|
|
createState() => _PlaceBrowserState();
|
|
|
|
|
|
|
|
final Account account;
|
|
|
|
final String? place;
|
|
|
|
final String countryCode;
|
|
|
|
}
|
|
|
|
|
2022-12-16 16:01:04 +01:00
|
|
|
@npLog
|
2022-08-28 17:35:29 +02:00
|
|
|
class _PlaceBrowserState extends State<PlaceBrowser>
|
|
|
|
with SelectableItemStreamListMixin<PlaceBrowser> {
|
|
|
|
_PlaceBrowserState() {
|
|
|
|
final c = KiwiContainer().resolve<DiContainer>();
|
|
|
|
assert(require(c));
|
|
|
|
assert(ListLocationFileBloc.require(c));
|
|
|
|
_c = c;
|
|
|
|
}
|
|
|
|
|
|
|
|
static bool require(DiContainer c) => true;
|
|
|
|
|
|
|
|
@override
|
|
|
|
initState() {
|
|
|
|
super.initState();
|
|
|
|
_initBloc();
|
|
|
|
_thumbZoomLevel = Pref().getAlbumBrowserZoomLevelOr(0);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
build(BuildContext context) {
|
2022-11-12 10:55:33 +01:00
|
|
|
return Scaffold(
|
|
|
|
body: BlocListener<ListLocationFileBloc, ListLocationFileBlocState>(
|
|
|
|
bloc: _bloc,
|
|
|
|
listener: (context, state) => _onStateChange(context, state),
|
|
|
|
child: BlocBuilder<ListLocationFileBloc, ListLocationFileBlocState>(
|
2022-08-28 17:35:29 +02:00
|
|
|
bloc: _bloc,
|
2022-11-12 10:55:33 +01:00
|
|
|
builder: (context, state) => _buildContent(context, state),
|
2022-08-28 17:35:29 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
onItemTap(SelectableItem item, int index) {
|
|
|
|
item.as<PhotoListFileItem>()?.run((fileItem) {
|
|
|
|
Navigator.pushNamed(
|
|
|
|
context,
|
|
|
|
Viewer.routeName,
|
|
|
|
arguments:
|
|
|
|
ViewerArguments(widget.account, _backingFiles, fileItem.fileIndex),
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
void _initBloc() {
|
|
|
|
_log.info("[_initBloc] Initialize bloc");
|
|
|
|
_reqQuery();
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildContent(BuildContext context, ListLocationFileBlocState state) {
|
|
|
|
return buildItemStreamListOuter(
|
|
|
|
context,
|
2022-11-12 10:55:33 +01:00
|
|
|
child: CustomScrollView(
|
|
|
|
slivers: [
|
|
|
|
_buildAppBar(context, state),
|
|
|
|
if (state is ListLocationFileBlocLoading ||
|
|
|
|
_buildItemQueue.isProcessing)
|
|
|
|
const SliverToBoxAdapter(
|
|
|
|
child: Align(
|
|
|
|
alignment: Alignment.center,
|
|
|
|
child: LinearProgressIndicator(),
|
2022-08-28 17:35:29 +02:00
|
|
|
),
|
|
|
|
),
|
2022-11-12 10:55:33 +01:00
|
|
|
buildItemStreamList(
|
|
|
|
maxCrossAxisExtent: _thumbSize.toDouble(),
|
|
|
|
),
|
|
|
|
],
|
2022-08-28 17:35:29 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildAppBar(BuildContext context, ListLocationFileBlocState state) {
|
|
|
|
if (isSelectionMode) {
|
|
|
|
return _buildSelectionAppBar(context);
|
|
|
|
} else {
|
|
|
|
return _buildNormalAppBar(context, state);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildNormalAppBar(
|
|
|
|
BuildContext context, ListLocationFileBlocState state) {
|
|
|
|
return SliverAppBar(
|
|
|
|
floating: true,
|
|
|
|
titleSpacing: 0,
|
2022-11-12 10:55:33 +01:00
|
|
|
title: AppBarTitleContainer(
|
|
|
|
title: Text(
|
|
|
|
widget.place ?? location_util.alpha2CodeToName(widget.countryCode)!,
|
|
|
|
),
|
|
|
|
subtitle: (state is! ListLocationFileBlocLoading &&
|
|
|
|
!_buildItemQueue.isProcessing)
|
|
|
|
? Text(L10n.global().personPhotoCountText(_backingFiles.length))
|
|
|
|
: null,
|
2022-08-28 17:35:29 +02:00
|
|
|
),
|
|
|
|
actions: [
|
|
|
|
ZoomMenuButton(
|
|
|
|
initialZoom: _thumbZoomLevel,
|
|
|
|
minZoom: 0,
|
|
|
|
maxZoom: 2,
|
|
|
|
onZoomChanged: (value) {
|
|
|
|
setState(() {
|
|
|
|
_thumbZoomLevel = value.round();
|
|
|
|
});
|
|
|
|
Pref().setAlbumBrowserZoomLevel(_thumbZoomLevel);
|
|
|
|
},
|
|
|
|
),
|
2022-08-28 21:36:42 +02:00
|
|
|
IconButton(
|
|
|
|
onPressed: () {
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (_) => const AboutGeocodingDialog(),
|
|
|
|
);
|
|
|
|
},
|
|
|
|
icon: const Icon(Icons.info_outline),
|
|
|
|
),
|
2022-08-28 17:35:29 +02:00
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildSelectionAppBar(BuildContext context) {
|
|
|
|
return SelectionAppBar(
|
|
|
|
count: selectedListItems.length,
|
|
|
|
onClosePressed: () {
|
|
|
|
setState(() {
|
|
|
|
clearSelectedItems();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
actions: [
|
|
|
|
IconButton(
|
|
|
|
icon: const Icon(Icons.share),
|
|
|
|
tooltip: L10n.global().shareTooltip,
|
|
|
|
onPressed: () {
|
|
|
|
_onSelectionSharePressed(context);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
IconButton(
|
|
|
|
icon: const Icon(Icons.add),
|
|
|
|
tooltip: L10n.global().addToAlbumTooltip,
|
|
|
|
onPressed: () {
|
|
|
|
_onSelectionAddToAlbumPressed(context);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
PopupMenuButton<_SelectionMenuOption>(
|
|
|
|
tooltip: MaterialLocalizations.of(context).moreButtonTooltip,
|
|
|
|
itemBuilder: (context) => [
|
|
|
|
PopupMenuItem(
|
|
|
|
value: _SelectionMenuOption.download,
|
|
|
|
child: Text(L10n.global().downloadTooltip),
|
|
|
|
),
|
|
|
|
PopupMenuItem(
|
|
|
|
value: _SelectionMenuOption.archive,
|
|
|
|
child: Text(L10n.global().archiveTooltip),
|
|
|
|
),
|
|
|
|
PopupMenuItem(
|
|
|
|
value: _SelectionMenuOption.delete,
|
|
|
|
child: Text(L10n.global().deleteTooltip),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
onSelected: (option) {
|
|
|
|
_onSelectionMenuSelected(context, option);
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onStateChange(BuildContext context, ListLocationFileBlocState state) {
|
|
|
|
if (state is ListLocationFileBlocInit) {
|
|
|
|
itemStreamListItems = [];
|
|
|
|
} else if (state is ListLocationFileBlocSuccess ||
|
|
|
|
state is ListLocationFileBlocLoading) {
|
|
|
|
_transformItems(state.items);
|
|
|
|
} else if (state is ListLocationFileBlocFailure) {
|
|
|
|
_transformItems(state.items);
|
|
|
|
SnackBarManager().showSnackBar(SnackBar(
|
|
|
|
content: Text(exception_util.toUserString(state.exception)),
|
|
|
|
duration: k.snackBarDurationNormal,
|
|
|
|
));
|
|
|
|
} else if (state is ListLocationFileBlocInconsistent) {
|
|
|
|
_reqQuery();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onSelectionMenuSelected(
|
|
|
|
BuildContext context, _SelectionMenuOption option) {
|
|
|
|
switch (option) {
|
|
|
|
case _SelectionMenuOption.archive:
|
|
|
|
_onSelectionArchivePressed(context);
|
|
|
|
break;
|
|
|
|
case _SelectionMenuOption.delete:
|
|
|
|
_onSelectionDeletePressed(context);
|
|
|
|
break;
|
|
|
|
case _SelectionMenuOption.download:
|
|
|
|
_onSelectionDownloadPressed();
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
_log.shout("[_onSelectionMenuSelected] Unknown option: $option");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onSelectionSharePressed(BuildContext context) {
|
2022-10-15 16:29:18 +02:00
|
|
|
final c = KiwiContainer().resolve<DiContainer>();
|
2022-08-28 17:35:29 +02:00
|
|
|
final selected = selectedListItems
|
|
|
|
.whereType<PhotoListFileItem>()
|
|
|
|
.map((e) => e.file)
|
|
|
|
.toList();
|
|
|
|
ShareHandler(
|
2022-10-15 16:29:18 +02:00
|
|
|
c,
|
2022-08-28 17:35:29 +02:00
|
|
|
context: context,
|
|
|
|
clearSelection: () {
|
|
|
|
setState(() {
|
|
|
|
clearSelectedItems();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
).shareFiles(widget.account, selected);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _onSelectionAddToAlbumPressed(BuildContext context) {
|
2022-10-15 16:29:18 +02:00
|
|
|
final c = KiwiContainer().resolve<DiContainer>();
|
|
|
|
return AddSelectionToAlbumHandler(c)(
|
2022-08-28 17:35:29 +02:00
|
|
|
context: context,
|
|
|
|
account: widget.account,
|
2022-10-15 16:29:18 +02:00
|
|
|
selection: selectedListItems
|
2022-08-28 17:35:29 +02:00
|
|
|
.whereType<PhotoListFileItem>()
|
|
|
|
.map((e) => e.file)
|
|
|
|
.toList(),
|
|
|
|
clearSelection: () {
|
|
|
|
if (mounted) {
|
|
|
|
setState(() {
|
|
|
|
clearSelectedItems();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _onSelectionDownloadPressed() {
|
2022-10-15 16:29:18 +02:00
|
|
|
final c = KiwiContainer().resolve<DiContainer>();
|
2022-08-28 17:35:29 +02:00
|
|
|
final selected = selectedListItems
|
|
|
|
.whereType<PhotoListFileItem>()
|
|
|
|
.map((e) => e.file)
|
|
|
|
.toList();
|
2022-10-15 16:29:18 +02:00
|
|
|
DownloadHandler(c).downloadFiles(widget.account, selected);
|
2022-08-28 17:35:29 +02:00
|
|
|
setState(() {
|
|
|
|
clearSelectedItems();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _onSelectionArchivePressed(BuildContext context) async {
|
2022-10-15 16:29:18 +02:00
|
|
|
final c = KiwiContainer().resolve<DiContainer>();
|
2022-08-28 17:35:29 +02:00
|
|
|
final selectedFiles = selectedListItems
|
|
|
|
.whereType<PhotoListFileItem>()
|
|
|
|
.map((e) => e.file)
|
|
|
|
.toList();
|
|
|
|
setState(() {
|
|
|
|
clearSelectedItems();
|
|
|
|
});
|
2022-10-15 16:29:18 +02:00
|
|
|
await ArchiveSelectionHandler(c)(
|
2022-08-28 17:35:29 +02:00
|
|
|
account: widget.account,
|
2022-10-15 16:29:18 +02:00
|
|
|
selection: selectedFiles,
|
2022-08-28 17:35:29 +02:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _onSelectionDeletePressed(BuildContext context) async {
|
2022-10-15 16:29:18 +02:00
|
|
|
final c = KiwiContainer().resolve<DiContainer>();
|
2022-08-28 17:35:29 +02:00
|
|
|
final selectedFiles = selectedListItems
|
|
|
|
.whereType<PhotoListFileItem>()
|
|
|
|
.map((e) => e.file)
|
|
|
|
.toList();
|
|
|
|
setState(() {
|
|
|
|
clearSelectedItems();
|
|
|
|
});
|
2022-10-15 16:29:18 +02:00
|
|
|
await RemoveSelectionHandler(c)(
|
2022-08-28 17:35:29 +02:00
|
|
|
account: widget.account,
|
2022-10-15 16:29:18 +02:00
|
|
|
selection: selectedFiles,
|
2022-08-28 17:35:29 +02:00
|
|
|
isMoveToTrash: true,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _transformItems(List<File> files) async {
|
|
|
|
final PhotoListItemSorter? sorter;
|
|
|
|
final PhotoListItemGrouper? grouper;
|
|
|
|
if (Pref().isPhotosTabSortByNameOr()) {
|
|
|
|
sorter = photoListFilenameSorter;
|
|
|
|
grouper = null;
|
|
|
|
} else {
|
|
|
|
sorter = photoListFileDateTimeSorter;
|
|
|
|
grouper = PhotoListFileDateGrouper(isMonthOnly: _thumbZoomLevel < 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
_buildItemQueue.addJob(
|
|
|
|
PhotoListItemBuilderArguments(
|
|
|
|
widget.account,
|
|
|
|
files,
|
|
|
|
sorter: sorter,
|
|
|
|
grouper: grouper,
|
|
|
|
shouldShowFavoriteBadge: true,
|
|
|
|
locale: language_util.getSelectedLocale() ??
|
|
|
|
PlatformDispatcher.instance.locale,
|
|
|
|
),
|
|
|
|
buildPhotoListItem,
|
|
|
|
(result) {
|
|
|
|
if (mounted) {
|
|
|
|
setState(() {
|
|
|
|
_backingFiles = result.backingFiles;
|
|
|
|
itemStreamListItems = result.listItems;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
void _reqQuery() {
|
|
|
|
_bloc.add(ListLocationFileBlocQuery(
|
|
|
|
widget.account, widget.place, widget.countryCode));
|
|
|
|
}
|
|
|
|
|
|
|
|
late final DiContainer _c;
|
|
|
|
|
|
|
|
late final ListLocationFileBloc _bloc = ListLocationFileBloc(_c);
|
2022-10-15 16:29:18 +02:00
|
|
|
var _backingFiles = <FileDescriptor>[];
|
2022-08-28 17:35:29 +02:00
|
|
|
|
|
|
|
final _buildItemQueue =
|
|
|
|
ComputeQueue<PhotoListItemBuilderArguments, PhotoListItemBuilderResult>();
|
|
|
|
|
|
|
|
var _thumbZoomLevel = 0;
|
|
|
|
int get _thumbSize => photo_list_util.getThumbSize(_thumbZoomLevel);
|
|
|
|
}
|
|
|
|
|
|
|
|
enum _SelectionMenuOption {
|
|
|
|
archive,
|
|
|
|
delete,
|
|
|
|
download,
|
|
|
|
}
|