346 lines
11 KiB
Dart
346 lines
11 KiB
Dart
import 'package:aves/model/entry.dart';
|
|
import 'package:aves/model/entry_metadata_edition.dart';
|
|
import 'package:aves/model/metadata/enums/enums.dart';
|
|
import 'package:aves/model/metadata/enums/location_edit_action.dart';
|
|
import 'package:aves/model/settings/enums/coordinate_format.dart';
|
|
import 'package:aves/model/settings/settings.dart';
|
|
import 'package:aves/model/source/collection_lens.dart';
|
|
import 'package:aves/theme/durations.dart';
|
|
import 'package:aves/theme/icons.dart';
|
|
import 'package:aves/theme/themes.dart';
|
|
import 'package:aves/utils/constants.dart';
|
|
import 'package:aves/widgets/common/basic/text_dropdown_button.dart';
|
|
import 'package:aves/widgets/common/extensions/build_context.dart';
|
|
import 'package:aves/widgets/common/providers/media_query_data_provider.dart';
|
|
import 'package:aves/widgets/dialogs/aves_dialog.dart';
|
|
import 'package:aves/widgets/dialogs/item_picker.dart';
|
|
import 'package:aves/widgets/dialogs/pick_dialogs/item_pick_page.dart';
|
|
import 'package:aves/widgets/dialogs/pick_dialogs/location_pick_page.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:intl/intl.dart';
|
|
import 'package:latlong2/latlong.dart';
|
|
import 'package:provider/provider.dart';
|
|
|
|
class EditEntryLocationDialog extends StatefulWidget {
|
|
static const routeName = '/dialog/edit_entry_location';
|
|
|
|
final AvesEntry entry;
|
|
final CollectionLens? collection;
|
|
|
|
const EditEntryLocationDialog({
|
|
super.key,
|
|
required this.entry,
|
|
this.collection,
|
|
});
|
|
|
|
@override
|
|
State<EditEntryLocationDialog> createState() => _EditEntryLocationDialogState();
|
|
}
|
|
|
|
class _EditEntryLocationDialogState extends State<EditEntryLocationDialog> {
|
|
LocationEditAction _action = LocationEditAction.chooseOnMap;
|
|
LatLng? _mapCoordinates;
|
|
late AvesEntry _copyItemSource;
|
|
final TextEditingController _latitudeController = TextEditingController(), _longitudeController = TextEditingController();
|
|
final ValueNotifier<bool> _isValidNotifier = ValueNotifier(false);
|
|
|
|
NumberFormat get coordinateFormatter => NumberFormat('0.000000', context.l10n.localeName);
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_initMapCoordinates();
|
|
_initCopyItem();
|
|
_initCustom();
|
|
}
|
|
|
|
void _initMapCoordinates() {
|
|
_mapCoordinates = widget.entry.latLng;
|
|
}
|
|
|
|
void _initCopyItem() {
|
|
_copyItemSource = widget.entry;
|
|
}
|
|
|
|
void _initCustom() {
|
|
WidgetsBinding.instance.addPostFrameCallback((_) {
|
|
final latLng = widget.entry.latLng;
|
|
if (latLng != null) {
|
|
_latitudeController.text = coordinateFormatter.format(latLng.latitude);
|
|
_longitudeController.text = coordinateFormatter.format(latLng.longitude);
|
|
} else {
|
|
_latitudeController.text = '';
|
|
_longitudeController.text = '';
|
|
}
|
|
setState(_validate);
|
|
});
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_latitudeController.dispose();
|
|
_longitudeController.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MediaQueryDataProvider(
|
|
child: TooltipTheme(
|
|
data: TooltipTheme.of(context).copyWith(
|
|
preferBelow: false,
|
|
),
|
|
child: Builder(builder: (context) {
|
|
final l10n = context.l10n;
|
|
|
|
return AvesDialog(
|
|
title: l10n.editEntryLocationDialogTitle,
|
|
scrollableContent: [
|
|
Padding(
|
|
padding: const EdgeInsets.only(left: 16, top: 8, right: 16),
|
|
child: TextDropdownButton<LocationEditAction>(
|
|
values: LocationEditAction.values,
|
|
valueText: (v) => v.getText(context),
|
|
value: _action,
|
|
onChanged: (v) => setState(() {
|
|
_action = v!;
|
|
_validate();
|
|
}),
|
|
isExpanded: true,
|
|
dropdownColor: Themes.thirdLayerColor(context),
|
|
),
|
|
),
|
|
AnimatedSwitcher(
|
|
duration: context.read<DurationsData>().formTransition,
|
|
switchInCurve: Curves.easeInOutCubic,
|
|
switchOutCurve: Curves.easeInOutCubic,
|
|
transitionBuilder: _formTransitionBuilder,
|
|
child: Column(
|
|
key: ValueKey(_action),
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
if (_action == LocationEditAction.chooseOnMap) _buildChooseOnMapContent(context),
|
|
if (_action == LocationEditAction.copyItem) _buildCopyItemContent(context),
|
|
if (_action == LocationEditAction.setCustom) _buildSetCustomContent(context),
|
|
],
|
|
),
|
|
),
|
|
const SizedBox(height: 8),
|
|
],
|
|
actions: [
|
|
const CancelButton(),
|
|
ValueListenableBuilder<bool>(
|
|
valueListenable: _isValidNotifier,
|
|
builder: (context, isValid, child) {
|
|
return TextButton(
|
|
onPressed: isValid ? () => _submit(context) : null,
|
|
child: Text(l10n.applyButtonLabel),
|
|
);
|
|
},
|
|
),
|
|
],
|
|
);
|
|
}),
|
|
),
|
|
);
|
|
}
|
|
|
|
Widget _formTransitionBuilder(Widget child, Animation<double> animation) => FadeTransition(
|
|
opacity: animation,
|
|
child: SizeTransition(
|
|
sizeFactor: animation,
|
|
axisAlignment: -1,
|
|
child: child,
|
|
),
|
|
);
|
|
|
|
Widget _buildChooseOnMapContent(BuildContext context) {
|
|
final l10n = context.l10n;
|
|
|
|
return Padding(
|
|
padding: const EdgeInsetsDirectional.only(start: 16, end: 8),
|
|
child: Row(
|
|
children: [
|
|
Expanded(child: _toText(context, _mapCoordinates)),
|
|
const SizedBox(width: 8),
|
|
IconButton(
|
|
icon: const Icon(AIcons.map),
|
|
onPressed: _pickLocation,
|
|
tooltip: l10n.editEntryLocationDialogChooseOnMap,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Future<void> _pickLocation() async {
|
|
final baseCollection = widget.collection;
|
|
final mapCollection = baseCollection != null
|
|
? CollectionLens(
|
|
source: baseCollection.source,
|
|
filters: baseCollection.filters,
|
|
fixedSelection: baseCollection.sortedEntries.where((entry) => entry.hasGps).toList(),
|
|
)
|
|
: null;
|
|
final latLng = await Navigator.maybeOf(context)?.push(
|
|
MaterialPageRoute(
|
|
settings: const RouteSettings(name: LocationPickPage.routeName),
|
|
builder: (context) => LocationPickPage(
|
|
collection: mapCollection,
|
|
initialLocation: _mapCoordinates,
|
|
),
|
|
fullscreenDialog: true,
|
|
),
|
|
);
|
|
mapCollection?.dispose();
|
|
if (latLng != null) {
|
|
settings.mapDefaultCenter = latLng;
|
|
setState(() {
|
|
_mapCoordinates = latLng;
|
|
_validate();
|
|
});
|
|
}
|
|
}
|
|
|
|
Widget _buildCopyItemContent(BuildContext context) {
|
|
return Padding(
|
|
padding: const EdgeInsetsDirectional.only(start: 16, end: 8),
|
|
child: Row(
|
|
children: [
|
|
Expanded(child: _toText(context, _copyItemSource.latLng)),
|
|
const SizedBox(width: 8),
|
|
ItemPicker(
|
|
extent: 48,
|
|
entry: _copyItemSource,
|
|
onTap: _pickCopyItemSource,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Future<void> _pickCopyItemSource() async {
|
|
final _collection = widget.collection;
|
|
if (_collection == null) return;
|
|
|
|
final entry = await Navigator.maybeOf(context)?.push<AvesEntry>(
|
|
MaterialPageRoute(
|
|
settings: const RouteSettings(name: ItemPickPage.routeName),
|
|
builder: (context) => ItemPickPage(
|
|
collection: CollectionLens(
|
|
source: _collection.source,
|
|
),
|
|
),
|
|
fullscreenDialog: true,
|
|
),
|
|
);
|
|
if (entry != null) {
|
|
setState(() {
|
|
_copyItemSource = entry;
|
|
_validate();
|
|
});
|
|
}
|
|
}
|
|
|
|
Widget _buildSetCustomContent(BuildContext context) {
|
|
final l10n = context.l10n;
|
|
|
|
return Padding(
|
|
padding: const EdgeInsets.symmetric(horizontal: 16),
|
|
child: Row(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
Expanded(
|
|
child: Column(
|
|
children: [
|
|
TextField(
|
|
controller: _latitudeController,
|
|
decoration: InputDecoration(
|
|
labelText: l10n.editEntryLocationDialogLatitude,
|
|
hintText: coordinateFormatter.format(Constants.pointNemo.latitude),
|
|
),
|
|
onChanged: (_) => _validate(),
|
|
),
|
|
TextField(
|
|
controller: _longitudeController,
|
|
decoration: InputDecoration(
|
|
labelText: l10n.editEntryLocationDialogLongitude,
|
|
hintText: coordinateFormatter.format(Constants.pointNemo.longitude),
|
|
),
|
|
onChanged: (_) => _validate(),
|
|
),
|
|
],
|
|
),
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
|
|
Text _toText(BuildContext context, LatLng? latLng) {
|
|
final l10n = context.l10n;
|
|
if (latLng != null) {
|
|
return Text(
|
|
ExtraCoordinateFormat.toDMS(l10n, latLng).join('\n'),
|
|
);
|
|
} else {
|
|
return Text(
|
|
l10n.viewerInfoUnknown,
|
|
style: TextStyle(
|
|
color: Theme.of(context).textTheme.bodySmall!.color,
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
LatLng? _parseLatLng() {
|
|
double? tryParse(String text) {
|
|
try {
|
|
return double.tryParse(text) ?? (coordinateFormatter.parse(text).toDouble());
|
|
} catch (e) {
|
|
// ignore
|
|
return null;
|
|
}
|
|
}
|
|
|
|
final lat = tryParse(_latitudeController.text);
|
|
final lng = tryParse(_longitudeController.text);
|
|
if (lat == null || lng == null) return null;
|
|
if (lat < -90 || lat > 90 || lng < -180 || lng > 180) return null;
|
|
return LatLng(lat, lng);
|
|
}
|
|
|
|
void _validate() {
|
|
switch (_action) {
|
|
case LocationEditAction.chooseOnMap:
|
|
_isValidNotifier.value = _mapCoordinates != null;
|
|
break;
|
|
case LocationEditAction.copyItem:
|
|
_isValidNotifier.value = _copyItemSource.hasGps;
|
|
break;
|
|
case LocationEditAction.setCustom:
|
|
_isValidNotifier.value = _parseLatLng() != null;
|
|
break;
|
|
case LocationEditAction.remove:
|
|
_isValidNotifier.value = true;
|
|
break;
|
|
}
|
|
}
|
|
|
|
void _submit(BuildContext context) {
|
|
switch (_action) {
|
|
case LocationEditAction.chooseOnMap:
|
|
Navigator.maybeOf(context)?.pop(_mapCoordinates);
|
|
break;
|
|
case LocationEditAction.copyItem:
|
|
Navigator.maybeOf(context)?.pop(_copyItemSource.latLng);
|
|
break;
|
|
case LocationEditAction.setCustom:
|
|
Navigator.maybeOf(context)?.pop(_parseLatLng());
|
|
break;
|
|
case LocationEditAction.remove:
|
|
Navigator.maybeOf(context)?.pop(ExtraAvesEntryMetadataEdition.removalLocation);
|
|
break;
|
|
}
|
|
}
|
|
}
|