ente/lib/ui/viewer/location/add_location_sheet.dart

217 lines
8.1 KiB
Dart
Raw Normal View History

import 'package:flutter/material.dart';
import "package:modal_bottom_sheet/modal_bottom_sheet.dart";
import "package:photos/core/constants.dart";
import "package:photos/services/location_service.dart";
import "package:photos/states/add_location_state.dart";
import "package:photos/theme/colors.dart";
import "package:photos/theme/ente_theme.dart";
import "package:photos/ui/common/loading_widget.dart";
import "package:photos/ui/components/bottom_of_title_bar_widget.dart";
import "package:photos/ui/components/divider_widget.dart";
import "package:photos/ui/components/keyboard/keybiard_oveylay.dart";
import "package:photos/ui/components/keyboard/keyboard_top_button.dart";
import "package:photos/ui/components/text_input_widget.dart";
import "package:photos/ui/components/title_bar_title_widget.dart";
import "package:photos/ui/viewer/location/add_location_gallery_widget.dart";
import "package:photos/ui/viewer/location/radius_picker_widget.dart";
showAddLocationSheet(
BuildContext context,
List<double> coordinates,
VoidCallback onLocationAdded,
) {
showBarModalBottomSheet(
context: context,
builder: (context) {
return LocationTagDataStateProvider(
coordinates,
AddLocationSheet(onLocationAdded),
);
},
shape: const RoundedRectangleBorder(
side: BorderSide(width: 0),
borderRadius: BorderRadius.vertical(
top: Radius.circular(5),
),
),
topControl: const SizedBox.shrink(),
backgroundColor: getEnteColorScheme(context).backgroundElevated,
barrierColor: backdropFaintDark,
enableDrag: false,
);
}
class AddLocationSheet extends StatefulWidget {
final VoidCallback onLocationAdded;
const AddLocationSheet(this.onLocationAdded, {super.key});
@override
State<AddLocationSheet> createState() => _AddLocationSheetState();
}
class _AddLocationSheetState extends State<AddLocationSheet> {
2023-03-27 11:24:50 +00:00
//The value of these notifiers has no significance.
2023-03-24 14:26:17 +00:00
//When memoriesCountNotifier is null, we show the loading widget in the
//memories count section which also means the gallery is loading.
2023-03-27 11:24:50 +00:00
final ValueNotifier<int?> _memoriesCountNotifier = ValueNotifier(null);
final ValueNotifier<bool> _submitNotifer = ValueNotifier(false);
final ValueNotifier<bool> _cancelNotifier = ValueNotifier(false);
final _focusNode = FocusNode();
2023-03-27 11:24:50 +00:00
Widget? _keyboardTopButtons;
@override
void initState() {
_focusNode.addListener(_focusNodeListener);
super.initState();
}
@override
void dispose() {
_focusNode.removeListener(_focusNodeListener);
2023-03-27 11:24:50 +00:00
_submitNotifer.dispose();
_cancelNotifier.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
final textTheme = getEnteTextTheme(context);
final colorScheme = getEnteColorScheme(context);
return Padding(
padding: const EdgeInsets.fromLTRB(0, 32, 0, 8),
child: Column(
children: [
const Padding(
padding: EdgeInsets.only(bottom: 16),
child: BottomOfTitleBarWidget(
title: TitleBarTitleWidget(title: "Add location"),
),
),
Expanded(
child: SingleChildScrollView(
child: Column(
mainAxisSize: MainAxisSize.min,
children: [
Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Column(
children: [
TextInputWidget(
hintText: "Location name",
borderRadius: 2,
focusNode: _focusNode,
2023-03-27 11:24:50 +00:00
submitNotifier: _submitNotifer,
cancelNotifier: _cancelNotifier,
2023-03-24 21:28:53 +00:00
popNavAfterSubmission: true,
onSubmit: (locationName) async {
await _addLocationTag(locationName);
},
shouldUnfocusOnClearOrSubmit: true,
alwaysShowSuccessState: true,
),
const SizedBox(height: 24),
2023-03-27 11:24:50 +00:00
RadiusPickerWidget(_memoriesCountNotifier),
const SizedBox(height: 24),
Text(
"A location tag groups all photos that were taken within some radius of a photo",
style: textTheme.smallMuted,
),
],
),
),
const DividerWidget(
dividerType: DividerType.solid,
padding: EdgeInsets.only(top: 24, bottom: 20),
),
SizedBox(
width: double.infinity,
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 16),
child: ValueListenableBuilder(
2023-03-27 11:24:50 +00:00
valueListenable: _memoriesCountNotifier,
builder: (context, value, _) {
Widget widget;
if (value == null) {
widget = RepaintBoundary(
child: EnteLoadingWidget(
size: 14,
color: colorScheme.strokeMuted,
alignment: Alignment.centerLeft,
padding: 3,
),
);
} else {
widget = Column(
mainAxisSize: MainAxisSize.min,
crossAxisAlignment: CrossAxisAlignment.start,
children: [
Text(
value == 1 ? "1 memory" : "$value memories",
style: textTheme.body,
),
if (value as int > 1000)
Padding(
padding: const EdgeInsets.only(top: 2),
child: Text(
"Up to 1000 memories shown in gallery",
style: textTheme.miniMuted,
),
),
],
);
}
return Align(
alignment: Alignment.centerLeft,
child: AnimatedSwitcher(
duration: const Duration(milliseconds: 250),
switchInCurve: Curves.easeInOutExpo,
switchOutCurve: Curves.easeInOutExpo,
child: widget,
),
);
},
),
),
),
const SizedBox(height: 24),
2023-03-27 11:24:50 +00:00
AddLocationGalleryWidget(_memoriesCountNotifier),
],
),
),
),
],
),
);
}
Future<void> _addLocationTag(String locationName) async {
2023-03-24 21:28:53 +00:00
final locationData = InheritedLocationTagData.of(context);
final coordinates = locationData.coordinates;
final radius = radiusValues[locationData.selectedRadiusIndex];
await LocationService.instance.addLocation(
2023-03-24 21:28:53 +00:00
locationName,
coordinates.first,
coordinates.last,
radius,
);
widget.onLocationAdded.call();
2023-03-24 21:28:53 +00:00
}
void _focusNodeListener() {
final bool hasFocus = _focusNode.hasFocus;
2023-03-27 11:24:50 +00:00
_keyboardTopButtons ??= KeyboardTopButton(
onDoneTap: () {
2023-03-27 11:24:50 +00:00
_submitNotifer.value = !_submitNotifer.value;
},
onCancelTap: () {
2023-03-27 11:24:50 +00:00
_cancelNotifier.value = !_cancelNotifier.value;
},
);
if (hasFocus) {
2023-03-27 11:24:50 +00:00
KeyboardOverlay.showOverlay(context, _keyboardTopButtons!);
} else {
KeyboardOverlay.removeOverlay();
}
}
}