mirror of
https://github.com/inventree/inventree-app.git
synced 2025-04-28 13:36:50 +00:00
* Add function to set app locale * Setting for selecting app language - Adds requirement for "flutter_localized_locales" - Change main app to stateless * Reload entire app tree when language is changed * Update release notes * linting * Show the release notes after updating to a new app version
147 lines
4.1 KiB
Dart
147 lines
4.1 KiB
Dart
import "dart:async";
|
|
|
|
import "package:flutter/material.dart";
|
|
import "package:flutter/services.dart";
|
|
|
|
import "package:flutter_gen/gen_l10n/app_localizations.dart";
|
|
import "package:flutter_localizations/flutter_localizations.dart";
|
|
import "package:flutter_localized_locales/flutter_localized_locales.dart";
|
|
import "package:one_context/one_context.dart";
|
|
import "package:package_info_plus/package_info_plus.dart";
|
|
import "package:sentry_flutter/sentry_flutter.dart";
|
|
|
|
import "package:inventree/dsn.dart";
|
|
import "package:inventree/preferences.dart";
|
|
import "package:inventree/inventree/sentry.dart";
|
|
import "package:inventree/l10n/supported_locales.dart";
|
|
import "package:inventree/settings/release.dart";
|
|
import "package:inventree/widget/home.dart";
|
|
|
|
|
|
Future<void> main() async {
|
|
|
|
WidgetsFlutterBinding.ensureInitialized();
|
|
|
|
await runZonedGuarded<Future<void>>(() async {
|
|
|
|
PackageInfo info = await PackageInfo.fromPlatform();
|
|
String pkg = info.packageName;
|
|
String version = info.version;
|
|
String build = info.buildNumber;
|
|
|
|
String release = "${pkg}@${version}:${build}";
|
|
|
|
await Sentry.init((options) {
|
|
options.dsn = SENTRY_DSN_KEY;
|
|
options.release = release;
|
|
options.environment = isInDebugMode() ? "debug" : "release";
|
|
});
|
|
|
|
// Pass any flutter errors off to the Sentry reporting context!
|
|
FlutterError.onError = (FlutterErrorDetails details) async {
|
|
|
|
// Ensure that the error gets reported to sentry!
|
|
await sentryReportError(
|
|
"FlutterError.onError",
|
|
details.exception, details.stack,
|
|
context: {
|
|
"context": details.context.toString(),
|
|
"summary": details.summary.toString(),
|
|
"library": details.library ?? "null",
|
|
}
|
|
);
|
|
};
|
|
|
|
runApp(
|
|
InvenTreeApp()
|
|
);
|
|
|
|
}, (Object error, StackTrace stackTrace) async {
|
|
sentryReportError("main.runZonedGuarded", error, stackTrace);
|
|
});
|
|
|
|
}
|
|
|
|
class InvenTreeApp extends StatefulWidget {
|
|
// This widget is the root of your application.
|
|
|
|
@override
|
|
InvenTreeAppState createState() => InvenTreeAppState();
|
|
|
|
static InvenTreeAppState? of(BuildContext context) => context.findAncestorStateOfType<InvenTreeAppState>();
|
|
|
|
}
|
|
|
|
|
|
class InvenTreeAppState extends State<StatefulWidget> {
|
|
|
|
// Custom _locale (default = null; use system default)
|
|
Locale? _locale;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
|
|
// Run some async init tasks
|
|
runInitTasks();
|
|
}
|
|
|
|
// Run app init routines in the background
|
|
Future<void> runInitTasks() async {
|
|
|
|
// Set the app locale (language)
|
|
Locale? locale = await InvenTreeSettingsManager().getSelectedLocale();
|
|
setLocale(locale);
|
|
|
|
// Display release notes if this is a new version
|
|
final String version = await InvenTreeSettingsManager().getValue("recentVersion", "") as String;
|
|
|
|
final PackageInfo info = await PackageInfo.fromPlatform();
|
|
|
|
if (version != info.version) {
|
|
// Save latest version to the settings database
|
|
await InvenTreeSettingsManager().setValue("recentVersion", info.version);
|
|
|
|
// Load release notes from external file
|
|
String notes = await rootBundle.loadString("assets/release_notes.md");
|
|
|
|
// Show the release notes
|
|
OneContext().push(
|
|
MaterialPageRoute(builder: (context) => ReleaseNotesWidget(notes))
|
|
);
|
|
}
|
|
}
|
|
|
|
// Update the app locale
|
|
void setLocale(Locale? locale) {
|
|
setState(() {
|
|
_locale = locale;
|
|
});
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
|
debugShowCheckedModeBanner: false,
|
|
builder: OneContext().builder,
|
|
navigatorKey: OneContext().key,
|
|
onGenerateTitle: (BuildContext context) => "InvenTree",
|
|
theme: ThemeData(
|
|
primarySwatch: Colors.lightBlue,
|
|
secondaryHeaderColor: Colors.blueGrey,
|
|
),
|
|
home: InvenTreeHomePage(),
|
|
localizationsDelegates: [
|
|
I18N.delegate,
|
|
LocaleNamesLocalizationsDelegate(),
|
|
GlobalMaterialLocalizations.delegate,
|
|
GlobalCupertinoLocalizations.delegate,
|
|
GlobalWidgetsLocalizations.delegate,
|
|
],
|
|
supportedLocales: supported_locales,
|
|
locale: _locale,
|
|
);
|
|
}
|
|
}
|