mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-12-12 17:44:30 -05:00
293 lines
9.5 KiB
Dart
293 lines
9.5 KiB
Dart
import 'package:async_tools/async_tools.dart';
|
|
import 'package:awesome_extensions/awesome_extensions.dart';
|
|
import 'package:bloc_advanced_tools/bloc_advanced_tools.dart';
|
|
import 'package:blurry_modal_progress_hud/blurry_modal_progress_hud.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:flutter_spinkit/flutter_spinkit.dart';
|
|
import 'package:motion_toast/motion_toast.dart';
|
|
import 'package:quickalert/quickalert.dart';
|
|
|
|
import '../theme.dart';
|
|
|
|
extension BorderExt on Widget {
|
|
DecoratedBox debugBorder() => DecoratedBox(
|
|
decoration: BoxDecoration(border: Border.all(color: Colors.redAccent)),
|
|
child: this);
|
|
}
|
|
|
|
extension ModalProgressExt on Widget {
|
|
BlurryModalProgressHUD withModalHUD(BuildContext context, bool isLoading) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
|
|
return BlurryModalProgressHUD(
|
|
inAsyncCall: isLoading,
|
|
blurEffectIntensity: 4,
|
|
progressIndicator: buildProgressIndicator(),
|
|
color: scale.tertiaryScale.appBackground.withAlpha(64),
|
|
child: this);
|
|
}
|
|
}
|
|
|
|
Widget buildProgressIndicator() => Builder(builder: (context) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
return SpinKitFoldingCube(
|
|
color: scale.tertiaryScale.primary,
|
|
size: 80,
|
|
);
|
|
});
|
|
|
|
Widget waitingPage({String? text}) => Builder(builder: (context) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
return ColoredBox(
|
|
color: scale.tertiaryScale.appBackground,
|
|
child: Center(
|
|
child: Column(children: [
|
|
buildProgressIndicator().expanded(),
|
|
if (text != null) Text(text)
|
|
])));
|
|
});
|
|
|
|
Widget debugPage(String text) => Builder(
|
|
builder: (context) => ColoredBox(
|
|
color: Theme.of(context).colorScheme.error,
|
|
child: Center(child: Text(text))));
|
|
|
|
Widget errorPage(Object err, StackTrace? st) => Builder(
|
|
builder: (context) => ColoredBox(
|
|
color: Theme.of(context).colorScheme.error,
|
|
child: Center(child: ErrorWidget(err))));
|
|
|
|
Widget asyncValueBuilder<T>(
|
|
AsyncValue<T> av, Widget Function(BuildContext, T) builder) =>
|
|
av.when(
|
|
loading: waitingPage,
|
|
error: errorPage,
|
|
data: (d) => Builder(builder: (context) => builder(context, d)));
|
|
|
|
extension AsyncValueBuilderExt<T> on AsyncValue<T> {
|
|
Widget builder(Widget Function(BuildContext, T) builder) =>
|
|
asyncValueBuilder<T>(this, builder);
|
|
Widget buildNotData(
|
|
{Widget Function()? loading,
|
|
Widget Function(Object, StackTrace?)? error}) =>
|
|
when(
|
|
loading: () => (loading ?? waitingPage)(),
|
|
error: (e, st) => (error ?? errorPage)(e, st),
|
|
data: (d) => debugPage('AsyncValue should not be data here'));
|
|
}
|
|
|
|
extension BusyAsyncValueBuilderExt<T> on BlocBusyState<AsyncValue<T>> {
|
|
Widget builder(Widget Function(BuildContext, T) builder) =>
|
|
AbsorbPointer(absorbing: busy, child: state.builder(builder));
|
|
Widget buildNotData(
|
|
{Widget Function()? loading,
|
|
Widget Function(Object, StackTrace?)? error}) =>
|
|
AbsorbPointer(
|
|
absorbing: busy,
|
|
child: state.buildNotData(loading: loading, error: error));
|
|
}
|
|
|
|
class AsyncBlocBuilder<B extends StateStreamable<AsyncValue<S>>, S>
|
|
extends BlocBuilder<B, AsyncValue<S>> {
|
|
AsyncBlocBuilder({
|
|
required BlocWidgetBuilder<S> builder,
|
|
Widget Function()? loading,
|
|
Widget Function(Object, StackTrace?)? error,
|
|
super.key,
|
|
super.bloc,
|
|
super.buildWhen,
|
|
}) : super(
|
|
builder: (context, state) => state.when(
|
|
loading: () => (loading ?? waitingPage)(),
|
|
error: (e, st) => (error ?? errorPage)(e, st),
|
|
data: (d) => builder(context, d)));
|
|
}
|
|
|
|
Future<void> showErrorModal(
|
|
BuildContext context, String title, String text) async {
|
|
await QuickAlert.show(
|
|
context: context,
|
|
type: QuickAlertType.error,
|
|
title: title,
|
|
text: text,
|
|
//backgroundColor: Colors.black,
|
|
//titleColor: Colors.white,
|
|
//textColor: Colors.white,
|
|
);
|
|
}
|
|
|
|
void showErrorToast(BuildContext context, String message) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
final scaleConfig = theme.extension<ScaleConfig>()!;
|
|
|
|
MotionToast(
|
|
//title: Text(translate('toast.error')),
|
|
description: Text(message),
|
|
constraints: BoxConstraints.loose(const Size(400, 100)),
|
|
contentPadding: const EdgeInsets.all(16),
|
|
primaryColor: scale.errorScale.elementBackground,
|
|
secondaryColor: scale.errorScale.calloutBackground,
|
|
borderRadius: 16 * scaleConfig.borderRadiusScale,
|
|
toastDuration: const Duration(seconds: 4),
|
|
animationDuration: const Duration(milliseconds: 1000),
|
|
displayBorder: scaleConfig.useVisualIndicators,
|
|
icon: Icons.error,
|
|
).show(context);
|
|
}
|
|
|
|
void showInfoToast(BuildContext context, String message) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
final scaleConfig = theme.extension<ScaleConfig>()!;
|
|
|
|
MotionToast(
|
|
//title: Text(translate('toast.info')),
|
|
description: Text(message),
|
|
constraints: BoxConstraints.loose(const Size(400, 100)),
|
|
contentPadding: const EdgeInsets.all(16),
|
|
primaryColor: scale.tertiaryScale.elementBackground,
|
|
secondaryColor: scale.tertiaryScale.calloutBackground,
|
|
borderRadius: 16 * scaleConfig.borderRadiusScale,
|
|
toastDuration: const Duration(seconds: 2),
|
|
animationDuration: const Duration(milliseconds: 500),
|
|
displayBorder: scaleConfig.useVisualIndicators,
|
|
icon: Icons.info,
|
|
).show(context);
|
|
}
|
|
|
|
Widget styledTitleContainer({
|
|
required BuildContext context,
|
|
required String title,
|
|
required Widget child,
|
|
Color? borderColor,
|
|
Color? backgroundColor,
|
|
Color? titleColor,
|
|
}) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
final scaleConfig = theme.extension<ScaleConfig>()!;
|
|
final textTheme = theme.textTheme;
|
|
|
|
return DecoratedBox(
|
|
decoration: ShapeDecoration(
|
|
color: borderColor ?? scale.primaryScale.border,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius:
|
|
BorderRadius.circular(16 * scaleConfig.borderRadiusScale),
|
|
)),
|
|
child: Column(children: [
|
|
Text(
|
|
title,
|
|
style: textTheme.titleSmall!
|
|
.copyWith(color: titleColor ?? scale.primaryScale.borderText),
|
|
).paddingLTRB(8, 6, 8, 2),
|
|
DecoratedBox(
|
|
decoration: ShapeDecoration(
|
|
color:
|
|
backgroundColor ?? scale.primaryScale.subtleBackground,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(
|
|
16 * scaleConfig.borderRadiusScale),
|
|
)),
|
|
child: child)
|
|
.paddingAll(4)
|
|
.expanded()
|
|
]));
|
|
}
|
|
|
|
Widget styledBottomSheet({
|
|
required BuildContext context,
|
|
required String title,
|
|
required Widget child,
|
|
Color? borderColor,
|
|
Color? backgroundColor,
|
|
Color? titleColor,
|
|
}) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
final scaleConfig = theme.extension<ScaleConfig>()!;
|
|
final textTheme = theme.textTheme;
|
|
|
|
return DecoratedBox(
|
|
decoration: ShapeDecoration(
|
|
color: borderColor ?? scale.primaryScale.dialogBorder,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.only(
|
|
topLeft: Radius.circular(16 * scaleConfig.borderRadiusScale),
|
|
topRight:
|
|
Radius.circular(16 * scaleConfig.borderRadiusScale)))),
|
|
child: Column(mainAxisSize: MainAxisSize.min, children: [
|
|
Text(
|
|
title,
|
|
style: textTheme.titleMedium!
|
|
.copyWith(color: titleColor ?? scale.primaryScale.borderText),
|
|
).paddingLTRB(8, 8, 8, 4),
|
|
DecoratedBox(
|
|
decoration: ShapeDecoration(
|
|
color:
|
|
backgroundColor ?? scale.primaryScale.subtleBackground,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.only(
|
|
topLeft: Radius.circular(
|
|
16 * scaleConfig.borderRadiusScale),
|
|
topRight: Radius.circular(
|
|
16 * scaleConfig.borderRadiusScale)))),
|
|
child: child)
|
|
.paddingLTRB(4, 4, 4, 0)
|
|
]));
|
|
}
|
|
|
|
bool get isPlatformDark =>
|
|
WidgetsBinding.instance.platformDispatcher.platformBrightness ==
|
|
Brightness.dark;
|
|
|
|
const grayColorFilter = ColorFilter.matrix(<double>[
|
|
0.2126,
|
|
0.7152,
|
|
0.0722,
|
|
0,
|
|
0,
|
|
0.2126,
|
|
0.7152,
|
|
0.0722,
|
|
0,
|
|
0,
|
|
0.2126,
|
|
0.7152,
|
|
0.0722,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
1,
|
|
0,
|
|
]);
|
|
|
|
Widget clipBorder({
|
|
required bool clipEnabled,
|
|
required bool borderEnabled,
|
|
required double borderRadius,
|
|
required Color borderColor,
|
|
required Widget child,
|
|
}) =>
|
|
ClipRRect(
|
|
borderRadius: clipEnabled
|
|
? BorderRadius.circular(borderRadius)
|
|
: BorderRadius.zero,
|
|
child: DecoratedBox(
|
|
decoration: BoxDecoration(boxShadow: [
|
|
if (borderEnabled) BoxShadow(color: borderColor, spreadRadius: 2)
|
|
]),
|
|
child: ClipRRect(
|
|
borderRadius: clipEnabled
|
|
? BorderRadius.circular(borderRadius)
|
|
: BorderRadius.zero,
|
|
child: child,
|
|
)).paddingAll(clipEnabled && borderEnabled ? 2 : 0));
|