320 lines
9.8 KiB
Dart
320 lines
9.8 KiB
Dart
import 'dart:math';
|
|
|
|
import 'package:flutter/material.dart';
|
|
import "package:flutter/services.dart";
|
|
import 'package:photos/core/constants.dart';
|
|
import "package:photos/generated/l10n.dart";
|
|
import 'package:photos/models/button_result.dart';
|
|
import 'package:photos/models/typedefs.dart';
|
|
import 'package:photos/theme/colors.dart';
|
|
import 'package:photos/theme/effects.dart';
|
|
import 'package:photos/theme/ente_theme.dart';
|
|
import 'package:photos/ui/components/buttons/button_widget.dart';
|
|
import 'package:photos/ui/components/models/button_type.dart';
|
|
import 'package:photos/ui/components/text_input_widget.dart';
|
|
import 'package:photos/utils/separators_util.dart';
|
|
|
|
///Will return null if dismissed by tapping outside
|
|
Future<ButtonResult?> showDialogWidget({
|
|
required BuildContext context,
|
|
required String title,
|
|
String? body,
|
|
required List<ButtonWidget> buttons,
|
|
IconData? icon,
|
|
bool isDismissible = true,
|
|
}) {
|
|
return showDialog(
|
|
barrierDismissible: isDismissible,
|
|
barrierColor: backdropFaintDark,
|
|
context: context,
|
|
builder: (context) {
|
|
final widthOfScreen = MediaQuery.of(context).size.width;
|
|
final isMobileSmall = widthOfScreen <= mobileSmallThreshold;
|
|
return Padding(
|
|
padding: EdgeInsets.symmetric(horizontal: isMobileSmall ? 8 : 0),
|
|
child: Dialog(
|
|
insetPadding: EdgeInsets.zero,
|
|
child: DialogWidget(
|
|
title: title,
|
|
body: body,
|
|
buttons: buttons,
|
|
icon: icon,
|
|
),
|
|
),
|
|
);
|
|
},
|
|
);
|
|
}
|
|
|
|
class DialogWidget extends StatelessWidget {
|
|
final String title;
|
|
final String? body;
|
|
final List<ButtonWidget> buttons;
|
|
final IconData? icon;
|
|
const DialogWidget({
|
|
required this.title,
|
|
this.body,
|
|
required this.buttons,
|
|
this.icon,
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final widthOfScreen = MediaQuery.of(context).size.width;
|
|
final isMobileSmall = widthOfScreen <= mobileSmallThreshold;
|
|
final colorScheme = getEnteColorScheme(context);
|
|
return Container(
|
|
width: min(widthOfScreen, 320),
|
|
padding: isMobileSmall
|
|
? const EdgeInsets.all(0)
|
|
: const EdgeInsets.fromLTRB(6, 8, 6, 6),
|
|
decoration: BoxDecoration(
|
|
color: colorScheme.backgroundElevated,
|
|
boxShadow: shadowFloatLight,
|
|
borderRadius: const BorderRadius.all(Radius.circular(8)),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(16),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
ContentContainer(
|
|
title: title,
|
|
body: body,
|
|
icon: icon,
|
|
),
|
|
const SizedBox(height: 36),
|
|
Actions(buttons),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class ContentContainer extends StatelessWidget {
|
|
final String title;
|
|
final String? body;
|
|
final IconData? icon;
|
|
const ContentContainer({
|
|
required this.title,
|
|
this.body,
|
|
this.icon,
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final textTheme = getEnteTextTheme(context);
|
|
final colorScheme = getEnteColorScheme(context);
|
|
return Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
crossAxisAlignment: CrossAxisAlignment.stretch,
|
|
children: [
|
|
icon == null
|
|
? const SizedBox.shrink()
|
|
: Row(
|
|
children: [
|
|
Icon(
|
|
icon,
|
|
size: 32,
|
|
),
|
|
],
|
|
),
|
|
icon == null ? const SizedBox.shrink() : const SizedBox(height: 19),
|
|
Text(title, style: textTheme.largeBold),
|
|
body != null ? const SizedBox(height: 19) : const SizedBox.shrink(),
|
|
body != null
|
|
? Text(
|
|
body!,
|
|
style: textTheme.body.copyWith(color: colorScheme.textMuted),
|
|
)
|
|
: const SizedBox.shrink(),
|
|
],
|
|
);
|
|
}
|
|
}
|
|
|
|
class Actions extends StatelessWidget {
|
|
final List<ButtonWidget> buttons;
|
|
const Actions(this.buttons, {super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
children: addSeparators(
|
|
buttons,
|
|
const SizedBox(
|
|
// In figma this white space is of height 8pts. But the Button
|
|
// component has 1pts of invisible border by default in code. So two
|
|
// 1pts borders will visually make the whitespace 8pts.
|
|
// Height of button component in figma = 48, in code = 50 (2pts for
|
|
// top + bottom border)
|
|
height: 6,
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|
|
|
|
class TextInputDialog extends StatefulWidget {
|
|
final String title;
|
|
final String? body;
|
|
final String submitButtonLabel;
|
|
final IconData? icon;
|
|
final String? label;
|
|
final String? message;
|
|
final FutureVoidCallbackParamStr onSubmit;
|
|
final String? hintText;
|
|
final IconData? prefixIcon;
|
|
final String? initialValue;
|
|
final Alignment? alignMessage;
|
|
final int? maxLength;
|
|
final bool showOnlyLoadingState;
|
|
final TextCapitalization? textCapitalization;
|
|
final bool alwaysShowSuccessState;
|
|
final bool isPasswordInput;
|
|
final TextEditingController? textEditingController;
|
|
final List<TextInputFormatter>? textInputFormatter;
|
|
final TextInputType? textInputType;
|
|
const TextInputDialog({
|
|
required this.title,
|
|
this.body,
|
|
required this.submitButtonLabel,
|
|
required this.onSubmit,
|
|
this.icon,
|
|
this.label,
|
|
this.message,
|
|
this.hintText,
|
|
this.prefixIcon,
|
|
this.initialValue,
|
|
this.alignMessage,
|
|
this.maxLength,
|
|
this.textCapitalization,
|
|
this.showOnlyLoadingState = false,
|
|
this.alwaysShowSuccessState = false,
|
|
this.isPasswordInput = false,
|
|
this.textEditingController,
|
|
this.textInputFormatter,
|
|
this.textInputType,
|
|
super.key,
|
|
});
|
|
|
|
@override
|
|
State<TextInputDialog> createState() => _TextInputDialogState();
|
|
}
|
|
|
|
class _TextInputDialogState extends State<TextInputDialog> {
|
|
//the value of this ValueNotifier has no significance
|
|
final _submitNotifier = ValueNotifier(false);
|
|
late final ValueNotifier<bool> _inputIsEmptyNotifier;
|
|
late final TextEditingController _textEditingController;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
_textEditingController =
|
|
widget.textEditingController ?? TextEditingController();
|
|
_inputIsEmptyNotifier = widget.initialValue?.isEmpty ?? true
|
|
? ValueNotifier(true)
|
|
: ValueNotifier(false);
|
|
_textEditingController.addListener(() {
|
|
if (_textEditingController.text.isEmpty != _inputIsEmptyNotifier.value) {
|
|
_inputIsEmptyNotifier.value = _textEditingController.text.isEmpty;
|
|
}
|
|
});
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
_submitNotifier.dispose();
|
|
_inputIsEmptyNotifier.dispose();
|
|
super.dispose();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
final widthOfScreen = MediaQuery.sizeOf(context).width;
|
|
final isMobileSmall = widthOfScreen <= mobileSmallThreshold;
|
|
final colorScheme = getEnteColorScheme(context);
|
|
return Container(
|
|
width: min(widthOfScreen, 320),
|
|
padding: isMobileSmall
|
|
? const EdgeInsets.all(0)
|
|
: const EdgeInsets.fromLTRB(6, 8, 6, 6),
|
|
decoration: BoxDecoration(
|
|
color: colorScheme.backgroundElevated,
|
|
boxShadow: shadowFloatLight,
|
|
borderRadius: const BorderRadius.all(Radius.circular(8)),
|
|
),
|
|
child: Padding(
|
|
padding: const EdgeInsets.all(16),
|
|
child: Column(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
ContentContainer(
|
|
title: widget.title,
|
|
body: widget.body,
|
|
icon: widget.icon,
|
|
),
|
|
Padding(
|
|
padding: const EdgeInsets.only(top: 19),
|
|
child: TextInputWidget(
|
|
label: widget.label,
|
|
message: widget.message,
|
|
hintText: widget.hintText,
|
|
prefixIcon: widget.prefixIcon,
|
|
initialValue: widget.initialValue,
|
|
alignMessage: widget.alignMessage,
|
|
autoFocus: true,
|
|
maxLength: widget.maxLength,
|
|
submitNotifier: _submitNotifier,
|
|
onSubmit: widget.onSubmit,
|
|
popNavAfterSubmission: true,
|
|
showOnlyLoadingState: widget.showOnlyLoadingState,
|
|
textCapitalization: widget.textCapitalization,
|
|
alwaysShowSuccessState: widget.alwaysShowSuccessState,
|
|
isPasswordInput: widget.isPasswordInput,
|
|
textEditingController: _textEditingController,
|
|
textInputFormatter: widget.textInputFormatter,
|
|
textInputType: widget.textInputType,
|
|
),
|
|
),
|
|
const SizedBox(height: 36),
|
|
Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: [
|
|
Expanded(
|
|
child: ButtonWidget(
|
|
buttonType: ButtonType.secondary,
|
|
buttonSize: ButtonSize.small,
|
|
labelText: S.of(context).cancel,
|
|
isInAlert: true,
|
|
),
|
|
),
|
|
const SizedBox(width: 8),
|
|
Expanded(
|
|
child: ValueListenableBuilder(
|
|
valueListenable: _inputIsEmptyNotifier,
|
|
builder: (context, bool value, _) {
|
|
return ButtonWidget(
|
|
buttonSize: ButtonSize.small,
|
|
buttonType: ButtonType.neutral,
|
|
labelText: widget.submitButtonLabel,
|
|
isDisabled: value,
|
|
onTap: () async {
|
|
_submitNotifier.value = !_submitNotifier.value;
|
|
},
|
|
);
|
|
},
|
|
),
|
|
),
|
|
],
|
|
),
|
|
],
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|