ModernMemoires/lib/views/first_page/first_page.dart

154 lines
5.5 KiB
Dart
Raw Normal View History

2023-12-17 23:00:31 +01:00
import 'package:flutter/material.dart';
import 'package:go_router/go_router.dart';
2023-12-25 14:10:31 +01:00
import 'package:moody/utils/widgets/QuestionSliderWidget.dart';
2024-01-01 18:31:10 +01:00
import '../../utils/CirclePainter.dart';
import '../../utils/definitions/ColorPairs.dart';
2024-01-08 19:34:48 +01:00
import '../../utils/definitions/style_guide.dart';
2023-12-25 14:10:31 +01:00
import '../../utils/logic/PreferencesService.dart';
2023-12-17 23:00:31 +01:00
class FirstPage extends StatefulWidget {
2024-01-08 19:34:48 +01:00
final bool showSkipText; // Add this line
const FirstPage({Key? key, this.showSkipText = true}) // Modify this line
: super(key: key);
2023-12-17 23:00:31 +01:00
@override
_FirstPageState createState() => _FirstPageState();
}
class _FirstPageState extends State<FirstPage> {
2024-01-08 19:34:48 +01:00
SliderChangeData sliderData = SliderChangeData(0, 50);
2023-12-17 23:00:31 +01:00
bool _sliderChanged = false;
2024-01-08 19:34:48 +01:00
final PreferencesService _prefsService = PreferencesService();
2023-12-25 14:10:31 +01:00
2024-01-01 18:31:10 +01:00
Color backgroundColor = Colors.lightGreenAccent;
Color textColor = Colors.black;
@override
void initState() {
super.initState();
2024-01-08 19:34:48 +01:00
_checkExistingEntry();
2024-01-01 18:31:10 +01:00
_loadColor();
}
2024-01-08 19:34:48 +01:00
void _checkExistingEntry() async {
WidgetsBinding.instance?.addPostFrameCallback((_) async {
DiaryEntry? entry = await _prefsService.getDiaryEntryByCurrentDate();
if (entry != null) {
context.go('/home');
}
});
}
2024-01-01 18:31:10 +01:00
void _loadColor() async {
ColorPair colorPair = await PreferencesService().loadColorPair();
setState(() {
backgroundColor = colorPair.backgroundColor;
textColor = colorPair.textColor;
});
}
2023-12-25 14:10:31 +01:00
void _saveEntry() async {
try {
List<String> texts = [];
DiaryEntry entry = DiaryEntry(
date: DateTime.now(), // or some date picker value
2024-01-01 19:52:42 +01:00
percentValue: sliderData.value.toInt(),
2023-12-25 14:10:31 +01:00
texts: texts,
);
await _prefsService.saveDiaryEntry(entry);
} catch (e) {
2024-01-08 19:34:48 +01:00
print("Error saving entry: $e"); // Consider showing an error dialog or toast instead
2023-12-25 14:10:31 +01:00
}
}
2023-12-17 23:00:31 +01:00
@override
Widget build(BuildContext context) {
2024-01-01 18:31:10 +01:00
return backgroundColor == Colors.lightGreenAccent
2024-01-08 19:34:48 +01:00
? const CircularProgressIndicator() // Show loading indicator while color is null
2024-01-01 18:31:10 +01:00
: MaterialApp(
home: Scaffold(
2024-01-08 19:34:48 +01:00
backgroundColor: AppStyle.backgroundColor,
2024-01-01 18:31:10 +01:00
body: SafeArea(
child: Stack(
children: [
// Background circle
Positioned.fill(
2024-01-08 19:34:48 +01:00
top: 63,
left: sliderData.position - 50,
2024-01-01 18:31:10 +01:00
child: CustomPaint(
2024-01-08 19:34:48 +01:00
painter: CirclePainter(sliderData.value, backgroundColor),
2024-01-01 18:31:10 +01:00
),
),
// Main content
Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: <Widget>[
// Date
Stack(
children: [
QuestionSliderWidget(
onSliderPositionChanged: (value) {
print("sliderposchanged");
},
2024-01-01 19:52:42 +01:00
sliderColor: textColor,
2024-01-01 18:31:10 +01:00
date: DateTime.now(),
questionText: "",
initialSliderValue: 0,
isSliderEnabled: true,
onSliderChanged: (value) {
setState(() {
sliderData = value;
if (!_sliderChanged) _sliderChanged = true;
});
}),
],
),
// Why? button
_sliderChanged
? TextButton(
onPressed: () {
2024-01-01 19:52:42 +01:00
context.go('/write', extra: sliderData);
2024-01-01 18:31:10 +01:00
},
2024-01-08 19:34:48 +01:00
child: const Padding(
padding: EdgeInsets.only(left: 25),
2024-01-01 19:52:42 +01:00
child: Text(
"warum?",
2024-01-08 19:34:48 +01:00
style: TextStyle(color: Colors.black, fontSize: 18),
2024-01-01 19:52:42 +01:00
),
),
2024-01-01 18:31:10 +01:00
)
2024-01-08 19:34:48 +01:00
: const SizedBox.shrink(),
2024-01-01 18:31:10 +01:00
],
),
// Skip/Save button
Positioned(
bottom: 20,
right: 20,
child: TextButton(
onPressed: () {
print(_sliderChanged);
if (_sliderChanged) {
_saveEntry();
context.go('/home', extra: sliderData.value);
} else {
context.go('/home', extra: 0);
}
},
2024-01-01 19:52:42 +01:00
child: _sliderChanged
2024-01-08 19:34:48 +01:00
? Text("save.", style: TextStyle(fontSize: 18, color: textColor))
: widget.showSkipText // Use the showSkipText parameter
? const Text("skip", style: TextStyle(fontSize: 18, color: Colors.grey))
: SizedBox.shrink(),
2024-01-01 18:31:10 +01:00
),
),
],
2023-12-17 23:00:31 +01:00
),
),
2024-01-01 18:31:10 +01:00
),
);
2023-12-17 23:00:31 +01:00
}
}