fluffychat/lib/main.dart

123 lines
4.2 KiB
Dart
Raw Normal View History

2020-12-19 12:06:31 +00:00
// @dart=2.9
2020-09-08 08:55:32 +00:00
import 'dart:async';
2020-02-23 07:49:58 +00:00
2021-01-15 18:41:55 +00:00
import 'package:adaptive_theme/adaptive_theme.dart';
2021-01-17 14:33:31 +00:00
import 'package:famedlysdk/famedlysdk.dart';
2021-01-16 11:46:38 +00:00
import 'package:fluffychat/config/routes.dart';
2021-01-18 07:38:19 +00:00
import 'package:fluffychat/utils/platform_infos.dart';
2020-10-28 09:56:24 +00:00
import 'package:fluffychat/utils/sentry_controller.dart';
2021-01-16 11:46:38 +00:00
import 'package:flutter/cupertino.dart';
2020-02-24 09:24:58 +00:00
import 'package:flutter/foundation.dart';
2020-01-01 18:10:13 +00:00
import 'package:flutter/material.dart';
2021-05-23 11:11:55 +00:00
import 'utils/localized_exception_extension.dart';
2021-01-18 07:38:19 +00:00
import 'package:flutter_app_lock/flutter_app_lock.dart';
import 'package:flutter_gen/gen_l10n/l10n.dart';
2021-05-23 11:11:55 +00:00
import 'package:future_loading_dialog/future_loading_dialog.dart';
2021-04-21 12:19:54 +00:00
import 'package:universal_html/html.dart' as html;
2021-05-23 11:11:55 +00:00
import 'package:vrouter/vrouter.dart';
2020-01-01 18:10:13 +00:00
2021-05-22 06:53:52 +00:00
import 'widgets/lock_screen.dart';
import 'widgets/matrix.dart';
2021-01-15 18:41:55 +00:00
import 'config/themes.dart';
2021-04-09 14:29:48 +00:00
import 'config/app_config.dart';
import 'utils/matrix_sdk_extensions.dart/fluffy_client.dart';
2021-02-07 16:18:38 +00:00
import 'utils/platform_infos.dart';
import 'utils/background_push.dart';
2020-09-08 08:55:32 +00:00
2020-12-11 13:14:33 +00:00
void main() async {
2021-02-07 16:18:38 +00:00
// Our background push shared isolate accesses flutter-internal things very early in the startup proccess
// To make sure that the parts of flutter needed are started up already, we need to ensure that the
// widget bindings are initialized already.
WidgetsFlutterBinding.ensureInitialized();
2020-10-28 17:13:04 +00:00
FlutterError.onError = (FlutterErrorDetails details) =>
Zone.current.handleUncaughtError(details.exception, details.stack);
2021-02-07 16:18:38 +00:00
if (PlatformInfos.isMobile) {
BackgroundPush.clientOnly(FluffyClient());
}
2020-09-08 08:55:32 +00:00
runZonedGuarded(
2021-01-18 07:38:19 +00:00
() => runApp(PlatformInfos.isMobile
? AppLock(
2021-04-10 15:30:15 +00:00
builder: (args) => FluffyChatApp(),
2021-01-18 07:38:19 +00:00
lockScreen: LockScreen(),
2021-01-18 16:31:27 +00:00
enabled: false,
2021-01-18 07:38:19 +00:00
)
2021-04-10 15:30:15 +00:00
: FluffyChatApp()),
2020-10-28 09:56:24 +00:00
SentryController.captureException,
2020-09-08 08:55:32 +00:00
);
2020-01-02 21:31:39 +00:00
}
2020-01-01 18:10:13 +00:00
2021-05-23 11:11:55 +00:00
class FluffyChatApp extends StatefulWidget {
2021-04-12 15:31:53 +00:00
final Widget testWidget;
final Client testClient;
2021-04-10 15:30:15 +00:00
2021-04-12 15:31:53 +00:00
const FluffyChatApp({Key key, this.testWidget, this.testClient})
: super(key: key);
2021-05-16 14:38:52 +00:00
/// getInitialLink may rereturn the value multiple times if this view is
/// opened multiple times for example if the user logs out after they logged
/// in with qr code or magic link.
static bool gotInitialLink = false;
2021-05-23 11:11:55 +00:00
@override
_FluffyChatAppState createState() => _FluffyChatAppState();
}
class _FluffyChatAppState extends State<FluffyChatApp> {
GlobalKey<VRouterState> _router;
int columns;
String _initialUrl = '/';
2020-01-01 18:10:13 +00:00
@override
Widget build(BuildContext context) {
2021-01-16 11:46:38 +00:00
return AdaptiveTheme(
light: FluffyThemes.light,
dark: FluffyThemes.dark,
initial: AdaptiveThemeMode.system,
2021-05-23 11:11:55 +00:00
builder: (theme, darkTheme) => Matrix(
context: context,
router: _router,
testClient: widget.testClient,
child: LayoutBuilder(
builder: (context, constraints) {
var newColumns =
(constraints.maxWidth / AppConfig.columnWidth).floor();
if (newColumns > 3) newColumns = 3;
columns ??= newColumns;
_router ??= GlobalKey<VRouterState>();
if (columns != newColumns) {
WidgetsBinding.instance.addPostFrameCallback((_) {
setState(() {
_initialUrl = _router.currentState.url;
columns = newColumns;
_router = GlobalKey<VRouterState>();
});
});
}
return VRouter(
key: _router,
title: '${AppConfig.applicationName}',
theme: theme,
darkTheme: darkTheme,
localizationsDelegates: L10n.localizationsDelegates,
supportedLocales: L10n.supportedLocales,
initialUrl: _initialUrl,
locale: kIsWeb
? Locale(html.window.navigator.language.split('-').first)
: null,
routes: AppRoutes(columns).routes,
builder: (context, child) {
LoadingDialog.defaultTitle = L10n.of(context).loadingPleaseWait;
LoadingDialog.defaultBackLabel = L10n.of(context).close;
LoadingDialog.defaultOnError =
(Object e) => e.toLocalizedString(context);
return child;
},
2021-05-16 16:13:35 +00:00
);
},
2020-01-01 18:10:13 +00:00
),
),
);
}
}