134 lines
5.0 KiB
Dart
134 lines
5.0 KiB
Dart
|
|
import 'dart:async';
|
|
|
|
import 'package:firebase_messaging/firebase_messaging.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:persistent_bottom_nav_bar/persistent_tab_view.dart';
|
|
import 'package:provider/provider.dart';
|
|
import 'package:badges/badges.dart' as badges;
|
|
|
|
import 'api/mhsl/breaker/getBreakers/getBreakersResponse.dart';
|
|
import 'model/breakers/Breaker.dart';
|
|
import 'model/breakers/BreakerProps.dart';
|
|
import 'model/chatList/chatListProps.dart';
|
|
import 'notification/notificationController.dart';
|
|
import 'notification/notifyUpdater.dart';
|
|
import 'storage/base/settingsProvider.dart';
|
|
import 'view/pages/files/files.dart';
|
|
import 'view/pages/more/overhang.dart';
|
|
import 'view/pages/talk/chatList.dart';
|
|
import 'view/pages/timetable/timetable.dart';
|
|
|
|
class App extends StatefulWidget {
|
|
const App({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<App> createState() => _AppState();
|
|
}
|
|
|
|
class _AppState extends State<App> {
|
|
int currentPage = 0;
|
|
late Timer refetchChats;
|
|
late Timer updateTimings;
|
|
|
|
@override
|
|
void initState() {
|
|
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
|
|
Provider.of<BreakerProps>(context, listen: false).run();
|
|
Provider.of<ChatListProps>(context, listen: false).run();
|
|
});
|
|
|
|
updateTimings = Timer.periodic(const Duration(seconds: 30), (Timer t) => setState((){}));
|
|
|
|
refetchChats = Timer.periodic(const Duration(seconds: 60), (timer) {
|
|
WidgetsBinding.instance.addPostFrameCallback((timeStamp) {
|
|
Provider.of<ChatListProps>(context, listen: false).run();
|
|
});
|
|
});
|
|
|
|
if(Provider.of<SettingsProvider>(context, listen: false).val().notificationSettings.enabled) {
|
|
FirebaseMessaging.instance.onTokenRefresh.listen((event) {
|
|
NotifyUpdater.registerToServer();
|
|
});
|
|
}
|
|
|
|
FirebaseMessaging.onMessage.listen((message) => NotificationController.onForegroundMessageHandler(message, context));
|
|
FirebaseMessaging.onMessageOpenedApp.listen((message) => NotificationController.onForegroundMessageHandler(message, context));
|
|
FirebaseMessaging.onBackgroundMessage(NotificationController.onBackgroundMessageHandler);
|
|
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
PersistentTabController tabController = PersistentTabController(initialIndex: 0);
|
|
|
|
return PersistentTabView(
|
|
context,
|
|
controller: tabController,
|
|
navBarStyle: NavBarStyle.style6,
|
|
backgroundColor: Theme.of(context).colorScheme.surface,
|
|
decoration: const NavBarDecoration(
|
|
border: Border(top: BorderSide(width: 1, color: Colors.grey)),
|
|
),
|
|
screenTransitionAnimation: const ScreenTransitionAnimation(animateTabTransition: true, curve: Curves.ease, duration: Duration(milliseconds: 200)),
|
|
screens: const [
|
|
Breaker(breaker: BreakerArea.timetable, child: Timetable()),
|
|
Breaker(breaker: BreakerArea.talk, child: ChatList()),
|
|
Breaker(breaker: BreakerArea.files, child: Files([])),
|
|
Breaker(breaker: BreakerArea.more, child: Overhang()),
|
|
],
|
|
items: [
|
|
PersistentBottomNavBarItem(
|
|
activeColorPrimary: Theme.of(context).primaryColor,
|
|
inactiveColorPrimary: Theme.of(context).colorScheme.secondary,
|
|
icon: const Icon(Icons.calendar_month),
|
|
title: "Vertretung"
|
|
),
|
|
PersistentBottomNavBarItem(
|
|
activeColorPrimary: Theme.of(context).primaryColor,
|
|
inactiveColorPrimary: Theme.of(context).colorScheme.secondary,
|
|
icon: Consumer<ChatListProps>(
|
|
builder: (context, value, child) {
|
|
if(value.primaryLoading()) return const Icon(Icons.chat);
|
|
int messages = value.getRoomsResponse.data.map((e) => e.unreadMessages).reduce((a, b) => a+b);
|
|
return badges.Badge(
|
|
showBadge: messages > 0,
|
|
position: badges.BadgePosition.topEnd(top: -3, end: -3),
|
|
stackFit: StackFit.loose,
|
|
badgeStyle: badges.BadgeStyle(
|
|
padding: const EdgeInsets.all(3),
|
|
badgeColor: Theme.of(context).primaryColor,
|
|
elevation: 1,
|
|
),
|
|
badgeContent: Text("$messages", style: const TextStyle(color: Colors.white, fontSize: 10, fontWeight: FontWeight.bold)),
|
|
child: const Icon(Icons.chat),
|
|
);
|
|
},
|
|
),
|
|
title: "Talk",
|
|
),
|
|
PersistentBottomNavBarItem(
|
|
activeColorPrimary: Theme.of(context).primaryColor,
|
|
inactiveColorPrimary: Theme.of(context).colorScheme.secondary,
|
|
icon: const Icon(Icons.folder),
|
|
title: "Dateien"
|
|
),
|
|
PersistentBottomNavBarItem(
|
|
activeColorPrimary: Theme.of(context).primaryColor,
|
|
inactiveColorPrimary: Theme.of(context).colorScheme.secondary,
|
|
icon: const Icon(Icons.apps),
|
|
title: "Mehr"
|
|
),
|
|
],
|
|
);
|
|
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
refetchChats.cancel();
|
|
updateTimings.cancel();
|
|
super.dispose();
|
|
}
|
|
} |