v1.1.0+3
This commit is contained in:
@@ -1,6 +1,7 @@
|
||||
import 'dart:developer';
|
||||
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:flutter_localizations/flutter_localizations.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:get_storage/get_storage.dart';
|
||||
import 'package:reverse_nn/application/controllers/application_controller.dart';
|
||||
@@ -18,6 +19,16 @@ class ReversNNApplication extends StatelessWidget {
|
||||
|
||||
return GetMaterialApp(
|
||||
title: 'Реверс НН',
|
||||
|
||||
localizationsDelegates: const [
|
||||
GlobalMaterialLocalizations.delegate,
|
||||
GlobalCupertinoLocalizations.delegate
|
||||
],
|
||||
|
||||
supportedLocales: const [
|
||||
Locale('ru')
|
||||
],
|
||||
|
||||
theme: ThemeData(
|
||||
colorScheme: ColorScheme.fromSeed(seedColor: Colors.teal, brightness: Brightness.light),
|
||||
useMaterial3: true,
|
||||
|
||||
@@ -18,7 +18,22 @@ class CalendarScheduleController extends GetxController {
|
||||
loading = false.obs; update();
|
||||
}
|
||||
|
||||
static void openScreen() async {
|
||||
Get.to(() => const CalendarScreen());
|
||||
static void openScreen() async { Get.to(() => const CalendarScreen()); }
|
||||
|
||||
void goToConcreteDay(DateTime day) async {
|
||||
date = (day.copyWith(hour: 12, minute: 0, millisecond: 0, microsecond: 0)).obs;
|
||||
loadSchedule(date.value);
|
||||
}
|
||||
|
||||
void goToPrevDay() async {
|
||||
if(date.value.isBefore(DateTime(2024, 8, 1, 23, 59))) return;
|
||||
date = (date.value.copyWith().subtract(const Duration(days: 1)).copyWith(hour: 12, minute: 0)).obs;
|
||||
loadSchedule(date.value);
|
||||
}
|
||||
|
||||
void goToNextDay() async {
|
||||
if(date.value.isAfter(DateTime(2025, 12, 31))) return;
|
||||
date = (date.value.copyWith().add(const Duration(days: 1)).copyWith(hour: 12, minute: 0)).obs;
|
||||
loadSchedule(date.value);
|
||||
}
|
||||
}
|
||||
@@ -1,5 +1,6 @@
|
||||
import 'dart:developer';
|
||||
|
||||
import 'package:flutter/foundation.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:reverse_nn/application/services/schedule.dart';
|
||||
|
||||
@@ -12,6 +13,7 @@ class ScheduleController extends GetxController {
|
||||
}
|
||||
|
||||
void updateCurrentSchedule() async {
|
||||
if(kDebugMode) { log('update current status'); }
|
||||
currentSchedule = (await ScheduleService().getCurrentStatus()).obs;
|
||||
update();
|
||||
|
||||
|
||||
@@ -66,9 +66,10 @@ class ScheduleService {
|
||||
}).toList();
|
||||
}
|
||||
|
||||
Future<List<Map<String, dynamic>>?> getScheduleByDate(DateTime datetime) async {
|
||||
final datetimeStartWithOffset = datetime.copyWith(hour: 0, minute: 0, second: 0, microsecond: 0, millisecond: 0)
|
||||
.add(dayOffset);
|
||||
Future<List<Map<String, dynamic>>?> getScheduleByDate(DateTime datetime, {bool force = false}) async {
|
||||
final dateStart = datetime.copyWith(hour: 0, minute: 0, second: 0, microsecond: 0, millisecond: 0);
|
||||
final dateEnd = datetime.copyWith(hour: 23, minute: 59, second: 59, microsecond: 999, millisecond: 999);
|
||||
final datetimeStartWithOffset = dateStart.copyWith().add(dayOffset);
|
||||
|
||||
final DateTime usedScheduleDatetime = datetime.isAfter(datetimeStartWithOffset)
|
||||
? datetime
|
||||
@@ -93,23 +94,34 @@ class ScheduleService {
|
||||
for (var i = 0; i < schedule.length; i++) {
|
||||
final scheduleItem = schedule[i];
|
||||
final int duration = (scheduleItem['duration'] as int);
|
||||
final DateTime start = datetimeStartWithOffset.copyWith().add(Duration(minutes: durationOffset));
|
||||
DateTime start = datetimeStartWithOffset.copyWith().add(Duration(minutes: durationOffset));
|
||||
DateTime end = datetimeStartWithOffset.copyWith().add(Duration(minutes: durationOffset + duration));
|
||||
durationOffset += duration;
|
||||
|
||||
bool showEndDate = false;
|
||||
if(i == (schedule.length -1)) {
|
||||
final scheduleNextDay = await getScheduleByDate(datetime.copyWith().add(const Duration(days: 1)));
|
||||
final firstScheduleElement = scheduleNextDay?[0];
|
||||
if(firstScheduleElement != null && (firstScheduleElement['direction'] as String) == (scheduleItem['direction'] as String)) {
|
||||
end = end.add(Duration(minutes: firstScheduleElement['duration'] as int));
|
||||
showEndDate = true;
|
||||
if(!force) {
|
||||
if(i == 0) {
|
||||
final schedulePrevDay = await getScheduleByDate(datetime.copyWith().subtract(const Duration(days: 1)), force: true);
|
||||
final lastScheduleElement = schedulePrevDay?.last;
|
||||
if(lastScheduleElement != null && (lastScheduleElement['direction'] as String) == (scheduleItem['direction'] as String)) {
|
||||
start = start.subtract(Duration(minutes: lastScheduleElement['duration'] as int));
|
||||
}
|
||||
}
|
||||
|
||||
if(i == (schedule.length -1)) {
|
||||
final scheduleNextDay = await getScheduleByDate(datetime.copyWith().add(const Duration(days: 1)), force: true);
|
||||
final firstScheduleElement = scheduleNextDay?.first;
|
||||
if(firstScheduleElement != null && (firstScheduleElement['direction'] as String) == (scheduleItem['direction'] as String)) {
|
||||
end = end.add(Duration(minutes: firstScheduleElement['duration'] as int));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
schedule[i]['start'] = start;
|
||||
schedule[i]['show_start_date'] = !(start.isAfter(dateStart) && start.isBefore(dateEnd));
|
||||
schedule[i]['end'] = end;
|
||||
schedule[i]['show_end_date'] = !(end.isAfter(dateStart) && end.isBefore(dateEnd));
|
||||
}
|
||||
|
||||
return schedule;
|
||||
}
|
||||
|
||||
@@ -118,39 +130,12 @@ class ScheduleService {
|
||||
final List<Map<String, dynamic>>? schedule = await getScheduleByDate(now);
|
||||
if(schedule == null) return null;
|
||||
|
||||
DateTime datetimeStartWithOffset = now.copyWith(hour: 0, minute: 0, second: 0, microsecond: 0, millisecond: 0)
|
||||
.add(dayOffset);
|
||||
|
||||
if(now.isBefore(datetimeStartWithOffset)) {
|
||||
datetimeStartWithOffset = datetimeStartWithOffset.subtract(const Duration(days: 1));
|
||||
}
|
||||
|
||||
int durationOffset = 0;
|
||||
for (var i = 0; i < schedule.length; i++) {
|
||||
final scheduleItem = schedule[i];
|
||||
final int duration = (scheduleItem['duration'] as int);
|
||||
final DateTime start = datetimeStartWithOffset.copyWith().add(Duration(minutes: durationOffset));
|
||||
DateTime end = datetimeStartWithOffset.copyWith().add(Duration(minutes: durationOffset + duration));
|
||||
durationOffset += duration;
|
||||
|
||||
bool showEndDate = false;
|
||||
|
||||
if(i == (schedule.length -1)) {
|
||||
final scheduleNextDay = await getScheduleByDate(now.copyWith().add(const Duration(days: 1)));
|
||||
final firstScheduleElement = scheduleNextDay?[0];
|
||||
if(firstScheduleElement != null && (firstScheduleElement['direction'] as String) == (scheduleItem['direction'] as String)) {
|
||||
end = end.add(Duration(minutes: firstScheduleElement['duration'] as int));
|
||||
showEndDate = true;
|
||||
}
|
||||
}
|
||||
for(var i = 0; i < schedule.length; i++) {
|
||||
final start = schedule[i]['start'];
|
||||
final end = schedule[i]['end'];
|
||||
|
||||
if(now.isAfter(start) && now.isBefore(end)) {
|
||||
return <String, dynamic>{
|
||||
"direction": scheduleItem['direction'] as String,
|
||||
"start": start,
|
||||
"end": end,
|
||||
"need_show_end_date": showEndDate,
|
||||
};
|
||||
return schedule[i];
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -1,8 +1,7 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:intl/intl.dart' show DateFormat;
|
||||
import 'package:reverse_nn/application/controllers/schedule_controller.dart';
|
||||
import 'package:reverse_nn/application/services/schedule.dart';
|
||||
import 'package:reverse_nn/ui/components/schedule_item_component.dart';
|
||||
|
||||
class CurrentStatusComponent extends StatelessWidget {
|
||||
const CurrentStatusComponent({super.key});
|
||||
@@ -10,40 +9,13 @@ class CurrentStatusComponent extends StatelessWidget {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
final ScheduleController controller = Get.put(ScheduleController());
|
||||
return Container(
|
||||
decoration: BoxDecoration(
|
||||
color: Theme.of(context).colorScheme.primaryContainer,
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
),
|
||||
child: Padding(
|
||||
padding: const EdgeInsets.all(10),
|
||||
child: GetBuilder<ScheduleController>(
|
||||
builder: (scheduleController) {
|
||||
return Row(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Icon(ScheduleService.getIconByDirection(scheduleController.currentSchedule.value?['direction']), size: 96),
|
||||
const SizedBox(width: 16),
|
||||
Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
if(scheduleController.currentSchedule.value != null) ...[
|
||||
Text(ScheduleService.formatDirection(scheduleController.currentSchedule.value?['direction'] ?? ''), style: Theme.of(context).textTheme.headlineLarge),
|
||||
Text('C\t\t\t\t${formatDate(scheduleController.currentSchedule.value?['start'], showDate: scheduleController.currentSchedule.value!['need_show_end_date'])}', style: Theme.of(context).textTheme.titleMedium),
|
||||
Text('До\t${formatDate(scheduleController.currentSchedule.value!['end'], showDate: scheduleController.currentSchedule.value!['need_show_end_date'])}', style: Theme.of(context).textTheme.titleMedium),
|
||||
]
|
||||
],
|
||||
)
|
||||
],
|
||||
);
|
||||
}
|
||||
),
|
||||
),
|
||||
|
||||
return GetBuilder<ScheduleController>(
|
||||
builder: (controller) {
|
||||
if(controller.currentSchedule.value == null) { return Container(); }
|
||||
|
||||
return ScheduleItemComponent(item: controller.currentSchedule.value!);
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
String formatDate(DateTime date, {bool showDate = false}) => DateFormat(showDate ? 'hh:mm (dd.MM.yyyy)' : 'hh:mm').format(date);
|
||||
|
||||
}
|
||||
57
lib/ui/components/schedule_item_component.dart
Normal file
57
lib/ui/components/schedule_item_component.dart
Normal file
@@ -0,0 +1,57 @@
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:intl/intl.dart' show DateFormat;
|
||||
import 'package:reverse_nn/application/services/schedule.dart';
|
||||
|
||||
class ScheduleItemComponent extends StatelessWidget {
|
||||
final Map<String, dynamic> item;
|
||||
const ScheduleItemComponent({super.key, required this.item});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
margin: const EdgeInsets.only(top: 10),
|
||||
padding: const EdgeInsets.symmetric(vertical: 20, horizontal: 10),
|
||||
decoration: BoxDecoration(
|
||||
color: Theme.of(context).colorScheme.secondaryContainer,
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
),
|
||||
alignment: Alignment.center,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Icon(ScheduleService.getIconByDirection(item['direction'] as String), size: 56),
|
||||
const SizedBox(width: 16),
|
||||
Expanded(child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
_directionText(context),
|
||||
_startText(context),
|
||||
_endText(context),
|
||||
],
|
||||
))
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
String formatDate(DateTime date, {bool showDate = false}) {
|
||||
return DateFormat(showDate ? 'HH:mm dd.MM.yyyy' : 'HH:mm').format(date);
|
||||
}
|
||||
|
||||
Widget _directionText(BuildContext context) => Text(
|
||||
ScheduleService.formatDirection(item['direction'] ?? ''),
|
||||
style: Theme.of(context).textTheme.headlineLarge
|
||||
);
|
||||
|
||||
Widget _startText(BuildContext context) => Text(
|
||||
'C\t\t\t\t${formatDate(item['start'], showDate: item['show_start_date'] ?? false)}',
|
||||
style: Theme.of(context).textTheme.titleLarge
|
||||
);
|
||||
|
||||
Widget _endText(BuildContext context) => Text(
|
||||
'До\t${formatDate(item['end'], showDate: item['show_end_date'] ?? false)}',
|
||||
style: Theme.of(context).textTheme.titleLarge
|
||||
);
|
||||
}
|
||||
@@ -2,6 +2,7 @@ import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
import 'package:reverse_nn/application/controllers/calendar_schedule_controller.dart';
|
||||
import 'package:reverse_nn/application/services/schedule.dart';
|
||||
import 'package:reverse_nn/ui/components/schedule_item_component.dart';
|
||||
import 'package:reverse_nn/ui/layouts/application_layout.dart';
|
||||
import 'package:intl/intl.dart' show DateFormat;
|
||||
|
||||
@@ -15,40 +16,42 @@ class CalendarScreen extends StatelessWidget {
|
||||
return ApplicationLayout(
|
||||
body: RefreshIndicator(
|
||||
onRefresh: () async { controller.loadSchedule(controller.date.value); },
|
||||
child: SingleChildScrollView(
|
||||
physics: const AlwaysScrollableScrollPhysics(),
|
||||
child: GetBuilder<CalendarScheduleController>(
|
||||
builder: (controller) {
|
||||
return Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
_SelectedDateWidget(
|
||||
date: controller.date.value,
|
||||
onSelectDate: controller.goToConcreteDay,
|
||||
onTapPrev: controller.goToPrevDay,
|
||||
onTapNext: controller.goToNextDay,
|
||||
),
|
||||
|
||||
child: GetBuilder<CalendarScheduleController>(
|
||||
builder: (controller) {
|
||||
return Padding(
|
||||
padding: const EdgeInsets.all(8.0),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
_SelectedDateWidget(date: controller.date.value),
|
||||
if(controller.loading.value) const Padding(
|
||||
padding: EdgeInsets.all(40),
|
||||
child: Center(child: CircularProgressIndicator())
|
||||
),
|
||||
|
||||
if(controller.loading.value) const Padding(
|
||||
padding: EdgeInsets.all(40),
|
||||
child: Center(child: CircularProgressIndicator())
|
||||
if(!controller.loading.value && controller.schedule.value != null) Expanded(
|
||||
child: SingleChildScrollView(
|
||||
physics: const AlwaysScrollableScrollPhysics(),
|
||||
child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: controller.schedule.value!
|
||||
.map((item) => ScheduleItemComponent(item: item))
|
||||
.toList(),
|
||||
),
|
||||
),
|
||||
|
||||
if(!controller.loading.value && controller.schedule.value != null) ListView.builder(
|
||||
shrinkWrap: true,
|
||||
itemBuilder: (_, index) => _ScheduleItemWidget(item: controller.schedule.value![index]),
|
||||
itemCount: controller.schedule.value!.length
|
||||
),
|
||||
|
||||
|
||||
|
||||
// if(!controller.loading.value && controller.schedule.value != null) ...controller.schedule.value!.map((element) {
|
||||
// return _ScheduleItemWidget(item: element);
|
||||
// }),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
),
|
||||
),
|
||||
);
|
||||
@@ -57,7 +60,10 @@ class CalendarScreen extends StatelessWidget {
|
||||
|
||||
class _SelectedDateWidget extends StatelessWidget {
|
||||
final DateTime date;
|
||||
const _SelectedDateWidget({super.key, required this.date});
|
||||
final void Function(DateTime)? onSelectDate;
|
||||
final void Function()? onTapPrev;
|
||||
final void Function()? onTapNext;
|
||||
const _SelectedDateWidget({super.key, required this.date, this.onSelectDate, this.onTapPrev, this.onTapNext});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
@@ -68,47 +74,36 @@ class _SelectedDateWidget extends StatelessWidget {
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
),
|
||||
alignment: Alignment.center,
|
||||
child: Text(
|
||||
formatDate(date),
|
||||
style: Theme.of(context).textTheme.displayMedium,
|
||||
),
|
||||
);
|
||||
}
|
||||
|
||||
String formatDate(DateTime date) {
|
||||
return DateFormat('dd.MM.yyyy').format(date);
|
||||
}
|
||||
}
|
||||
|
||||
class _ScheduleItemWidget extends StatelessWidget {
|
||||
final Map<String, dynamic> item;
|
||||
const _ScheduleItemWidget({super.key, required this.item});
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Container(
|
||||
margin: const EdgeInsets.only(top: 10),
|
||||
padding: const EdgeInsets.symmetric(vertical: 20, horizontal: 10),
|
||||
decoration: BoxDecoration(
|
||||
color: Theme.of(context).colorScheme.secondaryContainer,
|
||||
borderRadius: BorderRadius.circular(10),
|
||||
),
|
||||
alignment: Alignment.center,
|
||||
child: Row(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
mainAxisAlignment: MainAxisAlignment.center,
|
||||
crossAxisAlignment: CrossAxisAlignment.center,
|
||||
children: [
|
||||
Icon(ScheduleService.getIconByDirection(item['direction'] as String), size: 56),
|
||||
Expanded(child: Column(
|
||||
mainAxisAlignment: MainAxisAlignment.start,
|
||||
crossAxisAlignment: CrossAxisAlignment.stretch,
|
||||
children: [
|
||||
Text(ScheduleService.formatDirection(item['direction'] ?? ''), style: Theme.of(context).textTheme.headlineLarge),
|
||||
Text('C\t\t\t\t${formatDate(item['start'])}', style: Theme.of(context).textTheme.titleMedium),
|
||||
Text('До\t${formatDate(item['end'])}', style: Theme.of(context).textTheme.titleMedium),
|
||||
],
|
||||
))
|
||||
],
|
||||
GestureDetector(
|
||||
onTap: () { onTapPrev?.call(); },
|
||||
child: const SizedBox(
|
||||
width: 40,
|
||||
child: Center(child: Icon(Icons.arrow_left, size: 40)),
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: GestureDetector(
|
||||
onTap: () {_openCalendar(context); },
|
||||
child: Center(
|
||||
child: Text(
|
||||
formatDate(date),
|
||||
style: Theme.of(context).textTheme.displaySmall,
|
||||
),
|
||||
),
|
||||
),
|
||||
),
|
||||
GestureDetector(
|
||||
onTap: () { onTapNext?.call(); },
|
||||
child: const SizedBox(
|
||||
width: 40,
|
||||
child: Center(child: Icon(Icons.arrow_right, size: 40)),
|
||||
),
|
||||
),
|
||||
]
|
||||
),
|
||||
);
|
||||
}
|
||||
@@ -116,6 +111,19 @@ class _ScheduleItemWidget extends StatelessWidget {
|
||||
String formatDate(DateTime date) {
|
||||
return DateFormat('dd.MM.yyyy').format(date);
|
||||
}
|
||||
|
||||
void _openCalendar(BuildContext context) async {
|
||||
DateTime now = DateTime.now();
|
||||
DateTime? picked = await showDatePicker(
|
||||
context: context,
|
||||
initialDate: now,
|
||||
firstDate: DateTime(2024, 8, 1, 12),
|
||||
lastDate: DateTime(2025, 12, 31, 12),
|
||||
locale: const Locale('ru')
|
||||
);
|
||||
|
||||
if(picked != null) { onSelectDate?.call(picked); }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
|
||||
@@ -43,21 +43,6 @@ class CurrentReversWidget extends StatelessWidget {
|
||||
)
|
||||
],
|
||||
),
|
||||
|
||||
// child: Column(
|
||||
// mainAxisAlignment: MainAxisAlignment.start,
|
||||
// crossAxisAlignment: CrossAxisAlignment.center,
|
||||
// children: [
|
||||
// const Text('Текущий статус реверса:', style: TextStyle(
|
||||
// color: Colors.black87,
|
||||
// fontSize: 14.0
|
||||
// )),
|
||||
// Text(scheduleElement.direction.displayName, style: const TextStyle(
|
||||
// color: Colors.black,
|
||||
// fontSize: 32.0
|
||||
// ),),
|
||||
// ],
|
||||
// ),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user