2024-05-22 02:46:46 +02:00
|
|
|
import 'package:cloud_firestore/cloud_firestore.dart';
|
|
|
|
import 'package:collection/collection.dart';
|
|
|
|
import 'package:flutter/material.dart';
|
2024-06-22 21:56:45 +02:00
|
|
|
import '../components/my_elevated_button.dart';
|
2024-06-17 17:57:32 +02:00
|
|
|
import '../components/text_bold.dart';
|
2024-05-22 02:46:46 +02:00
|
|
|
import '../constants.dart';
|
|
|
|
import '../enumerations.dart';
|
|
|
|
import '../forms/corporate_culture_form.dart';
|
|
|
|
import '../services/auth/auth_service.dart';
|
2024-06-14 14:28:59 +02:00
|
|
|
import '../utils/helper_dialogs.dart';
|
2024-05-21 14:01:44 +02:00
|
|
|
|
2024-05-31 03:20:42 +02:00
|
|
|
class UserVisionPage extends StatefulWidget {
|
2024-05-31 23:16:15 +02:00
|
|
|
const UserVisionPage(
|
|
|
|
{super.key, required this.isRegProcess, required this.isEditMode});
|
2024-05-21 14:01:44 +02:00
|
|
|
|
|
|
|
final bool isRegProcess;
|
2024-05-31 23:16:15 +02:00
|
|
|
final bool isEditMode;
|
2024-05-21 14:01:44 +02:00
|
|
|
|
|
|
|
@override
|
2024-05-31 03:20:42 +02:00
|
|
|
UserVisionPageState createState() => UserVisionPageState();
|
2024-05-21 14:01:44 +02:00
|
|
|
}
|
|
|
|
|
2024-05-31 03:20:42 +02:00
|
|
|
class UserVisionPageState extends State<UserVisionPage> {
|
2024-05-21 14:01:44 +02:00
|
|
|
Map<VisionOption, bool> selectedVisionOptions = {
|
|
|
|
VisionOption.marketLeader: false,
|
|
|
|
VisionOption.sustainableBusiness: false,
|
|
|
|
VisionOption.innovativeProduct: false,
|
|
|
|
VisionOption.exitStrategy: false,
|
|
|
|
};
|
|
|
|
AvailabilityOption? availability;
|
|
|
|
|
|
|
|
final AuthService _authService = AuthService();
|
|
|
|
|
|
|
|
@override
|
|
|
|
void initState() {
|
|
|
|
super.initState();
|
|
|
|
_loadDataFromFirebase();
|
|
|
|
}
|
|
|
|
|
|
|
|
Future<void> _loadDataFromFirebase() async {
|
|
|
|
final userDoc = FirebaseFirestore.instance
|
|
|
|
.collection(Constants.dbCollectionUsers)
|
|
|
|
.doc(_authService.getCurrentUser()!.uid);
|
|
|
|
final snapshot = await userDoc.get();
|
|
|
|
|
|
|
|
if (snapshot.exists) {
|
|
|
|
final data = snapshot.data();
|
2024-06-07 02:18:20 +02:00
|
|
|
setState(
|
|
|
|
() {
|
|
|
|
// Load Vision options
|
|
|
|
if (data?[Constants.dbFieldUsersVisions] != null) {
|
|
|
|
for (var option in VisionOption.values) {
|
|
|
|
selectedVisionOptions[option] =
|
|
|
|
data?[Constants.dbFieldUsersVisions]
|
|
|
|
.contains(option.toString());
|
|
|
|
}
|
2024-05-21 14:01:44 +02:00
|
|
|
}
|
2024-06-07 02:18:20 +02:00
|
|
|
// Load Availability option
|
|
|
|
if (data?[Constants.dbFieldUsersAvailability] != null) {
|
|
|
|
availability = AvailabilityOption.values.firstWhereOrNull(
|
|
|
|
(e) => e.toString() == data?[Constants.dbFieldUsersAvailability],
|
|
|
|
);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
2024-05-21 14:01:44 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-31 23:16:15 +02:00
|
|
|
Future<bool> _saveDataToFirebase() async {
|
|
|
|
try {
|
|
|
|
final userDoc = FirebaseFirestore.instance
|
|
|
|
.collection(Constants.dbCollectionUsers)
|
|
|
|
.doc(_authService.getCurrentUser()!.uid);
|
2024-05-21 14:01:44 +02:00
|
|
|
|
2024-05-31 23:16:15 +02:00
|
|
|
await userDoc.set(
|
|
|
|
{
|
|
|
|
Constants.dbFieldUsersVisions: selectedVisionOptions.entries
|
|
|
|
.where((entry) => entry.value)
|
|
|
|
.map((entry) => entry.key.toString())
|
|
|
|
.toList(),
|
|
|
|
Constants.dbFieldUsersAvailability: availability?.toString(),
|
|
|
|
},
|
|
|
|
SetOptions(merge: true), // avoid overwriting existing data
|
|
|
|
);
|
|
|
|
return true;
|
|
|
|
} catch (e) {
|
|
|
|
_showSnackBar(e.toString());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _showSnackBar(String message) {
|
2024-06-10 17:38:47 +02:00
|
|
|
showErrorSnackBar(context, message);
|
2024-05-21 14:01:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
bool isVisionSelected() {
|
|
|
|
return selectedVisionOptions.containsValue(true);
|
|
|
|
}
|
|
|
|
|
2024-05-31 23:16:15 +02:00
|
|
|
Future<void> handleSubmit() async {
|
2024-05-21 14:01:44 +02:00
|
|
|
if (!isVisionSelected()) {
|
2024-06-07 02:18:20 +02:00
|
|
|
_showSnackBar('Please select at least one long-term vision.');
|
2024-05-21 14:01:44 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (availability == null) {
|
2024-06-07 02:18:20 +02:00
|
|
|
_showSnackBar('Please select an availability option.');
|
2024-05-21 14:01:44 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Handle the form submission logic here
|
2024-05-31 23:16:15 +02:00
|
|
|
bool success = await _saveDataToFirebase();
|
|
|
|
if (success) {
|
2024-06-07 02:18:20 +02:00
|
|
|
_navigate();
|
2024-05-31 23:16:15 +02:00
|
|
|
} else {
|
2024-06-07 02:18:20 +02:00
|
|
|
_showSnackBar('Failed to save data.');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void _navigate() {
|
|
|
|
if (widget.isRegProcess) {
|
|
|
|
Navigator.push(
|
|
|
|
context,
|
|
|
|
MaterialPageRoute(
|
|
|
|
//
|
|
|
|
// set following registration page HERE
|
|
|
|
//
|
|
|
|
builder: (context) => CultureValuesFormPage(
|
|
|
|
isRegProcess: widget.isRegProcess,
|
|
|
|
isEditMode: false,
|
|
|
|
),
|
2024-05-21 19:37:00 +02:00
|
|
|
),
|
2024-05-31 23:16:15 +02:00
|
|
|
);
|
2024-06-07 02:18:20 +02:00
|
|
|
} else {
|
|
|
|
if (widget.isEditMode == true) {
|
|
|
|
// pass selectedOptions data back to caller
|
|
|
|
Navigator.pop(context, {
|
|
|
|
Constants.dbFieldUsersVisions: selectedVisionOptions.entries
|
|
|
|
.where((entry) => entry.value)
|
|
|
|
.map((entry) => entry.key)
|
|
|
|
.toList(),
|
|
|
|
Constants.dbFieldUsersAvailability: availability,
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
Navigator.pop(context);
|
|
|
|
}
|
2024-05-31 23:16:15 +02:00
|
|
|
}
|
2024-05-21 14:01:44 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
|
|
|
title: const Text('Personal preferences'),
|
2024-06-20 22:47:54 +02:00
|
|
|
actions: [
|
|
|
|
if (widget.isEditMode && !widget.isRegProcess)
|
|
|
|
IconButton(
|
|
|
|
onPressed: handleSubmit,
|
|
|
|
icon: const Icon(Icons.save),
|
|
|
|
)
|
|
|
|
],
|
2024-05-21 14:01:44 +02:00
|
|
|
),
|
|
|
|
body: Padding(
|
|
|
|
padding: const EdgeInsets.all(16.0),
|
2024-05-21 19:37:00 +02:00
|
|
|
child: SingleChildScrollView(
|
|
|
|
child: Column(
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
children: [
|
2024-06-17 17:57:32 +02:00
|
|
|
const TextBold(text: 'Availability and commitment'),
|
2024-05-21 19:37:00 +02:00
|
|
|
const Text(
|
|
|
|
'How much time can you devote to the startup each week?',
|
|
|
|
),
|
|
|
|
...AvailabilityOption.values.map((option) {
|
|
|
|
return RadioListTile(
|
|
|
|
title: Text(option.displayName),
|
|
|
|
value: option,
|
|
|
|
groupValue: availability,
|
|
|
|
onChanged: (AvailabilityOption? value) {
|
|
|
|
setState(() {
|
|
|
|
availability = value;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}),
|
2024-06-14 14:28:59 +02:00
|
|
|
const SizedBox(height: 40),
|
2024-06-17 17:57:32 +02:00
|
|
|
const TextBold(text: 'Vision and goals'),
|
2024-06-14 14:28:59 +02:00
|
|
|
const Text('What is your long-term vision for a startup?'),
|
|
|
|
...VisionOption.values.map((option) {
|
|
|
|
return CheckboxListTile(
|
|
|
|
title: Text(option.displayName),
|
|
|
|
value: selectedVisionOptions[option],
|
|
|
|
controlAffinity: ListTileControlAffinity.platform,
|
|
|
|
onChanged: (bool? value) {
|
|
|
|
if (value != null) {
|
|
|
|
setState(() {
|
|
|
|
selectedVisionOptions[option] = value;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
},
|
|
|
|
);
|
|
|
|
}),
|
2024-05-21 19:37:00 +02:00
|
|
|
const SizedBox(height: 20),
|
|
|
|
Center(
|
2024-06-22 21:56:45 +02:00
|
|
|
child: MyElevatedButton(
|
2024-05-21 19:37:00 +02:00
|
|
|
onPressed: handleSubmit,
|
|
|
|
child:
|
|
|
|
Text(widget.isRegProcess ? 'Save and continue' : 'Save'),
|
|
|
|
),
|
2024-05-21 14:01:44 +02:00
|
|
|
),
|
2024-05-21 19:37:00 +02:00
|
|
|
],
|
|
|
|
),
|
2024-05-21 14:01:44 +02:00
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|