mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
178 lines
5.9 KiB
Dart
178 lines
5.9 KiB
Dart
import 'package:awesome_extensions/awesome_extensions.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:flutter_translate/flutter_translate.dart';
|
|
import 'package:motion_toast/motion_toast.dart';
|
|
import 'package:quickalert/quickalert.dart';
|
|
import 'package:veilid_support/veilid_support.dart';
|
|
|
|
import '../theme/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(context),
|
|
color: scale.tertiaryScale.appBackground.withAlpha(64),
|
|
child: this);
|
|
}
|
|
}
|
|
|
|
Widget buildProgressIndicator(BuildContext context) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
return SpinKitFoldingCube(
|
|
color: scale.tertiaryScale.background,
|
|
size: 80,
|
|
);
|
|
}
|
|
|
|
Widget waitingPage(BuildContext context) => ColoredBox(
|
|
color: Theme.of(context).scaffoldBackgroundColor,
|
|
child: Center(child: buildProgressIndicator(context)));
|
|
|
|
Widget errorPage(BuildContext context, Object err, StackTrace? st) =>
|
|
ColoredBox(
|
|
color: Theme.of(context).colorScheme.error,
|
|
child: Center(child: Text(err.toString())));
|
|
|
|
Widget asyncValueBuilder<T>(
|
|
AsyncValue<T> av, Widget Function(BuildContext, T) builder) =>
|
|
av.when(
|
|
loading: () => const Builder(builder: waitingPage),
|
|
error: (e, st) =>
|
|
Builder(builder: (context) => errorPage(context, e, st)),
|
|
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);
|
|
}
|
|
|
|
class AsyncBlocBuilder<B extends StateStreamable<AsyncValue<S>>, S>
|
|
extends BlocBuilder<B, AsyncValue<S>> {
|
|
AsyncBlocBuilder({
|
|
required BlocWidgetBuilder<S> builder,
|
|
Widget Function(BuildContext)? loading,
|
|
Widget Function(BuildContext, Object, StackTrace?)? error,
|
|
super.key,
|
|
super.bloc,
|
|
super.buildWhen,
|
|
}) : super(
|
|
builder: (context, state) => state.when(
|
|
loading: () => (loading ?? waitingPage)(context),
|
|
error: (e, st) => (error ?? errorPage)(context, 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) {
|
|
MotionToast.error(
|
|
title: Text(translate('toast.error')),
|
|
description: Text(message),
|
|
).show(context);
|
|
}
|
|
|
|
void showInfoToast(BuildContext context, String message) {
|
|
MotionToast.info(
|
|
title: Text(translate('toast.info')),
|
|
description: Text(message),
|
|
).show(context);
|
|
}
|
|
|
|
Widget styledTitleContainer(
|
|
{required BuildContext context,
|
|
required String title,
|
|
required Widget child}) {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
final textTheme = theme.textTheme;
|
|
|
|
return DecoratedBox(
|
|
decoration: ShapeDecoration(
|
|
color: scale.primaryScale.border,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(16),
|
|
)),
|
|
child: Column(children: [
|
|
Text(
|
|
title,
|
|
style: textTheme.titleMedium!
|
|
.copyWith(color: scale.primaryScale.subtleText),
|
|
).paddingLTRB(8, 8, 8, 8),
|
|
DecoratedBox(
|
|
decoration: ShapeDecoration(
|
|
color: scale.primaryScale.subtleBackground,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(16),
|
|
)),
|
|
child: child)
|
|
.paddingAll(4)
|
|
.expanded()
|
|
]));
|
|
}
|
|
|
|
Future<T?> showStyledDialog<T>(
|
|
{required BuildContext context,
|
|
required String title,
|
|
required Widget child}) async {
|
|
final theme = Theme.of(context);
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
final textTheme = theme.textTheme;
|
|
|
|
return showDialog<T>(
|
|
context: context,
|
|
builder: (context) => AlertDialog(
|
|
elevation: 0,
|
|
shape: const RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.all(Radius.circular(16)),
|
|
),
|
|
contentPadding: const EdgeInsets.all(4),
|
|
backgroundColor: scale.primaryScale.border,
|
|
title: Text(
|
|
title,
|
|
style: textTheme.titleMedium,
|
|
textAlign: TextAlign.center,
|
|
),
|
|
titlePadding: const EdgeInsets.fromLTRB(4, 4, 4, 4),
|
|
content: DecoratedBox(
|
|
decoration: ShapeDecoration(
|
|
color: scale.primaryScale.border,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(16))),
|
|
child: DecoratedBox(
|
|
decoration: ShapeDecoration(
|
|
color: scale.primaryScale.appBackground,
|
|
shape: RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(12))),
|
|
child: child.paddingAll(0)))));
|
|
}
|
|
|
|
bool get isPlatformDark =>
|
|
WidgetsBinding.instance.platformDispatcher.platformBrightness ==
|
|
Brightness.dark;
|