2023-02-27 20:02:15 +01:00
|
|
|
import 'package:awesome_dialog/awesome_dialog.dart';
|
2023-02-14 14:02:26 +01:00
|
|
|
import 'package:flutter/material.dart';
|
2023-02-27 02:27:42 +01:00
|
|
|
import 'package:provider/provider.dart';
|
2023-03-03 12:48:19 +01:00
|
|
|
import 'package:smoke_cess_app/providers/page_provider.dart';
|
2023-03-02 19:31:47 +01:00
|
|
|
import 'package:smoke_cess_app/providers/tasks_provider.dart';
|
2023-02-27 17:27:01 +01:00
|
|
|
import 'package:smoke_cess_app/services/pages_service.dart';
|
2023-02-27 02:27:42 +01:00
|
|
|
import 'package:smoke_cess_app/providers/settings_provider.dart';
|
2023-02-14 14:02:26 +01:00
|
|
|
|
2023-03-02 20:20:17 +01:00
|
|
|
import '../widgets/todo_icon.dart';
|
|
|
|
|
2023-02-14 14:02:26 +01:00
|
|
|
class MyHomePage extends StatefulWidget {
|
|
|
|
const MyHomePage({super.key});
|
|
|
|
|
|
|
|
@override
|
2023-02-14 14:13:32 +01:00
|
|
|
MyHomePageState createState() => MyHomePageState();
|
2023-02-14 14:02:26 +01:00
|
|
|
}
|
|
|
|
|
2023-02-14 14:13:32 +01:00
|
|
|
class MyHomePageState extends State<MyHomePage> {
|
2023-02-26 17:07:38 +01:00
|
|
|
int _selectedIndex = 4;
|
2023-02-27 11:57:55 +01:00
|
|
|
bool _isConfigured = false;
|
2023-02-17 13:47:52 +01:00
|
|
|
|
2023-02-27 11:57:55 +01:00
|
|
|
void _onItemTapped(int index) {
|
2023-03-03 13:44:17 +01:00
|
|
|
PageProvider pageProvider = context.read<PageProvider>();
|
2023-02-19 14:24:39 +01:00
|
|
|
setState(() {
|
2023-03-03 13:13:33 +01:00
|
|
|
if (_isConfigured) {
|
|
|
|
pageProvider.showForm = false;
|
|
|
|
_selectedIndex = index;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
AwesomeDialog(
|
|
|
|
context: context,
|
|
|
|
dialogType: DialogType.info,
|
|
|
|
title: 'Fehlende Konfiguration',
|
|
|
|
desc: 'Bitte QR Code Scannen!',
|
|
|
|
).show();
|
2023-02-17 13:47:52 +01:00
|
|
|
});
|
2023-02-14 14:02:26 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2023-03-04 17:58:04 +01:00
|
|
|
var settingsProvider = context.watch<SettingsProvider>();
|
|
|
|
var tasksProvider = context.watch<TasksProvider>();
|
|
|
|
PageProvider pageProvider = context.watch<PageProvider>();
|
|
|
|
|
|
|
|
_isConfigured = settingsProvider.initialized;
|
2023-02-14 14:02:26 +01:00
|
|
|
return Scaffold(
|
2023-02-20 19:50:09 +01:00
|
|
|
appBar: AppBar(
|
2023-03-04 17:58:04 +01:00
|
|
|
title: Row(
|
|
|
|
children: [
|
|
|
|
Stack(
|
|
|
|
children: [
|
|
|
|
const SizedBox(
|
|
|
|
width: 70,
|
|
|
|
),
|
|
|
|
if (pageProvider.showForm)
|
|
|
|
IconButton(
|
|
|
|
icon: const Icon(Icons.arrow_back, color: Colors.white),
|
|
|
|
onPressed: pageProvider.swap),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
Text(
|
|
|
|
'${pages.values.elementAt(_selectedIndex)['title']} ${_isConfigured ? "Gruppe ${settingsProvider.settings?.group}" : ""}')
|
|
|
|
],
|
|
|
|
)),
|
|
|
|
body: pages.values.elementAt(_selectedIndex)['page'],
|
2023-02-14 14:02:26 +01:00
|
|
|
bottomNavigationBar: NavigationBar(
|
2023-02-27 14:57:56 +01:00
|
|
|
onDestinationSelected: _onItemTapped,
|
|
|
|
selectedIndex: _selectedIndex,
|
|
|
|
destinations: pages.keys.map((key) {
|
|
|
|
return NavigationDestination(
|
2023-03-04 17:58:04 +01:00
|
|
|
icon: tasksProvider.tasks[key] ?? false
|
2023-03-02 19:31:47 +01:00
|
|
|
? MyToDoIcon(pages[key]?['icon'])
|
|
|
|
: pages[key]!['icon'],
|
2023-03-02 18:35:03 +01:00
|
|
|
label: pages[key]?['title']);
|
2023-02-27 14:57:56 +01:00
|
|
|
}).toList()),
|
2023-02-14 14:02:26 +01:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|