2024-06-03 16:35:33 +02:00
|
|
|
import 'package:cloud_firestore/cloud_firestore.dart';
|
2024-05-15 13:35:01 +02:00
|
|
|
import 'package:collection/collection.dart';
|
2024-05-18 00:24:10 +02:00
|
|
|
import 'package:flutter/material.dart';
|
2024-05-15 13:35:01 +02:00
|
|
|
|
|
|
|
///
|
|
|
|
/// Compare two lists by their content ignoring their elements order.
|
|
|
|
///
|
|
|
|
bool equalContent(List<dynamic> list1, List<dynamic> list2) {
|
|
|
|
return const DeepCollectionEquality.unordered().equals(list1, list2);
|
|
|
|
}
|
|
|
|
|
2024-05-25 13:56:45 +02:00
|
|
|
///
|
|
|
|
/// Creates a composite ID from the passed [ids].
|
|
|
|
/// In the format id(1)_id(n)
|
|
|
|
///
|
2024-05-27 14:40:46 +02:00
|
|
|
String getCompoundId(List<String> ids) {
|
2024-05-25 13:56:45 +02:00
|
|
|
ids.sort(); // sort to ensure the result is the same for any order of ids
|
|
|
|
return ids.join('_');
|
|
|
|
}
|
|
|
|
|
2024-06-03 16:35:33 +02:00
|
|
|
/// Returns a date format of '$weekday, $day. $month $year $hours:$minutes'.
|
|
|
|
/// For example: Sat. 3 Jun. 2024 15:03.
|
|
|
|
/// If any errors occur, an empty string will be returned.
|
|
|
|
String formatTimestamp(Timestamp timestamp) {
|
|
|
|
try {
|
|
|
|
const List<String> weekdays = [
|
|
|
|
'Mon',
|
|
|
|
'Tue',
|
|
|
|
'Wed',
|
|
|
|
'Thu',
|
|
|
|
'Fri',
|
|
|
|
'Sat',
|
|
|
|
'Sun'
|
|
|
|
];
|
|
|
|
const List<String> months = [
|
|
|
|
'Jan.',
|
|
|
|
'Feb.',
|
|
|
|
'Mar.',
|
|
|
|
'Apr.',
|
|
|
|
'May',
|
|
|
|
'Jun.',
|
|
|
|
'Jul.',
|
|
|
|
'Aug.',
|
|
|
|
'Sep.',
|
|
|
|
'Oct.',
|
|
|
|
'Nov.',
|
|
|
|
'Dec.'
|
|
|
|
];
|
|
|
|
|
|
|
|
DateTime dateTime = timestamp.toDate();
|
|
|
|
String weekday = weekdays[dateTime.weekday - 1];
|
|
|
|
int day = dateTime.day;
|
|
|
|
String month = months[dateTime.month - 1];
|
|
|
|
int year = dateTime.year;
|
|
|
|
int hour = dateTime.hour;
|
|
|
|
int minute = dateTime.minute;
|
|
|
|
|
|
|
|
return '$weekday, $day. $month $year ${hour.toString().padLeft(2, '0')}:${minute.toString().padLeft(2, '0')}';
|
|
|
|
} catch (e) {
|
|
|
|
return '';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2024-05-21 14:01:44 +02:00
|
|
|
///
|
2024-05-25 13:56:45 +02:00
|
|
|
/// Get the [displayName] of our own Enumerations.
|
2024-05-21 14:01:44 +02:00
|
|
|
///
|
|
|
|
String getDisplayText(dynamic option) {
|
|
|
|
// Check if the option is an enum and has a displayName property
|
|
|
|
if (option is Enum) {
|
|
|
|
final dynamicEnum = option as dynamic;
|
|
|
|
if (dynamicEnum.displayName != null) {
|
|
|
|
return dynamicEnum.displayName;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// Fallback to default toString if not an enum
|
|
|
|
return option.toString().split('.').last;
|
|
|
|
}
|
|
|
|
|
2024-05-18 00:24:10 +02:00
|
|
|
///
|
|
|
|
/// Show a simple message dialog
|
|
|
|
///
|
|
|
|
void showMsg(BuildContext context, String title, String content) {
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
builder: (context) => AlertDialog(
|
|
|
|
title: Text(title),
|
|
|
|
content: Text(content),
|
|
|
|
actions: [
|
|
|
|
TextButton(
|
|
|
|
onPressed: () {
|
|
|
|
Navigator.of(context).pop();
|
|
|
|
},
|
|
|
|
child: const Text('OK'),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
2024-05-27 14:40:46 +02:00
|
|
|
}
|