opencanteen/lib/okna/jidelnicek.dart

352 lines
13 KiB
Dart
Raw Normal View History

2022-04-26 18:20:42 +02:00
import 'dart:convert';
import 'dart:io';
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-26 18:20:42 +02:00
import 'package:path_provider/path_provider.dart';
2022-05-02 12:07:47 +02:00
import 'package:shared_preferences/shared_preferences.dart';
2022-04-19 16:06:03 +02:00
import 'package:url_launcher/url_launcher.dart';
2022-04-04 20:22:30 +02:00
2022-05-15 16:59:55 +02:00
import '../lang/lang.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-05-15 16:59:55 +02:00
List<Widget> obsah = [const CircularProgressIndicator()];
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:
2022-05-15 16:59:55 +02:00
denTydne = Languages.of(context)!.tuesday;
2022-04-04 20:22:30 +02:00
break;
case 3:
2022-05-15 16:59:55 +02:00
denTydne = Languages.of(context)!.wednesday;
2022-04-04 20:22:30 +02:00
break;
case 4:
2022-05-15 16:59:55 +02:00
denTydne = Languages.of(context)!.thursday;
2022-04-04 20:22:30 +02:00
break;
case 5:
2022-05-15 16:59:55 +02:00
denTydne = Languages.of(context)!.friday;
2022-04-04 20:22:30 +02:00
break;
case 6:
2022-05-15 16:59:55 +02:00
denTydne = Languages.of(context)!.saturday;
2022-04-04 20:22:30 +02:00
break;
case 7:
2022-05-15 16:59:55 +02:00
denTydne = Languages.of(context)!.sunday;
2022-04-04 20:22:30 +02:00
break;
default:
2022-05-15 16:59:55 +02:00
denTydne = Languages.of(context)!.monday;
2022-04-04 20:22:30 +02:00
}
2022-04-05 19:48:14 +02:00
widget.canteen.ziskejUzivatele().then((kr) {
kredit = kr.kredit;
2022-04-26 18:20:42 +02:00
widget.canteen.jidelnicekDen(den: den).then((jd) async {
2022-04-05 19:48:14 +02:00
setState(() {
obsah = [];
if (jd.jidla.isEmpty) {
2022-05-15 16:59:55 +02:00
obsah.add(Text(
Languages.of(context)!.noFood,
style: const TextStyle(fontSize: 15),
2022-04-05 19:48:14 +02:00
));
} 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,
),
),
2022-05-15 16:59:55 +02:00
Text((j.naBurze)
? Languages.of(context)!.inExchange
: "${j.cena}"),
2022-04-05 19:48:14 +02:00
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;
2022-04-25 20:09:13 +02:00
showDialog(
context: context,
barrierDismissible: false,
builder: (_) => Dialog(
child: SizedBox(
height: 100,
2022-05-15 16:59:55 +02:00
child: Row(children: [
const Padding(
2022-04-25 20:09:13 +02:00
padding: EdgeInsets.all(10),
child: CircularProgressIndicator(),
),
2022-05-15 16:59:55 +02:00
Text(Languages.of(context)!.ordering)
2022-04-25 20:09:13 +02:00
]),
),
));
widget.canteen.objednat(j).then((_) {
Navigator.of(context, rootNavigator: true).pop();
nactiJidlo();
}).catchError((o) {
Navigator.of(context, rootNavigator: true).pop();
2022-04-05 19:48:14 +02:00
showDialog(
context: context,
builder: (bc) => AlertDialog(
2022-05-15 16:59:55 +02:00
title: Text(
Languages.of(context)!.errorOrdering),
2022-04-05 19:48:14 +02:00
content: Text(o.toString()),
actions: [
TextButton(
2022-05-15 16:59:55 +02:00
child: Text(Languages.of(context)!.close),
2022-04-05 19:48:14 +02:00
onPressed: () {
Navigator.pop(bc);
},
)
],
));
});
},
onLongPress: () async {
2022-04-25 20:09:13 +02:00
if (!j.objednano || j.burzaUrl == null) return;
2022-04-05 19:48:14 +02:00
if (!j.naBurze) {
// pokud není na burze, radši se zeptáme
var d = await showDialog(
context: context,
builder: (bc) => SimpleDialog(
2022-05-15 16:59:55 +02:00
title: Text(
Languages.of(context)!.verifyExchange),
2022-04-05 19:48:14 +02:00
children: [
SimpleDialogOption(
onPressed: () {
Navigator.pop(bc, true);
},
2022-05-15 16:59:55 +02:00
child: Text(Languages.of(context)!.yes),
2022-04-05 19:48:14 +02:00
),
SimpleDialogOption(
onPressed: () {
Navigator.pop(bc, false);
},
2022-05-15 16:59:55 +02:00
child: Text(Languages.of(context)!.no),
2022-04-05 19:48:14 +02:00
),
],
));
if (d) {
widget.canteen
.doBurzy(j)
.then((_) => nactiJidlo())
.catchError((o) {
showDialog(
context: context,
builder: (bc) => AlertDialog(
2022-05-15 16:59:55 +02:00
title: Text(
Languages.of(context)!.exchangeError),
2022-04-05 19:48:14 +02:00
content: Text(o.toString()),
actions: [
TextButton(
2022-05-15 16:59:55 +02:00
child: Text(
Languages.of(context)!.close),
2022-04-05 19:48:14 +02:00
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-05-15 16:59:55 +02:00
void kliknuti(String value, BuildContext context) {
if (value == Languages.of(context)!.signOut) {
const storage = FlutterSecureStorage();
storage.deleteAll();
Navigator.pushReplacement(
context, MaterialPageRoute(builder: (c) => const LoginPage()));
} else if (value == Languages.of(context)!.reportBugs) {
launch("https://github.com/hernikplays/opencanteen/issues/new/choose");
} else if (value == Languages.of(context)!.about) {
Navigator.push(
context, MaterialPageRoute(builder: (c) => const AboutPage()));
2022-04-19 16:06:03 +02:00
}
}
2022-04-26 18:20:42 +02:00
/// uložení jídelníčku pro dnešek offline
void ulozitDnesekOffline() async {
2022-05-02 12:07:47 +02:00
var prefs = await SharedPreferences.getInstance();
if (prefs.getBool("offline") != null && prefs.getBool("offline")!) {
2022-04-26 18:20:42 +02:00
Directory appDocDir = await getApplicationDocumentsDirectory();
for (var f in appDocDir.listSync()) {
// Vymažeme obsah
if (f.path.contains("jidelnicek")) {
f.deleteSync();
}
}
// Uložíme nová data
var j = await widget.canteen.jidelnicekDen();
var soubor = File(appDocDir.path +
"/jidelnicek_${den.year}-${den.month}-${den.day}.json");
soubor.createSync();
var jidla = [];
for (var jidlo in j.jidla) {
jidla.add({
"nazev": jidlo.nazev,
"varianta": jidlo.varianta,
"objednano": jidlo.objednano,
"cena": jidlo.cena,
"naBurze": jidlo.naBurze
});
}
await soubor.writeAsString(json.encode(jidla));
}
}
2022-04-05 19:48:14 +02:00
@override
2022-05-15 16:59:55 +02:00
void didChangeDependencies() {
super.didChangeDependencies();
2022-04-26 18:20:42 +02:00
ulozitDnesekOffline();
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(
2022-05-15 16:59:55 +02:00
title: Text(Languages.of(context)!.menu),
2022-04-19 16:06:03 +02:00
actions: [
PopupMenuButton(
2022-05-15 16:59:55 +02:00
onSelected: ((String value) => kliknuti(value, context)),
2022-04-19 16:06:03 +02:00
itemBuilder: (BuildContext context) {
2022-05-15 16:59:55 +02:00
return {
Languages.of(context)!.reportBugs,
Languages.of(context)!.about,
Languages.of(context)!.signOut
}.map((String choice) {
2022-04-19 16:06:03 +02:00
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),
2022-05-15 16:59:55 +02:00
Text("${Languages.of(context)!.balance}$kredit"),
2022-04-09 17:54:08 +02:00
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),
2022-04-25 20:35:57 +02:00
height: MediaQuery.of(context).size.height / 1.3,
2022-04-19 15:35:40 +02:00
),
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
),
);
}
}