2022-04-04 20:22:30 +02:00
|
|
|
import 'package:canteenlib/canteenlib.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2022-04-19 16:06:03 +02:00
|
|
|
import 'package:flutter_secure_storage/flutter_secure_storage.dart';
|
2022-04-04 20:22:30 +02:00
|
|
|
import 'package:opencanteen/util.dart';
|
2022-04-19 16:06:03 +02:00
|
|
|
import 'package:url_launcher/url_launcher.dart';
|
2022-04-04 20:22:30 +02:00
|
|
|
|
|
|
|
import '../main.dart';
|
2022-04-19 16:06:03 +02:00
|
|
|
import 'about.dart';
|
2022-04-04 20:22:30 +02:00
|
|
|
|
|
|
|
class JidelnicekPage extends StatefulWidget {
|
|
|
|
const JidelnicekPage({Key? key, required this.canteen, required this.user})
|
|
|
|
: super(key: key);
|
|
|
|
final Canteen canteen;
|
|
|
|
final String user;
|
|
|
|
@override
|
|
|
|
State<JidelnicekPage> createState() => _JidelnicekPageState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _JidelnicekPageState extends State<JidelnicekPage> {
|
2022-04-05 19:48:14 +02:00
|
|
|
List<Widget> obsah = [const Text("Načítám...")];
|
2022-04-04 20:22:30 +02:00
|
|
|
DateTime den = DateTime.now();
|
|
|
|
String denTydne = "";
|
|
|
|
double kredit = 0.0;
|
|
|
|
Future<void> nactiJidlo() async {
|
2022-04-05 19:48:14 +02:00
|
|
|
obsah = [const CircularProgressIndicator()];
|
2022-04-04 20:22:30 +02:00
|
|
|
switch (den.weekday) {
|
|
|
|
case 2:
|
|
|
|
denTydne = "Úterý";
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
denTydne = "Středa";
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
denTydne = "Čtvrtek";
|
|
|
|
break;
|
|
|
|
case 5:
|
|
|
|
denTydne = "Pátek";
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
denTydne = "Sobota";
|
|
|
|
break;
|
|
|
|
case 7:
|
|
|
|
denTydne = "Neděle";
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
denTydne = "Pondělí";
|
|
|
|
}
|
2022-04-05 19:48:14 +02:00
|
|
|
widget.canteen.ziskejUzivatele().then((kr) {
|
|
|
|
kredit = kr.kredit;
|
|
|
|
widget.canteen.jidelnicekDen(den: den).then((jd) {
|
|
|
|
setState(() {
|
|
|
|
obsah = [];
|
|
|
|
if (jd.jidla.isEmpty) {
|
|
|
|
obsah.add(const Text(
|
|
|
|
"Žádné jídlo pro tento den",
|
|
|
|
style: TextStyle(fontSize: 15),
|
|
|
|
));
|
|
|
|
} else {
|
|
|
|
for (var j in jd.jidla) {
|
|
|
|
obsah.add(
|
|
|
|
Padding(
|
|
|
|
padding: const EdgeInsets.only(top: 15),
|
|
|
|
child: InkWell(
|
|
|
|
child: Row(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
children: [
|
|
|
|
Text(j.varianta),
|
|
|
|
const SizedBox(width: 10),
|
|
|
|
Flexible(
|
|
|
|
child: Text(
|
|
|
|
j.nazev,
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Text((j.naBurze) ? "V BURZE" : "${j.cena} Kč"),
|
|
|
|
Checkbox(
|
|
|
|
value: j.objednano,
|
|
|
|
fillColor: (j.lzeObjednat)
|
|
|
|
? MaterialStateProperty.all(Colors.blue)
|
|
|
|
: MaterialStateProperty.all(Colors.grey),
|
|
|
|
onChanged: (v) async {
|
|
|
|
return;
|
|
|
|
})
|
|
|
|
],
|
|
|
|
),
|
|
|
|
onTap: () async {
|
|
|
|
if (!j.lzeObjednat) return;
|
|
|
|
|
|
|
|
widget.canteen
|
|
|
|
.objednat(j)
|
|
|
|
.then((value) => nactiJidlo())
|
|
|
|
.catchError((o) {
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (bc) => AlertDialog(
|
|
|
|
title: const Text(
|
|
|
|
"Nepodařilo se vložit jídlo na burzu"),
|
|
|
|
content: Text(o.toString()),
|
|
|
|
actions: [
|
|
|
|
TextButton(
|
|
|
|
child: const Text("Zavřít"),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(bc);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
));
|
|
|
|
});
|
|
|
|
},
|
|
|
|
onLongPress: () async {
|
|
|
|
if (!j.objednano) return;
|
|
|
|
if (!j.naBurze) {
|
|
|
|
// pokud není na burze, radši se zeptáme
|
|
|
|
var d = await showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (bc) => SimpleDialog(
|
|
|
|
title: const Text(
|
|
|
|
"Opravdu chcete vložit jídlo na burzu?"),
|
|
|
|
children: [
|
|
|
|
SimpleDialogOption(
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(bc, true);
|
|
|
|
},
|
|
|
|
child: const Text("Ano"),
|
|
|
|
),
|
|
|
|
SimpleDialogOption(
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(bc, false);
|
|
|
|
},
|
|
|
|
child: const Text("Ne"),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
));
|
|
|
|
if (d) {
|
|
|
|
widget.canteen
|
|
|
|
.doBurzy(j)
|
|
|
|
.then((_) => nactiJidlo())
|
|
|
|
.catchError((o) {
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (bc) => AlertDialog(
|
|
|
|
title: const Text(
|
|
|
|
"Nepodařilo se vložit jídlo na burzu"),
|
|
|
|
content: Text(o.toString()),
|
|
|
|
actions: [
|
|
|
|
TextButton(
|
|
|
|
child: const Text("Zavřít"),
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.pop(bc);
|
|
|
|
},
|
|
|
|
)
|
|
|
|
],
|
|
|
|
));
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
// jinak ne
|
|
|
|
widget.canteen.doBurzy(j).then((_) => nactiJidlo());
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).catchError((o) {
|
|
|
|
if (!widget.canteen.prihlasen) {
|
|
|
|
Navigator.pushReplacement(
|
|
|
|
context, MaterialPageRoute(builder: (c) => const LoginPage()));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-19 16:06:03 +02:00
|
|
|
void kliknuti(String value) {
|
|
|
|
switch (value) {
|
|
|
|
case 'Odhlásit se':
|
|
|
|
const storage = FlutterSecureStorage();
|
|
|
|
storage.deleteAll();
|
|
|
|
Navigator.pushReplacement(
|
|
|
|
context, MaterialPageRoute(builder: (c) => const LoginPage()));
|
|
|
|
break;
|
|
|
|
case 'Nahlásit chybu':
|
|
|
|
launch("https://github.com/hernikplays/opencanteen/issues/new/choose");
|
|
|
|
break;
|
|
|
|
case 'O Aplikaci':
|
|
|
|
Navigator.push(
|
|
|
|
context, MaterialPageRoute(builder: (c) => const AboutPage()));
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-04-05 19:48:14 +02:00
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
2022-04-04 20:22:30 +02:00
|
|
|
nactiJidlo();
|
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
2022-04-19 15:35:40 +02:00
|
|
|
drawer: drawerGenerator(context, widget.canteen, widget.user, 1),
|
2022-04-04 20:22:30 +02:00
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text('Jídelníček'),
|
2022-04-19 16:06:03 +02:00
|
|
|
actions: [
|
|
|
|
PopupMenuButton(
|
|
|
|
onSelected: kliknuti,
|
|
|
|
itemBuilder: (BuildContext context) {
|
|
|
|
return {'Nahlásit chybu', 'O Aplikaci', 'Odhlásit se'}
|
|
|
|
.map((String choice) {
|
|
|
|
return PopupMenuItem<String>(
|
|
|
|
value: choice,
|
|
|
|
child: Text(choice),
|
|
|
|
);
|
|
|
|
}).toList();
|
|
|
|
},
|
|
|
|
),
|
|
|
|
],
|
2022-04-04 20:22:30 +02:00
|
|
|
),
|
2022-04-09 17:54:08 +02:00
|
|
|
body: RefreshIndicator(
|
|
|
|
child: Center(
|
|
|
|
child: SizedBox(
|
|
|
|
child: Column(
|
|
|
|
children: [
|
|
|
|
const SizedBox(height: 10),
|
|
|
|
Text("Kredit: $kredit Kč"),
|
|
|
|
Row(mainAxisAlignment: MainAxisAlignment.center, children: [
|
|
|
|
IconButton(
|
|
|
|
onPressed: () {
|
|
|
|
setState(() {
|
|
|
|
den = den.subtract(const Duration(days: 1));
|
|
|
|
nactiJidlo();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
icon: const Icon(Icons.arrow_left)),
|
|
|
|
TextButton(
|
|
|
|
onPressed: () async {
|
|
|
|
var datePicked = await showDatePicker(
|
|
|
|
context: context,
|
|
|
|
initialDate: den,
|
|
|
|
currentDate: den,
|
|
|
|
firstDate: DateTime(2019, 1, 1),
|
|
|
|
lastDate: DateTime(den.year + 1, 12, 31),
|
|
|
|
locale: const Locale("cs"));
|
|
|
|
if (datePicked == null) return;
|
|
|
|
setState(() {
|
|
|
|
den = datePicked;
|
|
|
|
nactiJidlo();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
child: Text(
|
|
|
|
"${den.day}. ${den.month}. ${den.year} - $denTydne")),
|
|
|
|
IconButton(
|
|
|
|
onPressed: () {
|
|
|
|
setState(() {
|
|
|
|
den = den.add(const Duration(days: 1));
|
|
|
|
nactiJidlo();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
icon: const Icon(Icons.arrow_right)),
|
|
|
|
]),
|
|
|
|
SingleChildScrollView(
|
|
|
|
physics: const AlwaysScrollableScrollPhysics(),
|
|
|
|
child: GestureDetector(
|
2022-04-19 15:35:40 +02:00
|
|
|
child: Container(
|
|
|
|
color: Theme.of(context)
|
|
|
|
.colorScheme
|
|
|
|
.onPrimary
|
|
|
|
.withOpacity(0),
|
|
|
|
child: Column(children: obsah),
|
|
|
|
height: MediaQuery.of(context).size.height - 160,
|
|
|
|
),
|
2022-04-09 17:54:08 +02:00
|
|
|
onHorizontalDragEnd: (details) {
|
|
|
|
if (details.primaryVelocity?.compareTo(0) == -1) {
|
|
|
|
setState(() {
|
2022-04-19 15:35:40 +02:00
|
|
|
den = den.add(const Duration(days: 1));
|
2022-04-09 17:54:08 +02:00
|
|
|
nactiJidlo();
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
setState(() {
|
2022-04-19 15:35:40 +02:00
|
|
|
den = den.subtract(const Duration(days: 1));
|
2022-04-09 17:54:08 +02:00
|
|
|
nactiJidlo();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
),
|
|
|
|
)
|
|
|
|
],
|
|
|
|
),
|
|
|
|
width: MediaQuery.of(context).size.width - 50,
|
|
|
|
),
|
2022-04-04 20:22:30 +02:00
|
|
|
),
|
2022-04-09 17:54:08 +02:00
|
|
|
onRefresh: nactiJidlo,
|
2022-04-04 20:22:30 +02:00
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|