mirror of
https://gitlab.com/veilid/veilidchat.git
synced 2024-10-01 06:55:46 -04:00
183 lines
7.4 KiB
Dart
183 lines
7.4 KiB
Dart
import 'package:animated_theme_switcher/animated_theme_switcher.dart';
|
|
import 'package:async_tools/async_tools.dart';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:flutter/services.dart';
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
|
import 'package:flutter_translate/flutter_translate.dart';
|
|
import 'package:form_builder_validators/form_builder_validators.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:veilid_support/veilid_support.dart';
|
|
|
|
import 'account_manager/account_manager.dart';
|
|
import 'init.dart';
|
|
import 'layout/splash.dart';
|
|
import 'router/router.dart';
|
|
import 'settings/settings.dart';
|
|
import 'theme/theme.dart';
|
|
import 'tick.dart';
|
|
import 'tools/loggy.dart';
|
|
import 'veilid_processor/veilid_processor.dart';
|
|
|
|
class ReloadThemeIntent extends Intent {
|
|
const ReloadThemeIntent();
|
|
}
|
|
|
|
class AttachDetachThemeIntent extends Intent {
|
|
const AttachDetachThemeIntent();
|
|
}
|
|
|
|
class VeilidChatApp extends StatelessWidget {
|
|
const VeilidChatApp({
|
|
required this.initialThemeData,
|
|
super.key,
|
|
});
|
|
|
|
static const String name = 'VeilidChat';
|
|
|
|
final ThemeData initialThemeData;
|
|
|
|
void _reloadTheme(BuildContext context) {
|
|
log.info('Reloading theme');
|
|
final theme =
|
|
PreferencesRepository.instance.value.themePreferences.themeData();
|
|
ThemeSwitcher.of(context).changeTheme(theme: theme);
|
|
|
|
// Hack to reload translations
|
|
final localizationDelegate = LocalizedApp.of(context).delegate;
|
|
singleFuture(this, () async {
|
|
await LocalizationDelegate.create(
|
|
fallbackLocale: localizationDelegate.fallbackLocale.toString(),
|
|
supportedLocales: localizationDelegate.supportedLocales
|
|
.map((x) => x.toString())
|
|
.toList());
|
|
});
|
|
}
|
|
|
|
void _attachDetachTheme(BuildContext context) {
|
|
singleFuture(this, () async {
|
|
if (ProcessorRepository.instance.processorConnectionState.isAttached) {
|
|
log.info('Detaching');
|
|
await Veilid.instance.detach();
|
|
} else if (ProcessorRepository
|
|
.instance.processorConnectionState.isDetached) {
|
|
log.info('Attaching');
|
|
await Veilid.instance.attach();
|
|
}
|
|
});
|
|
}
|
|
|
|
Widget _buildShortcuts({required Widget Function(BuildContext) builder}) =>
|
|
ThemeSwitcher(
|
|
builder: (context) => Shortcuts(
|
|
shortcuts: <LogicalKeySet, Intent>{
|
|
LogicalKeySet(
|
|
LogicalKeyboardKey.alt, LogicalKeyboardKey.keyR):
|
|
const ReloadThemeIntent(),
|
|
LogicalKeySet(
|
|
LogicalKeyboardKey.alt, LogicalKeyboardKey.keyD):
|
|
const AttachDetachThemeIntent(),
|
|
},
|
|
child: Actions(actions: <Type, Action<Intent>>{
|
|
ReloadThemeIntent: CallbackAction<ReloadThemeIntent>(
|
|
onInvoke: (intent) => _reloadTheme(context)),
|
|
AttachDetachThemeIntent:
|
|
CallbackAction<AttachDetachThemeIntent>(
|
|
onInvoke: (intent) => _attachDetachTheme(context)),
|
|
}, child: Focus(autofocus: true, child: builder(context)))));
|
|
|
|
@override
|
|
Widget build(BuildContext context) => FutureProvider<VeilidChatGlobalInit?>(
|
|
initialData: null,
|
|
create: (context) async => VeilidChatGlobalInit.initialize(),
|
|
builder: (context, __) {
|
|
final globalInit = context.watch<VeilidChatGlobalInit?>();
|
|
if (globalInit == null) {
|
|
// Splash screen until we're done with init
|
|
return const Splash();
|
|
}
|
|
// Once init is done, we proceed with the app
|
|
final localizationDelegate = LocalizedApp.of(context).delegate;
|
|
return ThemeProvider(
|
|
initTheme: initialThemeData,
|
|
builder: (_, theme) => LocalizationProvider(
|
|
state: LocalizationProvider.of(context).state,
|
|
child: MultiBlocProvider(
|
|
providers: [
|
|
BlocProvider<ConnectionStateCubit>(
|
|
create: (context) =>
|
|
ConnectionStateCubit(ProcessorRepository.instance)),
|
|
BlocProvider<RouterCubit>(
|
|
create: (context) =>
|
|
RouterCubit(AccountRepository.instance),
|
|
),
|
|
BlocProvider<LocalAccountsCubit>(
|
|
create: (context) =>
|
|
LocalAccountsCubit(AccountRepository.instance),
|
|
),
|
|
BlocProvider<UserLoginsCubit>(
|
|
create: (context) =>
|
|
UserLoginsCubit(AccountRepository.instance),
|
|
),
|
|
BlocProvider<ActiveLocalAccountCubit>(
|
|
create: (context) =>
|
|
ActiveLocalAccountCubit(AccountRepository.instance),
|
|
),
|
|
BlocProvider<PreferencesCubit>(
|
|
create: (context) =>
|
|
PreferencesCubit(PreferencesRepository.instance),
|
|
),
|
|
BlocProvider<PerAccountCollectionBlocMapCubit>(
|
|
create: (context) => PerAccountCollectionBlocMapCubit(
|
|
accountRepository: AccountRepository.instance,
|
|
locator: context.read)),
|
|
],
|
|
child:
|
|
BackgroundTicker(child: _buildShortcuts(builder: (context) {
|
|
final scale = theme.extension<ScaleScheme>()!;
|
|
final scaleConfig = theme.extension<ScaleConfig>()!;
|
|
|
|
final gradient = LinearGradient(
|
|
begin: Alignment.topLeft,
|
|
end: Alignment.bottomRight,
|
|
colors: scaleConfig.preferBorders &&
|
|
theme.brightness == Brightness.light
|
|
? [
|
|
scale.grayScale.hoverElementBackground,
|
|
scale.grayScale.subtleBackground,
|
|
]
|
|
: [
|
|
scale.primaryScale.hoverElementBackground,
|
|
scale.primaryScale.subtleBackground,
|
|
]);
|
|
|
|
return DecoratedBox(
|
|
decoration: BoxDecoration(gradient: gradient),
|
|
child: MaterialApp.router(
|
|
debugShowCheckedModeBanner: false,
|
|
routerConfig: context.read<RouterCubit>().router(),
|
|
title: translate('app.title'),
|
|
theme: theme,
|
|
localizationsDelegates: [
|
|
GlobalMaterialLocalizations.delegate,
|
|
GlobalWidgetsLocalizations.delegate,
|
|
FormBuilderLocalizations.delegate,
|
|
localizationDelegate
|
|
],
|
|
supportedLocales: localizationDelegate.supportedLocales,
|
|
locale: localizationDelegate.currentLocale,
|
|
));
|
|
})),
|
|
)),
|
|
);
|
|
});
|
|
|
|
@override
|
|
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
|
|
super.debugFillProperties(properties);
|
|
properties
|
|
.add(DiagnosticsProperty<ThemeData>('themeData', initialThemeData));
|
|
}
|
|
}
|