2023-07-26 14:20:29 -04:00
|
|
|
import 'package:animated_theme_switcher/animated_theme_switcher.dart';
|
2023-07-26 15:58:38 -04:00
|
|
|
import 'package:flutter/foundation.dart';
|
2023-01-08 22:27:33 -05:00
|
|
|
import 'package:flutter/material.dart';
|
2024-04-10 16:13:08 -04:00
|
|
|
import 'package:flutter/services.dart';
|
2023-12-26 20:26:54 -05:00
|
|
|
import 'package:flutter_bloc/flutter_bloc.dart';
|
2023-07-07 19:33:28 -04:00
|
|
|
import 'package:flutter_localizations/flutter_localizations.dart';
|
2023-07-26 14:20:29 -04:00
|
|
|
import 'package:flutter_translate/flutter_translate.dart';
|
2023-07-24 09:31:51 -04:00
|
|
|
import 'package:form_builder_validators/form_builder_validators.dart';
|
2024-04-03 21:55:49 -04:00
|
|
|
import 'package:provider/provider.dart';
|
2023-07-26 14:20:29 -04:00
|
|
|
|
2023-12-27 22:56:24 -05:00
|
|
|
import 'account_manager/account_manager.dart';
|
2024-04-03 21:55:49 -04:00
|
|
|
import 'init.dart';
|
|
|
|
import 'layout/splash.dart';
|
2023-01-09 22:50:34 -05:00
|
|
|
import 'router/router.dart';
|
2024-01-08 21:37:08 -05:00
|
|
|
import 'settings/settings.dart';
|
2024-04-10 16:13:08 -04:00
|
|
|
import 'theme/models/theme_preference.dart';
|
2023-08-08 02:03:26 -04:00
|
|
|
import 'tick.dart';
|
2024-04-10 16:13:08 -04:00
|
|
|
import 'tools/loggy.dart';
|
2024-02-12 10:35:41 -05:00
|
|
|
import 'veilid_processor/veilid_processor.dart';
|
2023-01-08 22:27:33 -05:00
|
|
|
|
2024-04-10 16:13:08 -04:00
|
|
|
class ReloadThemeIntent extends Intent {
|
|
|
|
const ReloadThemeIntent();
|
|
|
|
}
|
|
|
|
|
2023-12-26 20:26:54 -05:00
|
|
|
class VeilidChatApp extends StatelessWidget {
|
2023-01-08 22:27:33 -05:00
|
|
|
const VeilidChatApp({
|
2024-01-08 21:37:08 -05:00
|
|
|
required this.initialThemeData,
|
2023-07-26 15:58:38 -04:00
|
|
|
super.key,
|
2023-07-26 14:20:29 -04:00
|
|
|
});
|
2023-01-08 22:27:33 -05:00
|
|
|
|
2023-12-27 22:56:24 -05:00
|
|
|
static const String name = 'VeilidChat';
|
|
|
|
|
2024-01-08 21:37:08 -05:00
|
|
|
final ThemeData initialThemeData;
|
2023-01-08 22:27:33 -05:00
|
|
|
|
2024-04-10 16:13:08 -04:00
|
|
|
void _reloadTheme(BuildContext context) {
|
|
|
|
log.info('Reloading theme');
|
|
|
|
final theme =
|
|
|
|
PreferencesRepository.instance.value.themePreferences.themeData();
|
|
|
|
ThemeSwitcher.of(context).changeTheme(theme: theme);
|
|
|
|
}
|
|
|
|
|
|
|
|
Widget _buildShortcuts(
|
|
|
|
{required BuildContext context,
|
|
|
|
required Widget Function(BuildContext) builder}) =>
|
|
|
|
ThemeSwitcher(
|
|
|
|
builder: (context) => Shortcuts(
|
|
|
|
shortcuts: <LogicalKeySet, Intent>{
|
|
|
|
LogicalKeySet(
|
|
|
|
LogicalKeyboardKey.alt, LogicalKeyboardKey.keyR):
|
|
|
|
const ReloadThemeIntent(),
|
|
|
|
},
|
|
|
|
child: Actions(actions: <Type, Action<Intent>>{
|
|
|
|
ReloadThemeIntent: CallbackAction<ReloadThemeIntent>(
|
|
|
|
onInvoke: (intent) => _reloadTheme(context)),
|
|
|
|
}, child: Focus(autofocus: true, child: builder(context)))));
|
|
|
|
|
2023-01-08 22:27:33 -05:00
|
|
|
@override
|
2024-04-03 21:55:49 -04:00
|
|
|
Widget build(BuildContext context) => FutureProvider<VeilidChatGlobalInit?>(
|
|
|
|
initialData: null,
|
|
|
|
create: (context) async => VeilidChatGlobalInit.initialize(),
|
|
|
|
builder: (context, child) {
|
|
|
|
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(
|
2024-04-05 22:03:04 -04:00
|
|
|
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),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
child: BackgroundTicker(
|
2024-04-10 16:13:08 -04:00
|
|
|
child: _buildShortcuts(
|
|
|
|
context: context,
|
|
|
|
builder: (context) => MaterialApp.router(
|
|
|
|
debugShowCheckedModeBanner: false,
|
|
|
|
routerConfig:
|
|
|
|
context.watch<RouterCubit>().router(),
|
|
|
|
title: translate('app.title'),
|
|
|
|
theme: theme,
|
|
|
|
localizationsDelegates: [
|
|
|
|
GlobalMaterialLocalizations.delegate,
|
|
|
|
GlobalWidgetsLocalizations.delegate,
|
|
|
|
FormBuilderLocalizations.delegate,
|
|
|
|
localizationDelegate
|
|
|
|
],
|
|
|
|
supportedLocales:
|
|
|
|
localizationDelegate.supportedLocales,
|
|
|
|
locale: localizationDelegate.currentLocale,
|
|
|
|
))),
|
2024-04-05 22:03:04 -04:00
|
|
|
)),
|
|
|
|
);
|
2024-04-03 21:55:49 -04:00
|
|
|
});
|
2023-07-26 15:58:38 -04:00
|
|
|
|
2023-07-26 14:20:29 -04:00
|
|
|
@override
|
|
|
|
void debugFillProperties(DiagnosticPropertiesBuilder properties) {
|
|
|
|
super.debugFillProperties(properties);
|
2024-01-08 21:37:08 -05:00
|
|
|
properties
|
|
|
|
.add(DiagnosticsProperty<ThemeData>('themeData', initialThemeData));
|
2023-07-26 14:20:29 -04:00
|
|
|
}
|
2023-01-08 22:27:33 -05:00
|
|
|
}
|