Compare commits
23 Commits
feature/11
...
developmen
| Author | SHA1 | Date | |
|---|---|---|---|
| 13c88cb958 | |||
| 6e4375e459 | |||
| 59d1efb4fb | |||
| 611033b5cd | |||
| 4e98dcde41 | |||
| a304d9adf7 | |||
| 23d00c64ab | |||
| 4726d170a1 | |||
| 3fe421676c | |||
| b0b039875a | |||
| 840faab024 | |||
| 6c50eaefc7 | |||
| 4f91130cb5 | |||
| 2214ea8e7d | |||
| 5b7ef4051d | |||
| e3c39521a0 | |||
| b83719f16d | |||
| de0344d63d | |||
| 4ae1432943 | |||
| feb2b756bd | |||
| bfad74db22 | |||
| 8e20fe1034 | |||
| 81aad9280c |
@@ -1,9 +1,5 @@
|
|||||||
include: package:flutter_lints/flutter.yaml
|
include: package:flutter_lints/flutter.yaml
|
||||||
|
|
||||||
analyzer:
|
|
||||||
exclude:
|
|
||||||
- lib/presentation/views/main_menu/settings_view/licenses/oss_licenses.dart
|
|
||||||
|
|
||||||
linter:
|
linter:
|
||||||
rules:
|
rules:
|
||||||
avoid_print: false
|
avoid_print: false
|
||||||
@@ -15,4 +11,8 @@ linter:
|
|||||||
prefer_const_literals_to_create_immutables: true
|
prefer_const_literals_to_create_immutables: true
|
||||||
unnecessary_const: true
|
unnecessary_const: true
|
||||||
lines_longer_than_80_chars: false
|
lines_longer_than_80_chars: false
|
||||||
constant_identifier_names: false
|
constant_identifier_names: false
|
||||||
|
|
||||||
|
analyzer:
|
||||||
|
exclude:
|
||||||
|
- lib/presentation/views/main_menu/settings_view/licenses/oss_licenses.dart
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:tallee/core/enums.dart';
|
import 'package:tallee/core/enums.dart';
|
||||||
import 'package:tallee/data/dto/match.dart';
|
import 'package:tallee/data/dto/match.dart';
|
||||||
import 'package:tallee/l10n/generated/app_localizations.dart';
|
import 'package:tallee/l10n/generated/app_localizations.dart';
|
||||||
@@ -20,51 +20,6 @@ String translateRulesetToString(Ruleset ruleset, BuildContext context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Translates a [GameColor] enum value to its corresponding localized string.
|
|
||||||
String translateGameColorToString(GameColor color, BuildContext context) {
|
|
||||||
final loc = AppLocalizations.of(context);
|
|
||||||
switch (color) {
|
|
||||||
case GameColor.red:
|
|
||||||
return loc.color_red;
|
|
||||||
case GameColor.blue:
|
|
||||||
return loc.color_blue;
|
|
||||||
case GameColor.green:
|
|
||||||
return loc.color_green;
|
|
||||||
case GameColor.yellow:
|
|
||||||
return loc.color_yellow;
|
|
||||||
case GameColor.purple:
|
|
||||||
return loc.color_purple;
|
|
||||||
case GameColor.orange:
|
|
||||||
return loc.color_orange;
|
|
||||||
case GameColor.pink:
|
|
||||||
return loc.color_pink;
|
|
||||||
case GameColor.teal:
|
|
||||||
return loc.color_teal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Returns the [Color] object corresponding to a [GameColor] enum value.
|
|
||||||
Color getColorFromGameColor(GameColor color) {
|
|
||||||
switch (color) {
|
|
||||||
case GameColor.red:
|
|
||||||
return Colors.red;
|
|
||||||
case GameColor.blue:
|
|
||||||
return Colors.blue;
|
|
||||||
case GameColor.green:
|
|
||||||
return Colors.green;
|
|
||||||
case GameColor.yellow:
|
|
||||||
return Colors.yellow;
|
|
||||||
case GameColor.purple:
|
|
||||||
return Colors.purple;
|
|
||||||
case GameColor.orange:
|
|
||||||
return Colors.orange;
|
|
||||||
case GameColor.pink:
|
|
||||||
return Colors.pink;
|
|
||||||
case GameColor.teal:
|
|
||||||
return Colors.teal;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Counts how many players in the match are not part of the group
|
/// Counts how many players in the match are not part of the group
|
||||||
/// Returns the count as a string, or an empty string if there is no group
|
/// Returns the count as a string, or an empty string if there is no group
|
||||||
String getExtraPlayerCount(Match match) {
|
String getExtraPlayerCount(Match match) {
|
||||||
|
|||||||
@@ -19,7 +19,4 @@ class Constants {
|
|||||||
|
|
||||||
/// Maximum length for team names
|
/// Maximum length for team names
|
||||||
static const int MAX_TEAM_NAME_LENGTH = 32;
|
static const int MAX_TEAM_NAME_LENGTH = 32;
|
||||||
|
|
||||||
/// Maximum length for game descriptions
|
|
||||||
static const int MAX_GAME_DESCRIPTION_LENGTH = 256;
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
import 'package:drift/drift.dart';
|
import 'package:drift/drift.dart';
|
||||||
import 'package:tallee/data/db/database.dart';
|
import 'package:tallee/data/db/database.dart';
|
||||||
import 'package:tallee/data/db/tables/group_table.dart';
|
import 'package:tallee/data/db/tables/group_table.dart';
|
||||||
|
import 'package:tallee/data/db/tables/match_table.dart';
|
||||||
import 'package:tallee/data/db/tables/player_group_table.dart';
|
import 'package:tallee/data/db/tables/player_group_table.dart';
|
||||||
import 'package:tallee/data/dto/group.dart';
|
import 'package:tallee/data/dto/group.dart';
|
||||||
import 'package:tallee/data/dto/player.dart';
|
import 'package:tallee/data/dto/player.dart';
|
||||||
|
|
||||||
part 'group_dao.g.dart';
|
part 'group_dao.g.dart';
|
||||||
|
|
||||||
@DriftAccessor(tables: [GroupTable, PlayerGroupTable])
|
@DriftAccessor(tables: [GroupTable, PlayerGroupTable, MatchTable])
|
||||||
class GroupDao extends DatabaseAccessor<AppDatabase> with _$GroupDaoMixin {
|
class GroupDao extends DatabaseAccessor<AppDatabase> with _$GroupDaoMixin {
|
||||||
GroupDao(super.db);
|
GroupDao(super.db);
|
||||||
|
|
||||||
@@ -205,8 +206,6 @@ class GroupDao extends DatabaseAccessor<AppDatabase> with _$GroupDaoMixin {
|
|||||||
return rowsAffected > 0;
|
return rowsAffected > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
/// Retrieves the number of groups in the database.
|
/// Retrieves the number of groups in the database.
|
||||||
Future<int> getGroupCount() async {
|
Future<int> getGroupCount() async {
|
||||||
final count =
|
final count =
|
||||||
@@ -235,10 +234,13 @@ class GroupDao extends DatabaseAccessor<AppDatabase> with _$GroupDaoMixin {
|
|||||||
/// Replaces all players in a group with the provided list of players.
|
/// Replaces all players in a group with the provided list of players.
|
||||||
/// Removes all existing players from the group and adds the new players.
|
/// Removes all existing players from the group and adds the new players.
|
||||||
/// Also adds any new players to the player table if they don't exist.
|
/// Also adds any new players to the player table if they don't exist.
|
||||||
Future<void> replaceGroupPlayers({
|
/// Returns `true` if the group exists and players were replaced, `false` otherwise.
|
||||||
|
Future<bool> replaceGroupPlayers({
|
||||||
required String groupId,
|
required String groupId,
|
||||||
required List<Player> newPlayers,
|
required List<Player> newPlayers,
|
||||||
}) async {
|
}) async {
|
||||||
|
if (!await groupExists(groupId: groupId)) return false;
|
||||||
|
|
||||||
await db.transaction(() async {
|
await db.transaction(() async {
|
||||||
// Remove all existing players from the group
|
// Remove all existing players from the group
|
||||||
final deleteQuery = delete(db.playerGroupTable)
|
final deleteQuery = delete(db.playerGroupTable)
|
||||||
@@ -270,5 +272,6 @@ class GroupDao extends DatabaseAccessor<AppDatabase> with _$GroupDaoMixin {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,4 +8,6 @@ mixin _$GroupDaoMixin on DatabaseAccessor<AppDatabase> {
|
|||||||
$PlayerTableTable get playerTable => attachedDatabase.playerTable;
|
$PlayerTableTable get playerTable => attachedDatabase.playerTable;
|
||||||
$PlayerGroupTableTable get playerGroupTable =>
|
$PlayerGroupTableTable get playerGroupTable =>
|
||||||
attachedDatabase.playerGroupTable;
|
attachedDatabase.playerGroupTable;
|
||||||
|
$GameTableTable get gameTable => attachedDatabase.gameTable;
|
||||||
|
$MatchTableTable get matchTable => attachedDatabase.matchTable;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -268,6 +268,34 @@ class MatchDao extends DatabaseAccessor<AppDatabase> with _$MatchDaoMixin {
|
|||||||
return count ?? 0;
|
return count ?? 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Retrieves all matches associated with the given [groupId].
|
||||||
|
/// Queries the database directly, filtering by [groupId].
|
||||||
|
Future<List<Match>> getGroupMatches({required String groupId}) async {
|
||||||
|
final query = select(matchTable)..where((m) => m.groupId.equals(groupId));
|
||||||
|
final rows = await query.get();
|
||||||
|
|
||||||
|
return Future.wait(
|
||||||
|
rows.map((row) async {
|
||||||
|
final game = await db.gameDao.getGameById(gameId: row.gameId);
|
||||||
|
final group = await db.groupDao.getGroupById(groupId: groupId);
|
||||||
|
final players =
|
||||||
|
await db.playerMatchDao.getPlayersOfMatch(matchId: row.id) ?? [];
|
||||||
|
final winner = await db.matchDao.getWinner(matchId: row.id);
|
||||||
|
return Match(
|
||||||
|
id: row.id,
|
||||||
|
name: row.name ?? '',
|
||||||
|
game: game,
|
||||||
|
group: group,
|
||||||
|
players: players,
|
||||||
|
notes: row.notes ?? '',
|
||||||
|
createdAt: row.createdAt,
|
||||||
|
endedAt: row.endedAt,
|
||||||
|
winner: winner,
|
||||||
|
);
|
||||||
|
}),
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/// Checks if a match with the given [matchId] exists in the database.
|
/// Checks if a match with the given [matchId] exists in the database.
|
||||||
/// Returns `true` if the match exists, otherwise `false`.
|
/// Returns `true` if the match exists, otherwise `false`.
|
||||||
Future<bool> matchExists({required String matchId}) async {
|
Future<bool> matchExists({required String matchId}) async {
|
||||||
@@ -338,6 +366,17 @@ class MatchDao extends DatabaseAccessor<AppDatabase> with _$MatchDaoMixin {
|
|||||||
return rowsAffected > 0;
|
return rowsAffected > 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Removes the group association of the match with the given [matchId].
|
||||||
|
/// Sets the groupId to null.
|
||||||
|
/// Returns `true` if more than 0 rows were affected, otherwise `false`.
|
||||||
|
Future<bool> removeMatchGroup({required String matchId}) async {
|
||||||
|
final query = update(matchTable)..where((g) => g.id.equals(matchId));
|
||||||
|
final rowsAffected = await query.write(
|
||||||
|
const MatchTableCompanion(groupId: Value(null)),
|
||||||
|
);
|
||||||
|
return rowsAffected > 0;
|
||||||
|
}
|
||||||
|
|
||||||
/// Updates the createdAt timestamp of the match with the given [matchId].
|
/// Updates the createdAt timestamp of the match with the given [matchId].
|
||||||
/// Returns `true` if more than 0 rows were affected, otherwise `false`.
|
/// Returns `true` if more than 0 rows were affected, otherwise `false`.
|
||||||
Future<bool> updateMatchCreatedAt({
|
Future<bool> updateMatchCreatedAt({
|
||||||
|
|||||||
@@ -1123,7 +1123,7 @@ class $MatchTableTable extends MatchTable
|
|||||||
type: DriftSqlType.string,
|
type: DriftSqlType.string,
|
||||||
requiredDuringInsert: false,
|
requiredDuringInsert: false,
|
||||||
defaultConstraints: GeneratedColumn.constraintIsAlways(
|
defaultConstraints: GeneratedColumn.constraintIsAlways(
|
||||||
'REFERENCES group_table (id) ON DELETE CASCADE',
|
'REFERENCES group_table (id) ON DELETE SET NULL',
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
static const VerificationMeta _nameMeta = const VerificationMeta('name');
|
static const VerificationMeta _nameMeta = const VerificationMeta('name');
|
||||||
@@ -2780,7 +2780,7 @@ abstract class _$AppDatabase extends GeneratedDatabase {
|
|||||||
'group_table',
|
'group_table',
|
||||||
limitUpdateKind: UpdateKind.delete,
|
limitUpdateKind: UpdateKind.delete,
|
||||||
),
|
),
|
||||||
result: [TableUpdate('match_table', kind: UpdateKind.delete)],
|
result: [TableUpdate('match_table', kind: UpdateKind.update)],
|
||||||
),
|
),
|
||||||
WritePropagation(
|
WritePropagation(
|
||||||
on: TableUpdateQuery.onTableName(
|
on: TableUpdateQuery.onTableName(
|
||||||
|
|||||||
@@ -7,13 +7,15 @@ class MatchTable extends Table {
|
|||||||
TextColumn get gameId =>
|
TextColumn get gameId =>
|
||||||
text().references(GameTable, #id, onDelete: KeyAction.cascade)();
|
text().references(GameTable, #id, onDelete: KeyAction.cascade)();
|
||||||
// Nullable if there is no group associated with the match
|
// Nullable if there is no group associated with the match
|
||||||
TextColumn get groupId =>
|
// onDelete: If a group gets deleted, groupId in the match gets set to null
|
||||||
text().references(GroupTable, #id, onDelete: KeyAction.cascade).nullable()();
|
TextColumn get groupId => text()
|
||||||
TextColumn get name => text().nullable()();
|
.references(GroupTable, #id, onDelete: KeyAction.setNull)
|
||||||
|
.nullable()();
|
||||||
|
TextColumn get name => text()();
|
||||||
TextColumn get notes => text().nullable()();
|
TextColumn get notes => text().nullable()();
|
||||||
DateTimeColumn get createdAt => dateTime()();
|
DateTimeColumn get createdAt => dateTime()();
|
||||||
DateTimeColumn get endedAt => dateTime().nullable()();
|
DateTimeColumn get endedAt => dateTime().nullable()();
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Set<Column<Object>> get primaryKey => {id};
|
Set<Column<Object>> get primaryKey => {id};
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import 'package:clock/clock.dart';
|
import 'package:clock/clock.dart';
|
||||||
import 'package:tallee/core/enums.dart';
|
|
||||||
import 'package:uuid/uuid.dart';
|
import 'package:uuid/uuid.dart';
|
||||||
|
import 'package:tallee/core/enums.dart';
|
||||||
|
|
||||||
class Game {
|
class Game {
|
||||||
final String id;
|
final String id;
|
||||||
@@ -18,11 +18,10 @@ class Game {
|
|||||||
required this.ruleset,
|
required this.ruleset,
|
||||||
String? description,
|
String? description,
|
||||||
required this.color,
|
required this.color,
|
||||||
String? icon,
|
required this.icon,
|
||||||
}) : id = id ?? const Uuid().v4(),
|
}) : id = id ?? const Uuid().v4(),
|
||||||
createdAt = createdAt ?? clock.now(),
|
createdAt = createdAt ?? clock.now(),
|
||||||
description = description ?? '',
|
description = description ?? '';
|
||||||
icon = icon ?? '';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String toString() {
|
String toString() {
|
||||||
@@ -50,3 +49,4 @@ class Game {
|
|||||||
'icon': icon,
|
'icon': icon,
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -27,8 +27,8 @@ class Match {
|
|||||||
String? notes,
|
String? notes,
|
||||||
this.winner,
|
this.winner,
|
||||||
}) : id = id ?? const Uuid().v4(),
|
}) : id = id ?? const Uuid().v4(),
|
||||||
createdAt = createdAt ?? clock.now(),
|
createdAt = createdAt ?? clock.now(),
|
||||||
notes = notes ?? '';
|
notes = notes ?? '';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String toString() {
|
String toString() {
|
||||||
@@ -38,21 +38,14 @@ class Match {
|
|||||||
/// Creates a Match instance from a JSON object (ID references format).
|
/// Creates a Match instance from a JSON object (ID references format).
|
||||||
/// Related objects are reconstructed from IDs by the DataTransferService.
|
/// Related objects are reconstructed from IDs by the DataTransferService.
|
||||||
Match.fromJson(Map<String, dynamic> json)
|
Match.fromJson(Map<String, dynamic> json)
|
||||||
: id = json['id'],
|
: id = json['id'],
|
||||||
createdAt = DateTime.parse(json['createdAt']),
|
createdAt = DateTime.parse(json['createdAt']),
|
||||||
endedAt = json['endedAt'] != null
|
endedAt = json['endedAt'] != null ? DateTime.parse(json['endedAt']) : null,
|
||||||
? DateTime.parse(json['endedAt'])
|
name = json['name'],
|
||||||
: null,
|
game = Game(name: '', ruleset: Ruleset.singleWinner, description: '', color: GameColor.blue, icon: ''), // Populated during import via DataTransferService
|
||||||
name = json['name'],
|
group = null, // Populated during import via DataTransferService
|
||||||
game = Game(
|
players = [], // Populated during import via DataTransferService
|
||||||
name: '',
|
notes = json['notes'] ?? '';
|
||||||
ruleset: Ruleset.singleWinner,
|
|
||||||
description: '',
|
|
||||||
color: GameColor.blue,
|
|
||||||
), // Populated during import via DataTransferService
|
|
||||||
group = null, // Populated during import via DataTransferService
|
|
||||||
players = [], // Populated during import via DataTransferService
|
|
||||||
notes = json['notes'] ?? '';
|
|
||||||
|
|
||||||
/// Converts the Match instance to a JSON object using normalized format (ID references only).
|
/// Converts the Match instance to a JSON object using normalized format (ID references only).
|
||||||
Map<String, dynamic> toJson() => {
|
Map<String, dynamic> toJson() => {
|
||||||
|
|||||||
@@ -9,9 +9,7 @@
|
|||||||
"choose_game": "Spielvorlage wählen",
|
"choose_game": "Spielvorlage wählen",
|
||||||
"choose_group": "Gruppe wählen",
|
"choose_group": "Gruppe wählen",
|
||||||
"choose_ruleset": "Regelwerk wählen",
|
"choose_ruleset": "Regelwerk wählen",
|
||||||
"choose_color": "Farbe wählen",
|
|
||||||
"could_not_add_player": "Spieler:in {playerName} konnte nicht hinzugefügt werden",
|
"could_not_add_player": "Spieler:in {playerName} konnte nicht hinzugefügt werden",
|
||||||
"create_game": "Spielvorlage erstellen",
|
|
||||||
"create_group": "Gruppe erstellen",
|
"create_group": "Gruppe erstellen",
|
||||||
"create_match": "Spiel erstellen",
|
"create_match": "Spiel erstellen",
|
||||||
"create_new_group": "Neue Gruppe erstellen",
|
"create_new_group": "Neue Gruppe erstellen",
|
||||||
@@ -26,15 +24,10 @@
|
|||||||
"delete_all_data": "Alle Daten löschen",
|
"delete_all_data": "Alle Daten löschen",
|
||||||
"delete_group": "Diese Gruppe löschen",
|
"delete_group": "Diese Gruppe löschen",
|
||||||
"delete_match": "Spiel löschen",
|
"delete_match": "Spiel löschen",
|
||||||
"delete_game": "Spielvorlage löschen",
|
|
||||||
"delete_group": "Gruppe löschen",
|
|
||||||
"description": "Beschreibung",
|
|
||||||
"edit_game": "Spielvorlage bearbeiten",
|
|
||||||
"edit_group": "Gruppe bearbeiten",
|
"edit_group": "Gruppe bearbeiten",
|
||||||
"edit_match": "Gruppe bearbeiten",
|
"edit_match": "Gruppe bearbeiten",
|
||||||
"enter_results": "Ergebnisse eintragen",
|
"enter_results": "Ergebnisse eintragen",
|
||||||
"error_creating_group": "Fehler beim Erstellen der Gruppe, bitte erneut versuchen",
|
"error_creating_group": "Fehler beim Erstellen der Gruppe, bitte erneut versuchen",
|
||||||
"error_deleting_game": "Fehler beim Löschen der Spielvorlage, bitte erneut versuchen",
|
|
||||||
"error_deleting_group": "Fehler beim Löschen der Gruppe, bitte erneut versuchen",
|
"error_deleting_group": "Fehler beim Löschen der Gruppe, bitte erneut versuchen",
|
||||||
"error_editing_group": "Fehler beim Bearbeiten der Gruppe, bitte erneut versuchen",
|
"error_editing_group": "Fehler beim Bearbeiten der Gruppe, bitte erneut versuchen",
|
||||||
"error_reading_file": "Fehler beim Lesen der Datei",
|
"error_reading_file": "Fehler beim Lesen der Datei",
|
||||||
@@ -113,14 +106,5 @@
|
|||||||
"winner": "Gewinner:in",
|
"winner": "Gewinner:in",
|
||||||
"winrate": "Siegquote",
|
"winrate": "Siegquote",
|
||||||
"wins": "Siege",
|
"wins": "Siege",
|
||||||
"yesterday_at": "Gestern um",
|
"yesterday_at": "Gestern um"
|
||||||
"color_red": "Rot",
|
|
||||||
"color_blue": "Blau",
|
|
||||||
"color_green": "Grün",
|
|
||||||
"color_yellow": "Gelb",
|
|
||||||
"color_purple": "Lila",
|
|
||||||
"color_orange": "Orange",
|
|
||||||
"color_pink": "Rosa",
|
|
||||||
"color_teal": "Türkis",
|
|
||||||
"color": "Farbe"
|
|
||||||
}
|
}
|
||||||
@@ -27,15 +27,9 @@
|
|||||||
"@choose_ruleset": {
|
"@choose_ruleset": {
|
||||||
"description": "Label for choosing a ruleset"
|
"description": "Label for choosing a ruleset"
|
||||||
},
|
},
|
||||||
"@choose_color": {
|
|
||||||
"description": "Label for choosing a color"
|
|
||||||
},
|
|
||||||
"@could_not_add_player": {
|
"@could_not_add_player": {
|
||||||
"description": "Error message when adding a player fails"
|
"description": "Error message when adding a player fails"
|
||||||
},
|
},
|
||||||
"@create_game": {
|
|
||||||
"description": "Button text to create a game"
|
|
||||||
},
|
|
||||||
"@create_group": {
|
"@create_group": {
|
||||||
"description": "Button text to create a group"
|
"description": "Button text to create a group"
|
||||||
},
|
},
|
||||||
@@ -77,21 +71,12 @@
|
|||||||
"@delete_all_data": {
|
"@delete_all_data": {
|
||||||
"description": "Confirmation dialog for deleting all data"
|
"description": "Confirmation dialog for deleting all data"
|
||||||
},
|
},
|
||||||
"@delete_game": {
|
|
||||||
"description": "Button text to delete a game"
|
|
||||||
},
|
|
||||||
"@delete_group": {
|
"@delete_group": {
|
||||||
"description": "Confirmation dialog for deleting a group"
|
"description": "Confirmation dialog for deleting a group"
|
||||||
},
|
},
|
||||||
"@delete_match": {
|
"@delete_match": {
|
||||||
"description": "Button text to delete a match"
|
"description": "Button text to delete a match"
|
||||||
},
|
},
|
||||||
"description": {
|
|
||||||
"description": "Description label"
|
|
||||||
},
|
|
||||||
"edit_game": {
|
|
||||||
"description": "Button text to edit a game"
|
|
||||||
},
|
|
||||||
"@edit_group": {
|
"@edit_group": {
|
||||||
"description": "Button & Appbar label for editing a group"
|
"description": "Button & Appbar label for editing a group"
|
||||||
},
|
},
|
||||||
@@ -104,9 +89,6 @@
|
|||||||
"@error_creating_group": {
|
"@error_creating_group": {
|
||||||
"description": "Error message when group creation fails"
|
"description": "Error message when group creation fails"
|
||||||
},
|
},
|
||||||
"@error_deleting_game": {
|
|
||||||
"description": "Error message when game deletion fails"
|
|
||||||
},
|
|
||||||
"@error_deleting_group": {
|
"@error_deleting_group": {
|
||||||
"description": "Error message when group deletion fails"
|
"description": "Error message when group deletion fails"
|
||||||
},
|
},
|
||||||
@@ -343,9 +325,6 @@
|
|||||||
"@yesterday_at": {
|
"@yesterday_at": {
|
||||||
"description": "Date format for yesterday"
|
"description": "Date format for yesterday"
|
||||||
},
|
},
|
||||||
"@color": {
|
|
||||||
"description": "Color label"
|
|
||||||
},
|
|
||||||
"all_players": "All players",
|
"all_players": "All players",
|
||||||
"all_players_selected": "All players selected",
|
"all_players_selected": "All players selected",
|
||||||
"amount_of_matches": "Amount of Matches",
|
"amount_of_matches": "Amount of Matches",
|
||||||
@@ -355,9 +334,7 @@
|
|||||||
"choose_game": "Choose Game",
|
"choose_game": "Choose Game",
|
||||||
"choose_group": "Choose Group",
|
"choose_group": "Choose Group",
|
||||||
"choose_ruleset": "Choose Ruleset",
|
"choose_ruleset": "Choose Ruleset",
|
||||||
"choose_color": "Choose Color",
|
|
||||||
"could_not_add_player": "Could not add player",
|
"could_not_add_player": "Could not add player",
|
||||||
"create_game": "Create Game",
|
|
||||||
"create_group": "Create Group",
|
"create_group": "Create Group",
|
||||||
"create_match": "Create match",
|
"create_match": "Create match",
|
||||||
"create_new_group": "Create new group",
|
"create_new_group": "Create new group",
|
||||||
@@ -370,16 +347,12 @@
|
|||||||
"days_ago": "{count} days ago",
|
"days_ago": "{count} days ago",
|
||||||
"delete": "Delete",
|
"delete": "Delete",
|
||||||
"delete_all_data": "Delete all data",
|
"delete_all_data": "Delete all data",
|
||||||
"delete_game": "Delete Game",
|
|
||||||
"delete_group": "Delete Group",
|
"delete_group": "Delete Group",
|
||||||
"delete_match": "Delete Match",
|
"delete_match": "Delete Match",
|
||||||
"description": "Description",
|
|
||||||
"edit_game": "Edit Game",
|
|
||||||
"edit_group": "Edit Group",
|
"edit_group": "Edit Group",
|
||||||
"edit_match": "Edit Match",
|
"edit_match": "Edit Match",
|
||||||
"enter_results": "Enter Results",
|
"enter_results": "Enter Results",
|
||||||
"error_creating_group": "Error while creating group, please try again",
|
"error_creating_group": "Error while creating group, please try again",
|
||||||
"error_deleting_game": "Error while deleting game, please try again",
|
|
||||||
"error_deleting_group": "Error while deleting group, please try again",
|
"error_deleting_group": "Error while deleting group, please try again",
|
||||||
"error_editing_group": "Error while editing group, please try again",
|
"error_editing_group": "Error while editing group, please try again",
|
||||||
"error_reading_file": "Error reading file",
|
"error_reading_file": "Error reading file",
|
||||||
@@ -457,14 +430,5 @@
|
|||||||
"winner": "Winner",
|
"winner": "Winner",
|
||||||
"winrate": "Winrate",
|
"winrate": "Winrate",
|
||||||
"wins": "Wins",
|
"wins": "Wins",
|
||||||
"yesterday_at": "Yesterday at",
|
"yesterday_at": "Yesterday at"
|
||||||
"color_red": "Red",
|
|
||||||
"color_blue": "Blue",
|
|
||||||
"color_green": "Green",
|
|
||||||
"color_yellow": "Yellow",
|
|
||||||
"color_purple": "Purple",
|
|
||||||
"color_orange": "Orange",
|
|
||||||
"color_pink": "Pink",
|
|
||||||
"color_teal": "Teal",
|
|
||||||
"color": "Color"
|
|
||||||
}
|
}
|
||||||
@@ -98,18 +98,6 @@ abstract class AppLocalizations {
|
|||||||
Locale('en'),
|
Locale('en'),
|
||||||
];
|
];
|
||||||
|
|
||||||
/// No description provided for @description.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Description'**
|
|
||||||
String get description;
|
|
||||||
|
|
||||||
/// No description provided for @edit_game.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Edit Game'**
|
|
||||||
String get edit_game;
|
|
||||||
|
|
||||||
/// Label for all players list
|
/// Label for all players list
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
@@ -164,24 +152,12 @@ abstract class AppLocalizations {
|
|||||||
/// **'Choose Ruleset'**
|
/// **'Choose Ruleset'**
|
||||||
String get choose_ruleset;
|
String get choose_ruleset;
|
||||||
|
|
||||||
/// Label for choosing a color
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Choose Color'**
|
|
||||||
String get choose_color;
|
|
||||||
|
|
||||||
/// Error message when adding a player fails
|
/// Error message when adding a player fails
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
/// **'Could not add player'**
|
/// **'Could not add player'**
|
||||||
String could_not_add_player(Object playerName);
|
String could_not_add_player(Object playerName);
|
||||||
|
|
||||||
/// Button text to create a game
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Create Game'**
|
|
||||||
String get create_game;
|
|
||||||
|
|
||||||
/// Button text to create a group
|
/// Button text to create a group
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
@@ -254,12 +230,6 @@ abstract class AppLocalizations {
|
|||||||
/// **'Delete all data'**
|
/// **'Delete all data'**
|
||||||
String get delete_all_data;
|
String get delete_all_data;
|
||||||
|
|
||||||
/// Button text to delete a game
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Delete Game'**
|
|
||||||
String get delete_game;
|
|
||||||
|
|
||||||
/// Confirmation dialog for deleting a group
|
/// Confirmation dialog for deleting a group
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
@@ -296,12 +266,6 @@ abstract class AppLocalizations {
|
|||||||
/// **'Error while creating group, please try again'**
|
/// **'Error while creating group, please try again'**
|
||||||
String get error_creating_group;
|
String get error_creating_group;
|
||||||
|
|
||||||
/// Error message when game deletion fails
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Error while deleting game, please try again'**
|
|
||||||
String get error_deleting_game;
|
|
||||||
|
|
||||||
/// Error message when group deletion fails
|
/// Error message when group deletion fails
|
||||||
///
|
///
|
||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
@@ -769,60 +733,6 @@ abstract class AppLocalizations {
|
|||||||
/// In en, this message translates to:
|
/// In en, this message translates to:
|
||||||
/// **'Yesterday at'**
|
/// **'Yesterday at'**
|
||||||
String get yesterday_at;
|
String get yesterday_at;
|
||||||
|
|
||||||
/// No description provided for @color_red.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Red'**
|
|
||||||
String get color_red;
|
|
||||||
|
|
||||||
/// No description provided for @color_blue.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Blue'**
|
|
||||||
String get color_blue;
|
|
||||||
|
|
||||||
/// No description provided for @color_green.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Green'**
|
|
||||||
String get color_green;
|
|
||||||
|
|
||||||
/// No description provided for @color_yellow.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Yellow'**
|
|
||||||
String get color_yellow;
|
|
||||||
|
|
||||||
/// No description provided for @color_purple.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Purple'**
|
|
||||||
String get color_purple;
|
|
||||||
|
|
||||||
/// No description provided for @color_orange.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Orange'**
|
|
||||||
String get color_orange;
|
|
||||||
|
|
||||||
/// No description provided for @color_pink.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Pink'**
|
|
||||||
String get color_pink;
|
|
||||||
|
|
||||||
/// No description provided for @color_teal.
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Teal'**
|
|
||||||
String get color_teal;
|
|
||||||
|
|
||||||
/// Color label
|
|
||||||
///
|
|
||||||
/// In en, this message translates to:
|
|
||||||
/// **'Color'**
|
|
||||||
String get color;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
class _AppLocalizationsDelegate
|
class _AppLocalizationsDelegate
|
||||||
|
|||||||
@@ -8,12 +8,6 @@ import 'app_localizations.dart';
|
|||||||
class AppLocalizationsDe extends AppLocalizations {
|
class AppLocalizationsDe extends AppLocalizations {
|
||||||
AppLocalizationsDe([String locale = 'de']) : super(locale);
|
AppLocalizationsDe([String locale = 'de']) : super(locale);
|
||||||
|
|
||||||
@override
|
|
||||||
String get description => 'Beschreibung';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get edit_game => 'Spielvorlage bearbeiten';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get all_players => 'Alle Spieler:innen';
|
String get all_players => 'Alle Spieler:innen';
|
||||||
|
|
||||||
@@ -41,17 +35,11 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||||||
@override
|
@override
|
||||||
String get choose_ruleset => 'Regelwerk wählen';
|
String get choose_ruleset => 'Regelwerk wählen';
|
||||||
|
|
||||||
@override
|
|
||||||
String get choose_color => 'Farbe wählen';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String could_not_add_player(Object playerName) {
|
String could_not_add_player(Object playerName) {
|
||||||
return 'Spieler:in $playerName konnte nicht hinzugefügt werden';
|
return 'Spieler:in $playerName konnte nicht hinzugefügt werden';
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
|
||||||
String get create_game => 'Spielvorlage erstellen';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get create_group => 'Gruppe erstellen';
|
String get create_group => 'Gruppe erstellen';
|
||||||
|
|
||||||
@@ -91,10 +79,7 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||||||
String get delete_all_data => 'Alle Daten löschen';
|
String get delete_all_data => 'Alle Daten löschen';
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get delete_game => 'Spielvorlage löschen';
|
String get delete_group => 'Diese Gruppe löschen';
|
||||||
|
|
||||||
@override
|
|
||||||
String get delete_group => 'Gruppe löschen';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get delete_match => 'Spiel löschen';
|
String get delete_match => 'Spiel löschen';
|
||||||
@@ -112,10 +97,6 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||||||
String get error_creating_group =>
|
String get error_creating_group =>
|
||||||
'Fehler beim Erstellen der Gruppe, bitte erneut versuchen';
|
'Fehler beim Erstellen der Gruppe, bitte erneut versuchen';
|
||||||
|
|
||||||
@override
|
|
||||||
String get error_deleting_game =>
|
|
||||||
'Fehler beim Löschen der Spielvorlage, bitte erneut versuchen';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get error_deleting_group =>
|
String get error_deleting_group =>
|
||||||
'Fehler beim Löschen der Gruppe, bitte erneut versuchen';
|
'Fehler beim Löschen der Gruppe, bitte erneut versuchen';
|
||||||
@@ -362,31 +343,4 @@ class AppLocalizationsDe extends AppLocalizations {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
String get yesterday_at => 'Gestern um';
|
String get yesterday_at => 'Gestern um';
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_red => 'Rot';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_blue => 'Blau';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_green => 'Grün';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_yellow => 'Gelb';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_purple => 'Lila';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_orange => 'Orange';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_pink => 'Rosa';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_teal => 'Türkis';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color => 'Farbe';
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -8,12 +8,6 @@ import 'app_localizations.dart';
|
|||||||
class AppLocalizationsEn extends AppLocalizations {
|
class AppLocalizationsEn extends AppLocalizations {
|
||||||
AppLocalizationsEn([String locale = 'en']) : super(locale);
|
AppLocalizationsEn([String locale = 'en']) : super(locale);
|
||||||
|
|
||||||
@override
|
|
||||||
String get description => 'Description';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get edit_game => 'Edit Game';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get all_players => 'All players';
|
String get all_players => 'All players';
|
||||||
|
|
||||||
@@ -41,17 +35,11 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||||||
@override
|
@override
|
||||||
String get choose_ruleset => 'Choose Ruleset';
|
String get choose_ruleset => 'Choose Ruleset';
|
||||||
|
|
||||||
@override
|
|
||||||
String get choose_color => 'Choose Color';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String could_not_add_player(Object playerName) {
|
String could_not_add_player(Object playerName) {
|
||||||
return 'Could not add player';
|
return 'Could not add player';
|
||||||
}
|
}
|
||||||
|
|
||||||
@override
|
|
||||||
String get create_game => 'Create Game';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get create_group => 'Create Group';
|
String get create_group => 'Create Group';
|
||||||
|
|
||||||
@@ -90,9 +78,6 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||||||
@override
|
@override
|
||||||
String get delete_all_data => 'Delete all data';
|
String get delete_all_data => 'Delete all data';
|
||||||
|
|
||||||
@override
|
|
||||||
String get delete_game => 'Delete Game';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get delete_group => 'Delete Group';
|
String get delete_group => 'Delete Group';
|
||||||
|
|
||||||
@@ -112,10 +97,6 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||||||
String get error_creating_group =>
|
String get error_creating_group =>
|
||||||
'Error while creating group, please try again';
|
'Error while creating group, please try again';
|
||||||
|
|
||||||
@override
|
|
||||||
String get error_deleting_game =>
|
|
||||||
'Error while deleting game, please try again';
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
String get error_deleting_group =>
|
String get error_deleting_group =>
|
||||||
'Error while deleting group, please try again';
|
'Error while deleting group, please try again';
|
||||||
@@ -361,31 +342,4 @@ class AppLocalizationsEn extends AppLocalizations {
|
|||||||
|
|
||||||
@override
|
@override
|
||||||
String get yesterday_at => 'Yesterday at';
|
String get yesterday_at => 'Yesterday at';
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_red => 'Red';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_blue => 'Blue';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_green => 'Green';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_yellow => 'Yellow';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_purple => 'Purple';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_orange => 'Orange';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_pink => 'Pink';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color_teal => 'Teal';
|
|
||||||
|
|
||||||
@override
|
|
||||||
String get color => 'Color';
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:provider/provider.dart';
|
import 'package:provider/provider.dart';
|
||||||
|
import 'package:tallee/core/constants.dart';
|
||||||
import 'package:tallee/core/custom_theme.dart';
|
import 'package:tallee/core/custom_theme.dart';
|
||||||
import 'package:tallee/core/enums.dart';
|
import 'package:tallee/core/enums.dart';
|
||||||
import 'package:tallee/data/db/database.dart';
|
import 'package:tallee/data/db/database.dart';
|
||||||
@@ -11,11 +12,13 @@ import 'package:tallee/presentation/widgets/player_selection.dart';
|
|||||||
import 'package:tallee/presentation/widgets/text_input/text_input_field.dart';
|
import 'package:tallee/presentation/widgets/text_input/text_input_field.dart';
|
||||||
|
|
||||||
class CreateGroupView extends StatefulWidget {
|
class CreateGroupView extends StatefulWidget {
|
||||||
const CreateGroupView({super.key, this.groupToEdit});
|
const CreateGroupView({super.key, this.groupToEdit, this.onMembersChanged});
|
||||||
|
|
||||||
/// The group to edit, if any
|
/// The group to edit, if any
|
||||||
final Group? groupToEdit;
|
final Group? groupToEdit;
|
||||||
|
|
||||||
|
final VoidCallback? onMembersChanged;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<CreateGroupView> createState() => _CreateGroupViewState();
|
State<CreateGroupView> createState() => _CreateGroupViewState();
|
||||||
}
|
}
|
||||||
@@ -69,49 +72,6 @@ class _CreateGroupViewState extends State<CreateGroupView> {
|
|||||||
title: Text(
|
title: Text(
|
||||||
widget.groupToEdit == null ? loc.create_new_group : loc.edit_group,
|
widget.groupToEdit == null ? loc.create_new_group : loc.edit_group,
|
||||||
),
|
),
|
||||||
actions: widget.groupToEdit == null
|
|
||||||
? []
|
|
||||||
: [
|
|
||||||
IconButton(
|
|
||||||
icon: const Icon(Icons.delete),
|
|
||||||
onPressed: () async {
|
|
||||||
if (widget.groupToEdit != null) {
|
|
||||||
showDialog<bool>(
|
|
||||||
context: context,
|
|
||||||
builder: (context) => AlertDialog(
|
|
||||||
title: Text(loc.delete_group),
|
|
||||||
content: Text(loc.this_cannot_be_undone),
|
|
||||||
actions: [
|
|
||||||
TextButton(
|
|
||||||
onPressed: () =>
|
|
||||||
Navigator.of(context).pop(false),
|
|
||||||
child: Text(loc.cancel),
|
|
||||||
),
|
|
||||||
TextButton(
|
|
||||||
onPressed: () =>
|
|
||||||
Navigator.of(context).pop(true),
|
|
||||||
child: Text(loc.delete),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
).then((confirmed) async {
|
|
||||||
if (confirmed == true && context.mounted) {
|
|
||||||
bool success = await db.groupDao.deleteGroup(
|
|
||||||
groupId: widget.groupToEdit!.id,
|
|
||||||
);
|
|
||||||
if (!context.mounted) return;
|
|
||||||
if (success) {
|
|
||||||
Navigator.pop(context);
|
|
||||||
} else {
|
|
||||||
if (!mounted) return;
|
|
||||||
showSnackbar(message: loc.error_deleting_group);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
),
|
||||||
body: SafeArea(
|
body: SafeArea(
|
||||||
child: Column(
|
child: Column(
|
||||||
@@ -122,6 +82,7 @@ class _CreateGroupViewState extends State<CreateGroupView> {
|
|||||||
child: TextInputField(
|
child: TextInputField(
|
||||||
controller: _groupNameController,
|
controller: _groupNameController,
|
||||||
hintText: loc.group_name,
|
hintText: loc.group_name,
|
||||||
|
maxLength: Constants.MAX_GROUP_NAME_LENGTH,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Expanded(
|
Expanded(
|
||||||
@@ -144,42 +105,7 @@ class _CreateGroupViewState extends State<CreateGroupView> {
|
|||||||
(_groupNameController.text.isEmpty ||
|
(_groupNameController.text.isEmpty ||
|
||||||
(selectedPlayers.length < 2))
|
(selectedPlayers.length < 2))
|
||||||
? null
|
? null
|
||||||
: () async {
|
: _saveGroup,
|
||||||
late Group? updatedGroup;
|
|
||||||
late bool success;
|
|
||||||
if (widget.groupToEdit == null) {
|
|
||||||
success = await db.groupDao.addGroup(
|
|
||||||
group: Group(
|
|
||||||
name: _groupNameController.text.trim(),
|
|
||||||
members: selectedPlayers,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
} else {
|
|
||||||
updatedGroup = Group(
|
|
||||||
id: widget.groupToEdit!.id,
|
|
||||||
name: _groupNameController.text.trim(),
|
|
||||||
description: '',
|
|
||||||
members: selectedPlayers,
|
|
||||||
);
|
|
||||||
//TODO: Implement group editing in database
|
|
||||||
/*
|
|
||||||
success = await db.groupDao.updateGroup(
|
|
||||||
group: updatedGroup,
|
|
||||||
);
|
|
||||||
*/
|
|
||||||
success = true;
|
|
||||||
}
|
|
||||||
if (!context.mounted) return;
|
|
||||||
if (success) {
|
|
||||||
Navigator.pop(context, updatedGroup);
|
|
||||||
} else {
|
|
||||||
showSnackbar(
|
|
||||||
message: widget.groupToEdit == null
|
|
||||||
? loc.error_creating_group
|
|
||||||
: loc.error_editing_group,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
const SizedBox(height: 20),
|
const SizedBox(height: 20),
|
||||||
],
|
],
|
||||||
@@ -189,6 +115,104 @@ class _CreateGroupViewState extends State<CreateGroupView> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Saves the group by creating a new one or updating the existing one,
|
||||||
|
/// depending on whether the widget is in edit mode.
|
||||||
|
Future<void> _saveGroup() async {
|
||||||
|
final loc = AppLocalizations.of(context);
|
||||||
|
late bool success;
|
||||||
|
Group? updatedGroup;
|
||||||
|
|
||||||
|
if (widget.groupToEdit == null) {
|
||||||
|
success = await _createGroup();
|
||||||
|
} else {
|
||||||
|
final result = await _editGroup();
|
||||||
|
success = result.$1;
|
||||||
|
updatedGroup = result.$2;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!mounted) return;
|
||||||
|
|
||||||
|
if (success) {
|
||||||
|
Navigator.pop(context, updatedGroup);
|
||||||
|
} else {
|
||||||
|
showSnackbar(
|
||||||
|
message: widget.groupToEdit == null
|
||||||
|
? loc.error_creating_group
|
||||||
|
: loc.error_editing_group,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Handles creating a new group and returns whether the operation was successful.
|
||||||
|
Future<bool> _createGroup() async {
|
||||||
|
final groupName = _groupNameController.text.trim();
|
||||||
|
|
||||||
|
final success = await db.groupDao.addGroup(
|
||||||
|
group: Group(name: groupName, description: '', members: selectedPlayers),
|
||||||
|
);
|
||||||
|
|
||||||
|
return success;
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Handles editing an existing group and returns a tuple of
|
||||||
|
/// (success, updatedGroup).
|
||||||
|
Future<(bool, Group?)> _editGroup() async {
|
||||||
|
final groupName = _groupNameController.text.trim();
|
||||||
|
|
||||||
|
Group? updatedGroup = Group(
|
||||||
|
id: widget.groupToEdit!.id,
|
||||||
|
name: groupName,
|
||||||
|
description: '',
|
||||||
|
members: selectedPlayers,
|
||||||
|
);
|
||||||
|
|
||||||
|
bool successfullNameChange = true;
|
||||||
|
bool successfullMemberChange = true;
|
||||||
|
|
||||||
|
if (widget.groupToEdit!.name != groupName) {
|
||||||
|
successfullNameChange = await db.groupDao.updateGroupName(
|
||||||
|
groupId: widget.groupToEdit!.id,
|
||||||
|
newName: groupName,
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (widget.groupToEdit!.members != selectedPlayers) {
|
||||||
|
successfullMemberChange = await db.groupDao.replaceGroupPlayers(
|
||||||
|
groupId: widget.groupToEdit!.id,
|
||||||
|
newPlayers: selectedPlayers,
|
||||||
|
);
|
||||||
|
await deleteObsoleteMatchGroupRelations();
|
||||||
|
widget.onMembersChanged?.call();
|
||||||
|
}
|
||||||
|
|
||||||
|
final success = successfullNameChange && successfullMemberChange;
|
||||||
|
|
||||||
|
return (success, updatedGroup);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Removes the group association from matches that no longer belong to the edited group.
|
||||||
|
///
|
||||||
|
/// After updating the group's members, matches that were previously linked to
|
||||||
|
/// this group but don't have any of the newly selected players are considered
|
||||||
|
/// obsolete. For each such match, the group association is removed by setting
|
||||||
|
/// its [groupId] to null.
|
||||||
|
Future<void> deleteObsoleteMatchGroupRelations() async {
|
||||||
|
final groupMatches = await db.matchDao.getGroupMatches(
|
||||||
|
groupId: widget.groupToEdit!.id,
|
||||||
|
);
|
||||||
|
|
||||||
|
final selectedPlayerIds = selectedPlayers.map((p) => p.id).toSet();
|
||||||
|
final relationshipsToDelete = groupMatches.where((match) {
|
||||||
|
return !match.players.any(
|
||||||
|
(player) => selectedPlayerIds.contains(player.id),
|
||||||
|
);
|
||||||
|
}).toList();
|
||||||
|
|
||||||
|
for (var match in relationshipsToDelete) {
|
||||||
|
await db.matchDao.removeMatchGroup(matchId: match.id);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/// Displays a snackbar with the given message and optional action.
|
/// Displays a snackbar with the given message and optional action.
|
||||||
///
|
///
|
||||||
/// [message] The message to display in the snackbar.
|
/// [message] The message to display in the snackbar.
|
||||||
|
|||||||
@@ -191,7 +191,12 @@ class _GroupDetailViewState extends State<GroupDetailView> {
|
|||||||
context,
|
context,
|
||||||
adaptivePageRoute(
|
adaptivePageRoute(
|
||||||
builder: (context) {
|
builder: (context) {
|
||||||
return CreateGroupView(groupToEdit: _group);
|
return CreateGroupView(
|
||||||
|
groupToEdit: _group,
|
||||||
|
onMembersChanged: () {
|
||||||
|
_loadStatistics();
|
||||||
|
},
|
||||||
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
@@ -242,10 +247,8 @@ class _GroupDetailViewState extends State<GroupDetailView> {
|
|||||||
|
|
||||||
/// Loads statistics for this group
|
/// Loads statistics for this group
|
||||||
Future<void> _loadStatistics() async {
|
Future<void> _loadStatistics() async {
|
||||||
final matches = await db.matchDao.getAllMatches();
|
isLoading = true;
|
||||||
final groupMatches = matches
|
final groupMatches = await db.matchDao.getGroupMatches(groupId: _group.id);
|
||||||
.where((match) => match.group?.id == _group.id)
|
|
||||||
.toList();
|
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
totalMatches = groupMatches.length;
|
totalMatches = groupMatches.length;
|
||||||
@@ -260,7 +263,9 @@ class _GroupDetailViewState extends State<GroupDetailView> {
|
|||||||
|
|
||||||
// Count wins for each player
|
// Count wins for each player
|
||||||
for (var match in matches) {
|
for (var match in matches) {
|
||||||
if (match.winner != null) {
|
if (match.winner != null &&
|
||||||
|
_group.members.any((m) => m.id == match.winner?.id)) {
|
||||||
|
print(match.winner);
|
||||||
bestPlayerCounts.update(
|
bestPlayerCounts.update(
|
||||||
match.winner!,
|
match.winner!,
|
||||||
(value) => value + 1,
|
(value) => value + 1,
|
||||||
|
|||||||
@@ -42,12 +42,7 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
2,
|
2,
|
||||||
Match(
|
Match(
|
||||||
name: 'Skeleton Match',
|
name: 'Skeleton Match',
|
||||||
game: Game(
|
game: Game(name: '', ruleset: Ruleset.singleWinner, description: '', color: GameColor.blue, icon: ''),
|
||||||
name: '',
|
|
||||||
ruleset: Ruleset.singleWinner,
|
|
||||||
description: '',
|
|
||||||
color: GameColor.blue,
|
|
||||||
),
|
|
||||||
group: Group(
|
group: Group(
|
||||||
name: 'Skeleton Group',
|
name: 'Skeleton Group',
|
||||||
description: '',
|
description: '',
|
||||||
@@ -109,9 +104,7 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
if (recentMatches.isNotEmpty)
|
if (recentMatches.isNotEmpty)
|
||||||
for (Match match in recentMatches)
|
for (Match match in recentMatches)
|
||||||
Padding(
|
Padding(
|
||||||
padding: const EdgeInsets.symmetric(
|
padding: const EdgeInsets.symmetric(vertical: 6.0),
|
||||||
vertical: 6.0,
|
|
||||||
),
|
|
||||||
child: MatchTile(
|
child: MatchTile(
|
||||||
compact: true,
|
compact: true,
|
||||||
width: constraints.maxWidth * 0.9,
|
width: constraints.maxWidth * 0.9,
|
||||||
@@ -120,8 +113,7 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
await Navigator.of(context).push(
|
await Navigator.of(context).push(
|
||||||
adaptivePageRoute(
|
adaptivePageRoute(
|
||||||
fullscreenDialog: true,
|
fullscreenDialog: true,
|
||||||
builder: (context) =>
|
builder: (context) => MatchResultView(match: match),
|
||||||
MatchResultView(match: match),
|
|
||||||
),
|
),
|
||||||
);
|
);
|
||||||
await updatedWinnerInRecentMatches(match.id);
|
await updatedWinnerInRecentMatches(match.id);
|
||||||
@@ -129,10 +121,7 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
),
|
),
|
||||||
)
|
)
|
||||||
else
|
else
|
||||||
Center(
|
Center(heightFactor: 5, child: Text(loc.no_recent_matches_available)),
|
||||||
heightFactor: 5,
|
|
||||||
child: Text(loc.no_recent_matches_available),
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
@@ -148,40 +137,22 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
children: [
|
children: [
|
||||||
QuickCreateButton(
|
QuickCreateButton(text: 'Category 1', onPressed: () {}),
|
||||||
text: 'Category 1',
|
QuickCreateButton(text: 'Category 2', onPressed: () {}),
|
||||||
onPressed: () {},
|
|
||||||
),
|
|
||||||
QuickCreateButton(
|
|
||||||
text: 'Category 2',
|
|
||||||
onPressed: () {},
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
children: [
|
children: [
|
||||||
QuickCreateButton(
|
QuickCreateButton(text: 'Category 3', onPressed: () {}),
|
||||||
text: 'Category 3',
|
QuickCreateButton(text: 'Category 4', onPressed: () {}),
|
||||||
onPressed: () {},
|
|
||||||
),
|
|
||||||
QuickCreateButton(
|
|
||||||
text: 'Category 4',
|
|
||||||
onPressed: () {},
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
Row(
|
Row(
|
||||||
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
|
||||||
children: [
|
children: [
|
||||||
QuickCreateButton(
|
QuickCreateButton(text: 'Category 5', onPressed: () {}),
|
||||||
text: 'Category 5',
|
QuickCreateButton(text: 'Category 6', onPressed: () {}),
|
||||||
onPressed: () {},
|
|
||||||
),
|
|
||||||
QuickCreateButton(
|
|
||||||
text: 'Category 6',
|
|
||||||
onPressed: () {},
|
|
||||||
),
|
|
||||||
],
|
],
|
||||||
),
|
),
|
||||||
],
|
],
|
||||||
@@ -210,11 +181,9 @@ class _HomeViewState extends State<HomeView> {
|
|||||||
matchCount = results[0] as int;
|
matchCount = results[0] as int;
|
||||||
groupCount = results[1] as int;
|
groupCount = results[1] as int;
|
||||||
loadedRecentMatches = results[2] as List<Match>;
|
loadedRecentMatches = results[2] as List<Match>;
|
||||||
recentMatches =
|
recentMatches = (loadedRecentMatches..sort((a, b) => b.createdAt.compareTo(a.createdAt)))
|
||||||
(loadedRecentMatches
|
.take(2)
|
||||||
..sort((a, b) => b.createdAt.compareTo(a.createdAt)))
|
.toList();
|
||||||
.take(2)
|
|
||||||
.toList();
|
|
||||||
if (mounted) {
|
if (mounted) {
|
||||||
setState(() {
|
setState(() {
|
||||||
isLoading = false;
|
isLoading = false;
|
||||||
|
|||||||
@@ -1,33 +1,26 @@
|
|||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:tallee/core/adaptive_page_route.dart';
|
|
||||||
import 'package:tallee/core/common.dart';
|
import 'package:tallee/core/common.dart';
|
||||||
import 'package:tallee/core/custom_theme.dart';
|
import 'package:tallee/core/custom_theme.dart';
|
||||||
import 'package:tallee/data/dto/game.dart';
|
import 'package:tallee/core/enums.dart';
|
||||||
import 'package:tallee/l10n/generated/app_localizations.dart';
|
import 'package:tallee/l10n/generated/app_localizations.dart';
|
||||||
import 'package:tallee/presentation/views/main_menu/match_view/create_match/game_view/create_game_view.dart';
|
|
||||||
import 'package:tallee/presentation/widgets/text_input/custom_search_bar.dart';
|
import 'package:tallee/presentation/widgets/text_input/custom_search_bar.dart';
|
||||||
import 'package:tallee/presentation/widgets/tiles/title_description_list_tile.dart';
|
import 'package:tallee/presentation/widgets/tiles/title_description_list_tile.dart';
|
||||||
|
|
||||||
class ChooseGameView extends StatefulWidget {
|
class ChooseGameView extends StatefulWidget {
|
||||||
/// A view that allows the user to choose a game from a list of available games
|
/// A view that allows the user to choose a game from a list of available games
|
||||||
/// - [games]: The list of available games
|
/// - [games]: A list of tuples containing the game name, description and ruleset
|
||||||
/// - [initialSelectedGameId]: The id of the initially selected game
|
/// - [initialGameIndex]: The index of the initially selected game
|
||||||
/// - [onGamesUpdated]: Optional callback invoked when the games are updated
|
|
||||||
const ChooseGameView({
|
const ChooseGameView({
|
||||||
super.key,
|
super.key,
|
||||||
required this.games,
|
required this.games,
|
||||||
required this.initialSelectedGameId,
|
required this.initialGameIndex,
|
||||||
this.onGamesUpdated,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/// A list of tuples containing the game name, description and ruleset
|
/// A list of tuples containing the game name, description and ruleset
|
||||||
final List<Game> games;
|
final List<(String, String, Ruleset)> games;
|
||||||
|
|
||||||
/// The index of the initially selected game
|
/// The index of the initially selected game
|
||||||
final String initialSelectedGameId;
|
final int initialGameIndex;
|
||||||
|
|
||||||
/// Optional callback invoked when the games are updated
|
|
||||||
final VoidCallback? onGamesUpdated;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<ChooseGameView> createState() => _ChooseGameViewState();
|
State<ChooseGameView> createState() => _ChooseGameViewState();
|
||||||
@@ -37,18 +30,12 @@ class _ChooseGameViewState extends State<ChooseGameView> {
|
|||||||
/// Controller for the search bar
|
/// Controller for the search bar
|
||||||
final TextEditingController searchBarController = TextEditingController();
|
final TextEditingController searchBarController = TextEditingController();
|
||||||
|
|
||||||
/// Currently selected game id
|
/// Currently selected game index
|
||||||
late String selectedGameId;
|
late int selectedGameIndex;
|
||||||
|
|
||||||
/// Games filtered according to the current search query
|
|
||||||
late List<Game> filteredGames;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
void initState() {
|
void initState() {
|
||||||
selectedGameId = widget.initialSelectedGameId;
|
selectedGameIndex = widget.initialGameIndex;
|
||||||
|
|
||||||
// Start with all games visible
|
|
||||||
filteredGames = List<Game>.from(widget.games);
|
|
||||||
super.initState();
|
super.initState();
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -62,32 +49,9 @@ class _ChooseGameViewState extends State<ChooseGameView> {
|
|||||||
leading: IconButton(
|
leading: IconButton(
|
||||||
icon: const Icon(Icons.arrow_back_ios),
|
icon: const Icon(Icons.arrow_back_ios),
|
||||||
onPressed: () {
|
onPressed: () {
|
||||||
Navigator.of(context).pop(selectedGameId);
|
Navigator.of(context).pop(selectedGameIndex);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
actions: [
|
|
||||||
IconButton(
|
|
||||||
icon: const Icon(Icons.add),
|
|
||||||
onPressed: () async {
|
|
||||||
final result = await Navigator.push(
|
|
||||||
context,
|
|
||||||
adaptivePageRoute(
|
|
||||||
builder: (context) => CreateGameView(
|
|
||||||
onGameChanged: () {
|
|
||||||
widget.onGamesUpdated?.call();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
if (result != null && result.game != null) {
|
|
||||||
setState(() {
|
|
||||||
widget.games.insert(0, result.game);
|
|
||||||
});
|
|
||||||
_refreshFromSource();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
title: Text(loc.choose_game),
|
title: Text(loc.choose_game),
|
||||||
),
|
),
|
||||||
body: PopScope(
|
body: PopScope(
|
||||||
@@ -98,7 +62,7 @@ class _ChooseGameViewState extends State<ChooseGameView> {
|
|||||||
if (didPop) {
|
if (didPop) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
Navigator.of(context).pop(selectedGameId);
|
Navigator.of(context).pop(selectedGameIndex);
|
||||||
},
|
},
|
||||||
child: Column(
|
child: Column(
|
||||||
children: [
|
children: [
|
||||||
@@ -107,63 +71,30 @@ class _ChooseGameViewState extends State<ChooseGameView> {
|
|||||||
child: CustomSearchBar(
|
child: CustomSearchBar(
|
||||||
controller: searchBarController,
|
controller: searchBarController,
|
||||||
hintText: loc.game_name,
|
hintText: loc.game_name,
|
||||||
onChanged: (value) {
|
|
||||||
_applySearchFilter(value);
|
|
||||||
},
|
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
const SizedBox(height: 5),
|
const SizedBox(height: 5),
|
||||||
Expanded(
|
Expanded(
|
||||||
child: ListView.builder(
|
child: ListView.builder(
|
||||||
itemCount: filteredGames.length,
|
itemCount: widget.games.length,
|
||||||
itemBuilder: (BuildContext context, int index) {
|
itemBuilder: (BuildContext context, int index) {
|
||||||
final game = filteredGames[index];
|
|
||||||
return TitleDescriptionListTile(
|
return TitleDescriptionListTile(
|
||||||
title: game.name,
|
title: widget.games[index].$1,
|
||||||
description: game.description,
|
description: widget.games[index].$2,
|
||||||
badgeText: translateRulesetToString(game.ruleset, context),
|
badgeText: translateRulesetToString(
|
||||||
isHighlighted: selectedGameId == game.id,
|
widget.games[index].$3,
|
||||||
onTap: () async {
|
context,
|
||||||
|
),
|
||||||
|
isHighlighted: selectedGameIndex == index,
|
||||||
|
onPressed: () async {
|
||||||
setState(() {
|
setState(() {
|
||||||
if (selectedGameId == game.id) {
|
if (selectedGameIndex == index) {
|
||||||
selectedGameId = '';
|
selectedGameIndex = -1;
|
||||||
} else {
|
} else {
|
||||||
selectedGameId = game.id;
|
selectedGameIndex = index;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
onLongPress: () async {
|
|
||||||
final result = await Navigator.push(
|
|
||||||
context,
|
|
||||||
adaptivePageRoute(
|
|
||||||
builder: (context) => CreateGameView(
|
|
||||||
gameToEdit: game,
|
|
||||||
onGameChanged: () {
|
|
||||||
widget.onGamesUpdated?.call();
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
if (result != null && result.game != null) {
|
|
||||||
// Find the index in the original list to mutate
|
|
||||||
final originalIndex = widget.games.indexWhere(
|
|
||||||
(g) => g.id == game.id,
|
|
||||||
);
|
|
||||||
if (originalIndex == -1) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (result.delete) {
|
|
||||||
setState(() {
|
|
||||||
widget.games.removeAt(originalIndex);
|
|
||||||
});
|
|
||||||
} else {
|
|
||||||
setState(() {
|
|
||||||
widget.games[originalIndex] = result.game;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
_refreshFromSource();
|
|
||||||
}
|
|
||||||
},
|
|
||||||
);
|
);
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
@@ -173,28 +104,4 @@ class _ChooseGameViewState extends State<ChooseGameView> {
|
|||||||
),
|
),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Applies the search filter to the games list based on [query].
|
|
||||||
void _applySearchFilter(String query) {
|
|
||||||
final q = query.toLowerCase().trim();
|
|
||||||
if (q.isEmpty) {
|
|
||||||
setState(() {
|
|
||||||
filteredGames = List<Game>.from(widget.games);
|
|
||||||
});
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
setState(() {
|
|
||||||
filteredGames = widget.games.where((game) {
|
|
||||||
final name = game.name.toLowerCase();
|
|
||||||
final description = game.description.toLowerCase();
|
|
||||||
return name.contains(q) || description.contains(q);
|
|
||||||
}).toList();
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Re-applies the current filter after the underlying games list changed.
|
|
||||||
void _refreshFromSource() {
|
|
||||||
_applySearchFilter(searchBarController.text);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -18,13 +18,9 @@ import 'package:tallee/presentation/widgets/player_selection.dart';
|
|||||||
import 'package:tallee/presentation/widgets/text_input/text_input_field.dart';
|
import 'package:tallee/presentation/widgets/text_input/text_input_field.dart';
|
||||||
import 'package:tallee/presentation/widgets/tiles/choose_tile.dart';
|
import 'package:tallee/presentation/widgets/tiles/choose_tile.dart';
|
||||||
|
|
||||||
/// A stateful widget for creating or editing a match.
|
|
||||||
class CreateMatchView extends StatefulWidget {
|
class CreateMatchView extends StatefulWidget {
|
||||||
/// Constructor for `CreateMatchView`.
|
/// A view that allows creating a new match
|
||||||
///
|
/// [onWinnerChanged]: Optional callback invoked when the winner is changed
|
||||||
/// [onWinnerChanged] is an optional callback invoked when the winner is changed.
|
|
||||||
/// [matchToEdit] is an optional match to prefill the fields.
|
|
||||||
/// [onMatchUpdated] is an optional callback invoked when the match is updated.
|
|
||||||
const CreateMatchView({
|
const CreateMatchView({
|
||||||
super.key,
|
super.key,
|
||||||
this.onWinnerChanged,
|
this.onWinnerChanged,
|
||||||
@@ -32,49 +28,45 @@ class CreateMatchView extends StatefulWidget {
|
|||||||
this.onMatchUpdated,
|
this.onMatchUpdated,
|
||||||
});
|
});
|
||||||
|
|
||||||
/// Optional callback invoked when the winner is changed.
|
/// Optional callback invoked when the winner is changed
|
||||||
final VoidCallback? onWinnerChanged;
|
final VoidCallback? onWinnerChanged;
|
||||||
|
|
||||||
/// Optional callback invoked when the match is updated.
|
/// Optional callback invoked when the match is updated
|
||||||
final void Function(Match)? onMatchUpdated;
|
final void Function(Match)? onMatchUpdated;
|
||||||
|
|
||||||
/// An optional match to prefill the fields.
|
/// An optional match to prefill the fields
|
||||||
final Match? matchToEdit;
|
final Match? matchToEdit;
|
||||||
|
|
||||||
@override
|
@override
|
||||||
State<CreateMatchView> createState() => _CreateMatchViewState();
|
State<CreateMatchView> createState() => _CreateMatchViewState();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// The state class for `CreateMatchView`, managing the UI and logic for creating or editing a match.
|
|
||||||
class _CreateMatchViewState extends State<CreateMatchView> {
|
class _CreateMatchViewState extends State<CreateMatchView> {
|
||||||
/// The database instance for accessing match data.
|
|
||||||
late final AppDatabase db;
|
late final AppDatabase db;
|
||||||
|
|
||||||
/// Controller for the match name input field.
|
/// Controller for the match name input field
|
||||||
final TextEditingController _matchNameController = TextEditingController();
|
final TextEditingController _matchNameController = TextEditingController();
|
||||||
|
|
||||||
/// Hint text for the match name input field.
|
/// Hint text for the match name input field
|
||||||
String? hintText;
|
String? hintText;
|
||||||
|
|
||||||
/// List of all games from the database.
|
/// List of all groups from the database
|
||||||
List<Game> gamesList = [];
|
|
||||||
|
|
||||||
/// List of all groups from the database.
|
|
||||||
List<Group> groupsList = [];
|
List<Group> groupsList = [];
|
||||||
|
|
||||||
/// List of all players from the database.
|
/// List of all players from the database
|
||||||
List<Player> playerList = [];
|
List<Player> playerList = [];
|
||||||
|
|
||||||
/// The currently selected group.
|
/// The currently selected group
|
||||||
Group? selectedGroup;
|
Group? selectedGroup;
|
||||||
|
|
||||||
/// The currently selected game.
|
/// The index of the currently selected game in [games] to mark it in
|
||||||
Game? selectedGame;
|
/// the [ChooseGameView]
|
||||||
|
int selectedGameIndex = -1;
|
||||||
|
|
||||||
/// The currently selected players.
|
/// The currently selected players
|
||||||
List<Player> selectedPlayers = [];
|
List<Player> selectedPlayers = [];
|
||||||
|
|
||||||
/// GlobalKey for ScaffoldMessenger to show snackbars.
|
/// GlobalKey for ScaffoldMessenger to show snackbars
|
||||||
final _scaffoldMessengerKey = GlobalKey<ScaffoldMessengerState>();
|
final _scaffoldMessengerKey = GlobalKey<ScaffoldMessengerState>();
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -86,18 +78,14 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
|
|
||||||
db = Provider.of<AppDatabase>(context, listen: false);
|
db = Provider.of<AppDatabase>(context, listen: false);
|
||||||
|
|
||||||
// Load games, groups, and players from the database.
|
|
||||||
Future.wait([
|
Future.wait([
|
||||||
db.gameDao.getAllGames(),
|
|
||||||
db.groupDao.getAllGroups(),
|
db.groupDao.getAllGroups(),
|
||||||
db.playerDao.getAllPlayers(),
|
db.playerDao.getAllPlayers(),
|
||||||
]).then((result) async {
|
]).then((result) async {
|
||||||
gamesList = result[0] as List<Game>;
|
groupsList = result[0] as List<Group>;
|
||||||
gamesList.sort((a, b) => b.createdAt.compareTo(a.createdAt));
|
playerList = result[1] as List<Player>;
|
||||||
groupsList = result[1] as List<Group>;
|
|
||||||
playerList = result[2] as List<Player>;
|
|
||||||
|
|
||||||
// If a match is provided, prefill the fields.
|
// If a match is provided, prefill the fields
|
||||||
if (widget.matchToEdit != null) {
|
if (widget.matchToEdit != null) {
|
||||||
prefillMatchDetails();
|
prefillMatchDetails();
|
||||||
}
|
}
|
||||||
@@ -117,6 +105,11 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
hintText ??= loc.match_name;
|
hintText ??= loc.match_name;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
List<(String, String, Ruleset)> games = [
|
||||||
|
('Example Game 1', 'This is a description', Ruleset.lowestScore),
|
||||||
|
('Example Game 2', '', Ruleset.singleWinner),
|
||||||
|
];
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
final loc = AppLocalizations.of(context);
|
final loc = AppLocalizations.of(context);
|
||||||
@@ -137,7 +130,6 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
child: Column(
|
child: Column(
|
||||||
mainAxisAlignment: MainAxisAlignment.start,
|
mainAxisAlignment: MainAxisAlignment.start,
|
||||||
children: [
|
children: [
|
||||||
// Match name input field.
|
|
||||||
Container(
|
Container(
|
||||||
margin: CustomTheme.tileMargin,
|
margin: CustomTheme.tileMargin,
|
||||||
child: TextInputField(
|
child: TextInputField(
|
||||||
@@ -146,48 +138,38 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
maxLength: Constants.MAX_MATCH_NAME_LENGTH,
|
maxLength: Constants.MAX_MATCH_NAME_LENGTH,
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
// Game selection tile.
|
|
||||||
ChooseTile(
|
ChooseTile(
|
||||||
title: loc.game,
|
title: loc.game,
|
||||||
trailingText: selectedGame == null
|
trailingText: selectedGameIndex == -1
|
||||||
? loc.none
|
? loc.none
|
||||||
: selectedGame!.name,
|
: games[selectedGameIndex].$1,
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
final String? selectedGameId = await Navigator.of(context)
|
selectedGameIndex = await Navigator.of(context).push(
|
||||||
.push(
|
adaptivePageRoute(
|
||||||
adaptivePageRoute(
|
builder: (context) => ChooseGameView(
|
||||||
builder: (context) => ChooseGameView(
|
games: games,
|
||||||
games: gamesList,
|
initialGameIndex: selectedGameIndex,
|
||||||
initialSelectedGameId: selectedGame?.id ?? '',
|
),
|
||||||
onGamesUpdated: loadGames,
|
),
|
||||||
),
|
);
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
try {
|
|
||||||
selectedGame = gamesList.firstWhere(
|
|
||||||
(g) => g.id == selectedGameId,
|
|
||||||
);
|
|
||||||
} catch (_) {
|
|
||||||
selectedGame = null;
|
|
||||||
}
|
|
||||||
|
|
||||||
setState(() {
|
setState(() {
|
||||||
if (selectedGame != null) {
|
if (selectedGameIndex != -1) {
|
||||||
hintText = selectedGame!.name;
|
hintText = games[selectedGameIndex].$1;
|
||||||
} else {
|
} else {
|
||||||
hintText = loc.match_name;
|
hintText = loc.match_name;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
// Group selection tile.
|
|
||||||
ChooseTile(
|
ChooseTile(
|
||||||
title: loc.group,
|
title: loc.group,
|
||||||
trailingText: selectedGroup == null
|
trailingText: selectedGroup == null
|
||||||
? loc.none_group
|
? loc.none_group
|
||||||
: selectedGroup!.name,
|
: selectedGroup!.name,
|
||||||
onPressed: () async {
|
onPressed: () async {
|
||||||
|
// Remove all players from the previously selected group from
|
||||||
|
// the selected players list, in case the user deselects the
|
||||||
|
// group or selects a different group.
|
||||||
selectedPlayers.removeWhere(
|
selectedPlayers.removeWhere(
|
||||||
(player) =>
|
(player) =>
|
||||||
selectedGroup?.members.any(
|
selectedGroup?.members.any(
|
||||||
@@ -214,7 +196,6 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
});
|
});
|
||||||
},
|
},
|
||||||
),
|
),
|
||||||
// Player selection widget.
|
|
||||||
Expanded(
|
Expanded(
|
||||||
child: PlayerSelection(
|
child: PlayerSelection(
|
||||||
key: ValueKey(selectedGroup?.id ?? 'no_group'),
|
key: ValueKey(selectedGroup?.id ?? 'no_group'),
|
||||||
@@ -227,7 +208,6 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
},
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
// Create or save button.
|
|
||||||
CustomWidthButton(
|
CustomWidthButton(
|
||||||
text: buttonText,
|
text: buttonText,
|
||||||
sizeRelativeToWidth: 0.95,
|
sizeRelativeToWidth: 0.95,
|
||||||
@@ -249,16 +229,16 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
///
|
///
|
||||||
/// Returns `true` if:
|
/// Returns `true` if:
|
||||||
/// - A ruleset is selected AND
|
/// - A ruleset is selected AND
|
||||||
/// - Either a group is selected OR at least 2 players are selected.
|
/// - Either a group is selected OR at least 2 players are selected
|
||||||
bool _enableCreateGameButton() {
|
bool _enableCreateGameButton() {
|
||||||
return (selectedGroup != null ||
|
return (selectedGroup != null ||
|
||||||
(selectedPlayers.length > 1) && selectedGame != null);
|
(selectedPlayers.length > 1) && selectedGameIndex != -1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Handles navigation when the create or save button is pressed.
|
// If a match was provided to the view, it updates the match in the database
|
||||||
///
|
// and navigates back to the previous screen.
|
||||||
/// If a match is being edited, updates the match in the database.
|
// If no match was provided, it creates a new match in the database and
|
||||||
/// Otherwise, creates a new match and navigates to the MatchResultView.
|
// navigates to the MatchResultView for the newly created match.
|
||||||
void buttonNavigation(BuildContext context) async {
|
void buttonNavigation(BuildContext context) async {
|
||||||
if (widget.matchToEdit != null) {
|
if (widget.matchToEdit != null) {
|
||||||
await updateMatch();
|
await updateMatch();
|
||||||
@@ -283,8 +263,12 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Updates the existing match in the database.
|
/// Updates attributes of the existing match in the database based on the
|
||||||
|
/// changes made in the edit view.
|
||||||
Future<void> updateMatch() async {
|
Future<void> updateMatch() async {
|
||||||
|
//TODO: Remove when Games implemented
|
||||||
|
final tempGame = await getTemporaryGame();
|
||||||
|
|
||||||
final updatedMatch = Match(
|
final updatedMatch = Match(
|
||||||
id: widget.matchToEdit!.id,
|
id: widget.matchToEdit!.id,
|
||||||
name: _matchNameController.text.isEmpty
|
name: _matchNameController.text.isEmpty
|
||||||
@@ -292,7 +276,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
: _matchNameController.text.trim(),
|
: _matchNameController.text.trim(),
|
||||||
group: selectedGroup,
|
group: selectedGroup,
|
||||||
players: selectedPlayers,
|
players: selectedPlayers,
|
||||||
game: selectedGame!,
|
game: tempGame,
|
||||||
winner: widget.matchToEdit!.winner,
|
winner: widget.matchToEdit!.winner,
|
||||||
createdAt: widget.matchToEdit!.createdAt,
|
createdAt: widget.matchToEdit!.createdAt,
|
||||||
endedAt: widget.matchToEdit!.endedAt,
|
endedAt: widget.matchToEdit!.endedAt,
|
||||||
@@ -313,13 +297,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (widget.matchToEdit!.game.id != updatedMatch.game.id) {
|
// Add players who are in updatedMatch but not in the original match
|
||||||
await db.matchDao.updateMatchGame(
|
|
||||||
matchId: widget.matchToEdit!.id,
|
|
||||||
gameId: updatedMatch.game.id,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
for (var player in updatedMatch.players) {
|
for (var player in updatedMatch.players) {
|
||||||
if (!widget.matchToEdit!.players.any((p) => p.id == player.id)) {
|
if (!widget.matchToEdit!.players.any((p) => p.id == player.id)) {
|
||||||
await db.playerMatchDao.addPlayerToMatch(
|
await db.playerMatchDao.addPlayerToMatch(
|
||||||
@@ -329,6 +307,7 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Remove players who are in the original match but not in updatedMatch
|
||||||
for (var player in widget.matchToEdit!.players) {
|
for (var player in widget.matchToEdit!.players) {
|
||||||
if (!updatedMatch.players.any((p) => p.id == player.id)) {
|
if (!updatedMatch.players.any((p) => p.id == player.id)) {
|
||||||
await db.playerMatchDao.removePlayerFromMatch(
|
await db.playerMatchDao.removePlayerFromMatch(
|
||||||
@@ -344,8 +323,11 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
widget.onMatchUpdated?.call(updatedMatch);
|
widget.onMatchUpdated?.call(updatedMatch);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Creates a new match and adds it to the database.
|
// Creates a new match and adds it to the database.
|
||||||
|
// Returns the created match.
|
||||||
Future<Match> createMatch() async {
|
Future<Match> createMatch() async {
|
||||||
|
final tempGame = await getTemporaryGame();
|
||||||
|
|
||||||
Match match = Match(
|
Match match = Match(
|
||||||
name: _matchNameController.text.isEmpty
|
name: _matchNameController.text.isEmpty
|
||||||
? (hintText ?? '')
|
? (hintText ?? '')
|
||||||
@@ -353,25 +335,43 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
createdAt: DateTime.now(),
|
createdAt: DateTime.now(),
|
||||||
group: selectedGroup,
|
group: selectedGroup,
|
||||||
players: selectedPlayers,
|
players: selectedPlayers,
|
||||||
game: selectedGame!,
|
game: tempGame,
|
||||||
);
|
);
|
||||||
await db.matchDao.addMatch(match: match);
|
await db.matchDao.addMatch(match: match);
|
||||||
return match;
|
return match;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Prefills the input fields if a match was provided to the view.
|
// TODO: Remove when games fully implemented
|
||||||
|
Future<Game> getTemporaryGame() async {
|
||||||
|
Game? game;
|
||||||
|
|
||||||
|
final selectedGame = games[selectedGameIndex];
|
||||||
|
game = Game(
|
||||||
|
name: selectedGame.$1,
|
||||||
|
description: selectedGame.$2,
|
||||||
|
ruleset: selectedGame.$3,
|
||||||
|
color: GameColor.blue,
|
||||||
|
icon: '',
|
||||||
|
);
|
||||||
|
|
||||||
|
await db.gameDao.addGame(game: game);
|
||||||
|
return game;
|
||||||
|
}
|
||||||
|
|
||||||
|
// If a match was provided to the view, this method prefills the input fields
|
||||||
void prefillMatchDetails() {
|
void prefillMatchDetails() {
|
||||||
final match = widget.matchToEdit!;
|
final match = widget.matchToEdit!;
|
||||||
_matchNameController.text = match.name;
|
_matchNameController.text = match.name;
|
||||||
selectedPlayers = match.players;
|
selectedPlayers = match.players;
|
||||||
selectedGame = match.game;
|
selectedGameIndex = 0;
|
||||||
|
|
||||||
if (match.group != null) {
|
if (match.group != null) {
|
||||||
selectedGroup = match.group;
|
selectedGroup = match.group;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Removes the group if none of its members are in the selected players list.
|
// If none of the selected players are from the currently selected group,
|
||||||
|
// the group is also deselected.
|
||||||
Future<void> removeGroupWhenNoMemberLeft() async {
|
Future<void> removeGroupWhenNoMemberLeft() async {
|
||||||
if (selectedGroup == null) return;
|
if (selectedGroup == null) return;
|
||||||
|
|
||||||
@@ -384,13 +384,4 @@ class _CreateMatchViewState extends State<CreateMatchView> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Loads all games from the database and updates the state.
|
|
||||||
Future<void> loadGames() async {
|
|
||||||
final result = await db.gameDao.getAllGames();
|
|
||||||
result.sort((a, b) => b.createdAt.compareTo(a.createdAt));
|
|
||||||
setState(() {
|
|
||||||
gamesList = result;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,78 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:tallee/core/common.dart';
|
|
||||||
import 'package:tallee/core/custom_theme.dart';
|
|
||||||
import 'package:tallee/core/enums.dart';
|
|
||||||
import 'package:tallee/l10n/generated/app_localizations.dart';
|
|
||||||
import 'package:tallee/presentation/widgets/tiles/title_description_list_tile.dart';
|
|
||||||
|
|
||||||
class ChooseColorView extends StatefulWidget {
|
|
||||||
/// A view that allows the user to choose a color from a list of available game colors
|
|
||||||
/// - [initialColor]: The initially selected color
|
|
||||||
const ChooseColorView({super.key, this.initialColor});
|
|
||||||
|
|
||||||
/// The initially selected color
|
|
||||||
final GameColor? initialColor;
|
|
||||||
|
|
||||||
@override
|
|
||||||
State<ChooseColorView> createState() => _ChooseColorViewState();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _ChooseColorViewState extends State<ChooseColorView> {
|
|
||||||
/// Currently selected color
|
|
||||||
GameColor? selectedColor;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
selectedColor = widget.initialColor;
|
|
||||||
super.initState();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
final loc = AppLocalizations.of(context);
|
|
||||||
const colors = GameColor.values;
|
|
||||||
|
|
||||||
return Scaffold(
|
|
||||||
backgroundColor: CustomTheme.backgroundColor,
|
|
||||||
appBar: AppBar(
|
|
||||||
leading: IconButton(
|
|
||||||
icon: const Icon(Icons.arrow_back_ios),
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.of(context).pop(selectedColor);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
title: Text(loc.choose_color),
|
|
||||||
),
|
|
||||||
body: PopScope(
|
|
||||||
canPop: false,
|
|
||||||
onPopInvokedWithResult: (bool didPop, Object? result) {
|
|
||||||
if (didPop) return;
|
|
||||||
Navigator.of(context).pop(selectedColor);
|
|
||||||
},
|
|
||||||
child: ListView.builder(
|
|
||||||
padding: const EdgeInsets.only(bottom: 85),
|
|
||||||
itemCount: colors.length,
|
|
||||||
itemBuilder: (BuildContext context, int index) {
|
|
||||||
final color = colors[index];
|
|
||||||
return TitleDescriptionListTile(
|
|
||||||
onTap: () {
|
|
||||||
setState(() {
|
|
||||||
if (selectedColor == color) {
|
|
||||||
selectedColor = null;
|
|
||||||
} else {
|
|
||||||
selectedColor = color;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
title: translateGameColorToString(color, context),
|
|
||||||
description: '',
|
|
||||||
isHighlighted: selectedColor == color,
|
|
||||||
badgeText: ' ', //Breite für Color Badge
|
|
||||||
badgeColor: getColorFromGameColor(color),
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,99 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:tallee/core/common.dart';
|
|
||||||
import 'package:tallee/core/custom_theme.dart';
|
|
||||||
import 'package:tallee/core/enums.dart';
|
|
||||||
import 'package:tallee/l10n/generated/app_localizations.dart';
|
|
||||||
import 'package:tallee/presentation/widgets/tiles/title_description_list_tile.dart';
|
|
||||||
|
|
||||||
class ChooseRulesetView extends StatefulWidget {
|
|
||||||
/// A view that allows the user to choose a ruleset from a list of available rulesets
|
|
||||||
/// - [rulesets]: A list of tuples containing the ruleset and its description
|
|
||||||
/// - [initialRulesetIndex]: The index of the initially selected ruleset
|
|
||||||
const ChooseRulesetView({
|
|
||||||
super.key,
|
|
||||||
required this.rulesets,
|
|
||||||
required this.initialRulesetIndex,
|
|
||||||
});
|
|
||||||
|
|
||||||
/// A list of tuples containing the ruleset and its description
|
|
||||||
final List<(Ruleset, String)> rulesets;
|
|
||||||
|
|
||||||
/// The index of the initially selected ruleset
|
|
||||||
final int initialRulesetIndex;
|
|
||||||
@override
|
|
||||||
State<ChooseRulesetView> createState() => _ChooseRulesetViewState();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _ChooseRulesetViewState extends State<ChooseRulesetView> {
|
|
||||||
/// Currently selected ruleset index
|
|
||||||
late int selectedRulesetIndex;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
selectedRulesetIndex = widget.initialRulesetIndex;
|
|
||||||
super.initState();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
final loc = AppLocalizations.of(context);
|
|
||||||
return DefaultTabController(
|
|
||||||
length: 2,
|
|
||||||
initialIndex: 0,
|
|
||||||
child: Scaffold(
|
|
||||||
backgroundColor: CustomTheme.backgroundColor,
|
|
||||||
appBar: AppBar(
|
|
||||||
leading: IconButton(
|
|
||||||
icon: const Icon(Icons.arrow_back_ios),
|
|
||||||
onPressed: () {
|
|
||||||
Navigator.of(context).pop(
|
|
||||||
selectedRulesetIndex == -1
|
|
||||||
? null
|
|
||||||
: widget.rulesets[selectedRulesetIndex].$1,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
title: Text(loc.choose_ruleset),
|
|
||||||
),
|
|
||||||
body: PopScope(
|
|
||||||
// This fixes that the Android Back Gesture didn't return the
|
|
||||||
// selectedRulesetIndex and therefore the selected Ruleset wasn't saved
|
|
||||||
canPop: false,
|
|
||||||
onPopInvokedWithResult: (bool didPop, Object? result) {
|
|
||||||
if (didPop) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Navigator.of(context).pop(
|
|
||||||
selectedRulesetIndex == -1
|
|
||||||
? null
|
|
||||||
: widget.rulesets[selectedRulesetIndex].$1,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
child: ListView.builder(
|
|
||||||
padding: const EdgeInsets.only(bottom: 85),
|
|
||||||
itemCount: widget.rulesets.length,
|
|
||||||
itemBuilder: (BuildContext context, int index) {
|
|
||||||
return TitleDescriptionListTile(
|
|
||||||
onTap: () async {
|
|
||||||
setState(() {
|
|
||||||
if (selectedRulesetIndex == index) {
|
|
||||||
selectedRulesetIndex = -1;
|
|
||||||
} else {
|
|
||||||
selectedRulesetIndex = index;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
},
|
|
||||||
title: translateRulesetToString(
|
|
||||||
widget.rulesets[index].$1,
|
|
||||||
context,
|
|
||||||
),
|
|
||||||
description: widget.rulesets[index].$2,
|
|
||||||
isHighlighted: selectedRulesetIndex == index,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,351 +0,0 @@
|
|||||||
import 'package:flutter/material.dart';
|
|
||||||
import 'package:provider/provider.dart';
|
|
||||||
import 'package:tallee/core/adaptive_page_route.dart';
|
|
||||||
import 'package:tallee/core/common.dart';
|
|
||||||
import 'package:tallee/core/constants.dart';
|
|
||||||
import 'package:tallee/core/custom_theme.dart';
|
|
||||||
import 'package:tallee/core/enums.dart';
|
|
||||||
import 'package:tallee/data/db/database.dart';
|
|
||||||
import 'package:tallee/data/dto/game.dart';
|
|
||||||
import 'package:tallee/data/dto/group.dart';
|
|
||||||
import 'package:tallee/l10n/generated/app_localizations.dart';
|
|
||||||
import 'package:tallee/presentation/views/main_menu/match_view/create_match/game_view/choose_color_view.dart';
|
|
||||||
import 'package:tallee/presentation/views/main_menu/match_view/create_match/game_view/choose_ruleset_view.dart';
|
|
||||||
import 'package:tallee/presentation/widgets/buttons/custom_width_button.dart';
|
|
||||||
import 'package:tallee/presentation/widgets/custom_alert_dialog.dart';
|
|
||||||
import 'package:tallee/presentation/widgets/text_input/text_input_field.dart';
|
|
||||||
import 'package:tallee/presentation/widgets/tiles/choose_tile.dart';
|
|
||||||
|
|
||||||
/// A stateful widget for creating or editing a game.
|
|
||||||
/// - [gameToEdit] An optional game to prefill the fields
|
|
||||||
/// - [onGameChanged] Callback to invoke when the game is created or edited
|
|
||||||
class CreateGameView extends StatefulWidget {
|
|
||||||
const CreateGameView({
|
|
||||||
super.key,
|
|
||||||
this.gameToEdit,
|
|
||||||
required this.onGameChanged,
|
|
||||||
});
|
|
||||||
|
|
||||||
/// An optional game to prefill the fields
|
|
||||||
final Game? gameToEdit;
|
|
||||||
|
|
||||||
/// Callback to invoke when the game is created or edited
|
|
||||||
final VoidCallback onGameChanged;
|
|
||||||
|
|
||||||
@override
|
|
||||||
State<CreateGameView> createState() => _CreateGameViewState();
|
|
||||||
}
|
|
||||||
|
|
||||||
class _CreateGameViewState extends State<CreateGameView> {
|
|
||||||
/// GlobalKey for ScaffoldMessenger to show snackbars
|
|
||||||
final _scaffoldMessengerKey = GlobalKey<ScaffoldMessengerState>();
|
|
||||||
|
|
||||||
/// The database instance for accessing game data.
|
|
||||||
late final AppDatabase db;
|
|
||||||
|
|
||||||
/// The currently selected ruleset for the game.
|
|
||||||
Ruleset? selectedRuleset;
|
|
||||||
|
|
||||||
/// The index of the currently selected ruleset.
|
|
||||||
int selectedRulesetIndex = -1;
|
|
||||||
|
|
||||||
/// A list of available rulesets and their localized names.
|
|
||||||
late List<(Ruleset, String)> _rulesets;
|
|
||||||
|
|
||||||
/// The currently selected color for the game.
|
|
||||||
GameColor? selectedColor;
|
|
||||||
|
|
||||||
/// Controller for the game name input field.
|
|
||||||
final _gameNameController = TextEditingController();
|
|
||||||
|
|
||||||
/// Controller for the game description input field.
|
|
||||||
final _descriptionController = TextEditingController();
|
|
||||||
|
|
||||||
/// The ID of the currently selected group.
|
|
||||||
late String selectedGroupId;
|
|
||||||
|
|
||||||
/// A controller for the search bar input field.
|
|
||||||
final TextEditingController controller = TextEditingController();
|
|
||||||
|
|
||||||
/// A list of groups filtered based on the search query.
|
|
||||||
late final List<Group> filteredGroups;
|
|
||||||
|
|
||||||
@override
|
|
||||||
void initState() {
|
|
||||||
super.initState();
|
|
||||||
db = Provider.of<AppDatabase>(context, listen: false);
|
|
||||||
_gameNameController.addListener(() => setState(() {}));
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void didChangeDependencies() {
|
|
||||||
super.didChangeDependencies();
|
|
||||||
_rulesets = [
|
|
||||||
(
|
|
||||||
Ruleset.singleWinner,
|
|
||||||
translateRulesetToString(Ruleset.singleWinner, context),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
Ruleset.singleLoser,
|
|
||||||
translateRulesetToString(Ruleset.singleLoser, context),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
Ruleset.highestScore,
|
|
||||||
translateRulesetToString(Ruleset.highestScore, context),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
Ruleset.lowestScore,
|
|
||||||
translateRulesetToString(Ruleset.lowestScore, context),
|
|
||||||
),
|
|
||||||
(
|
|
||||||
Ruleset.multipleWinners,
|
|
||||||
translateRulesetToString(Ruleset.multipleWinners, context),
|
|
||||||
),
|
|
||||||
];
|
|
||||||
|
|
||||||
if (widget.gameToEdit != null) {
|
|
||||||
_gameNameController.text = widget.gameToEdit!.name;
|
|
||||||
_descriptionController.text = widget.gameToEdit!.description;
|
|
||||||
selectedRuleset = widget.gameToEdit!.ruleset;
|
|
||||||
selectedColor = widget.gameToEdit!.color;
|
|
||||||
|
|
||||||
selectedRulesetIndex = _rulesets.indexWhere(
|
|
||||||
(r) => r.$1 == selectedRuleset,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
void dispose() {
|
|
||||||
_gameNameController.dispose();
|
|
||||||
_descriptionController.dispose();
|
|
||||||
super.dispose();
|
|
||||||
}
|
|
||||||
|
|
||||||
@override
|
|
||||||
Widget build(BuildContext context) {
|
|
||||||
var loc = AppLocalizations.of(context);
|
|
||||||
final isEditing = widget.gameToEdit != null;
|
|
||||||
|
|
||||||
return ScaffoldMessenger(
|
|
||||||
child: Scaffold(
|
|
||||||
backgroundColor: CustomTheme.backgroundColor,
|
|
||||||
appBar: AppBar(
|
|
||||||
title: Text(isEditing ? loc.edit_game : loc.create_game),
|
|
||||||
actions: widget.gameToEdit == null
|
|
||||||
? []
|
|
||||||
: [
|
|
||||||
IconButton(
|
|
||||||
icon: const Icon(Icons.delete),
|
|
||||||
onPressed: () async {
|
|
||||||
if (widget.gameToEdit != null) {
|
|
||||||
showDialog<bool>(
|
|
||||||
context: context,
|
|
||||||
builder: (context) => CustomAlertDialog(
|
|
||||||
title: loc.delete_game,
|
|
||||||
content: loc.this_cannot_be_undone,
|
|
||||||
actions: [
|
|
||||||
TextButton(
|
|
||||||
onPressed: () =>
|
|
||||||
Navigator.of(context).pop(false),
|
|
||||||
child: Text(loc.cancel),
|
|
||||||
),
|
|
||||||
TextButton(
|
|
||||||
onPressed: () =>
|
|
||||||
Navigator.of(context).pop(true),
|
|
||||||
child: Text(loc.delete),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
).then((confirmed) async {
|
|
||||||
if (confirmed == true && context.mounted) {
|
|
||||||
bool success = await db.gameDao.deleteGame(
|
|
||||||
gameId: widget.gameToEdit!.id,
|
|
||||||
);
|
|
||||||
if (!context.mounted) return;
|
|
||||||
if (success) {
|
|
||||||
widget.onGameChanged.call();
|
|
||||||
Navigator.of(
|
|
||||||
context,
|
|
||||||
).pop((game: widget.gameToEdit, delete: true));
|
|
||||||
} else {
|
|
||||||
if (!mounted) return;
|
|
||||||
showSnackbar(message: loc.error_deleting_game);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
body: SafeArea(
|
|
||||||
child: Column(
|
|
||||||
children: [
|
|
||||||
Container(
|
|
||||||
margin: CustomTheme.tileMargin,
|
|
||||||
child: TextInputField(
|
|
||||||
controller: _gameNameController,
|
|
||||||
maxLength: Constants.MAX_MATCH_NAME_LENGTH,
|
|
||||||
hintText: loc.game_name,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
ChooseTile(
|
|
||||||
title: loc.ruleset,
|
|
||||||
trailingText: selectedRuleset == null
|
|
||||||
? loc.none
|
|
||||||
: translateRulesetToString(selectedRuleset!, context),
|
|
||||||
onPressed: () async {
|
|
||||||
final result = await Navigator.of(context).push<Ruleset?>(
|
|
||||||
adaptivePageRoute(
|
|
||||||
builder: (context) => ChooseRulesetView(
|
|
||||||
rulesets: _rulesets,
|
|
||||||
initialRulesetIndex: selectedRulesetIndex,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
if (mounted) {
|
|
||||||
setState(() {
|
|
||||||
selectedRuleset = result;
|
|
||||||
selectedRulesetIndex = result == null
|
|
||||||
? -1
|
|
||||||
: _rulesets.indexWhere((r) => r.$1 == result);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
ChooseTile(
|
|
||||||
title: loc.color,
|
|
||||||
trailingText: selectedColor == null
|
|
||||||
? loc.none
|
|
||||||
: translateGameColorToString(selectedColor!, context),
|
|
||||||
onPressed: () async {
|
|
||||||
final result = await Navigator.of(context).push<GameColor?>(
|
|
||||||
adaptivePageRoute(
|
|
||||||
builder: (context) =>
|
|
||||||
ChooseColorView(initialColor: selectedColor),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
if (mounted) {
|
|
||||||
setState(() {
|
|
||||||
selectedColor = result;
|
|
||||||
});
|
|
||||||
}
|
|
||||||
},
|
|
||||||
),
|
|
||||||
Container(
|
|
||||||
margin: CustomTheme.tileMargin,
|
|
||||||
child: TextInputField(
|
|
||||||
controller: _descriptionController,
|
|
||||||
hintText: loc.description,
|
|
||||||
minLines: 6,
|
|
||||||
maxLines: 6,
|
|
||||||
maxLength: Constants.MAX_GAME_DESCRIPTION_LENGTH,
|
|
||||||
showCounterText: true,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
const Spacer(),
|
|
||||||
Padding(
|
|
||||||
padding: const EdgeInsets.all(12.0),
|
|
||||||
child: CustomWidthButton(
|
|
||||||
text: isEditing ? loc.edit_game : loc.create_game,
|
|
||||||
sizeRelativeToWidth: 1,
|
|
||||||
buttonType: ButtonType.primary,
|
|
||||||
onPressed:
|
|
||||||
_gameNameController.text.trim().isNotEmpty &&
|
|
||||||
selectedRulesetIndex != -1 &&
|
|
||||||
selectedColor != null
|
|
||||||
? () async {
|
|
||||||
Game newGame = Game(
|
|
||||||
name: _gameNameController.text.trim(),
|
|
||||||
description: _descriptionController.text.trim(),
|
|
||||||
ruleset: selectedRuleset!,
|
|
||||||
color: selectedColor!,
|
|
||||||
);
|
|
||||||
if (isEditing) {
|
|
||||||
await handleGameUpdate(newGame);
|
|
||||||
} else {
|
|
||||||
await handleGameCreation(newGame);
|
|
||||||
}
|
|
||||||
widget.onGameChanged.call();
|
|
||||||
if (context.mounted) {
|
|
||||||
Navigator.of(
|
|
||||||
context,
|
|
||||||
).pop((game: newGame, delete: false));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
: null,
|
|
||||||
),
|
|
||||||
),
|
|
||||||
],
|
|
||||||
),
|
|
||||||
),
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Handles updating an existing game in the database.
|
|
||||||
///
|
|
||||||
/// [newGame] The updated game object.
|
|
||||||
Future<void> handleGameUpdate(Game newGame) async {
|
|
||||||
final oldGame = widget.gameToEdit!;
|
|
||||||
|
|
||||||
if (oldGame.name != newGame.name) {
|
|
||||||
await db.gameDao.updateGameName(
|
|
||||||
gameId: oldGame.id,
|
|
||||||
newName: newGame.name,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (oldGame.description != newGame.description) {
|
|
||||||
await db.gameDao.updateGameDescription(
|
|
||||||
gameId: oldGame.id,
|
|
||||||
newDescription: newGame.description,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (oldGame.ruleset != newGame.ruleset) {
|
|
||||||
await db.gameDao.updateGameRuleset(
|
|
||||||
gameId: oldGame.id,
|
|
||||||
newRuleset: newGame.ruleset,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (oldGame.color != newGame.color) {
|
|
||||||
await db.gameDao.updateGameColor(
|
|
||||||
gameId: oldGame.id,
|
|
||||||
newColor: newGame.color,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
|
|
||||||
if (oldGame.icon != newGame.icon) {
|
|
||||||
await db.gameDao.updateGameIcon(
|
|
||||||
gameId: oldGame.id,
|
|
||||||
newIcon: newGame.icon,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Handles creating a new game in the database.
|
|
||||||
///
|
|
||||||
/// [newGame] The game object to be created.
|
|
||||||
Future<void> handleGameCreation(Game newGame) async {
|
|
||||||
await db.gameDao.addGame(game: newGame);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Displays a snackbar with the given message and optional action.
|
|
||||||
///
|
|
||||||
/// [message] The message to display in the snackbar.
|
|
||||||
void showSnackbar({required String message}) {
|
|
||||||
final messenger = _scaffoldMessengerKey.currentState;
|
|
||||||
if (messenger != null) {
|
|
||||||
messenger.hideCurrentSnackBar();
|
|
||||||
messenger.showSnackBar(
|
|
||||||
SnackBar(
|
|
||||||
content: Text(message, style: const TextStyle(color: Colors.white)),
|
|
||||||
backgroundColor: CustomTheme.boxColor,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -19,7 +19,7 @@ import 'package:tallee/presentation/widgets/tiles/match_tile.dart';
|
|||||||
import 'package:tallee/presentation/widgets/top_centered_message.dart';
|
import 'package:tallee/presentation/widgets/top_centered_message.dart';
|
||||||
|
|
||||||
class MatchView extends StatefulWidget {
|
class MatchView extends StatefulWidget {
|
||||||
/// A view that displays a list of matches.
|
/// A view that displays a list of matches
|
||||||
const MatchView({super.key});
|
const MatchView({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
@@ -27,14 +27,11 @@ class MatchView extends StatefulWidget {
|
|||||||
}
|
}
|
||||||
|
|
||||||
class _MatchViewState extends State<MatchView> {
|
class _MatchViewState extends State<MatchView> {
|
||||||
/// Database instance used to access match data.
|
|
||||||
late final AppDatabase db;
|
late final AppDatabase db;
|
||||||
|
|
||||||
/// Indicates whether matches are currently being loaded.
|
|
||||||
bool isLoading = true;
|
bool isLoading = true;
|
||||||
|
|
||||||
/// Loaded matches from the database,
|
/// Loaded matches from the database,
|
||||||
/// initially filled with skeleton matches.
|
/// initially filled with skeleton matches
|
||||||
List<Match> matches = List.filled(
|
List<Match> matches = List.filled(
|
||||||
4,
|
4,
|
||||||
Match(
|
Match(
|
||||||
@@ -44,6 +41,7 @@ class _MatchViewState extends State<MatchView> {
|
|||||||
ruleset: Ruleset.singleWinner,
|
ruleset: Ruleset.singleWinner,
|
||||||
description: '',
|
description: '',
|
||||||
color: GameColor.blue,
|
color: GameColor.blue,
|
||||||
|
icon: '',
|
||||||
),
|
),
|
||||||
group: Group(
|
group: Group(
|
||||||
name: 'Group name',
|
name: 'Group name',
|
||||||
|
|||||||
@@ -36318,13 +36318,13 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|||||||
SOFTWARE.''',
|
SOFTWARE.''',
|
||||||
);
|
);
|
||||||
|
|
||||||
/// sqlite3_flutter_libs 0.5.41
|
/// sqlite3_flutter_libs 0.5.42
|
||||||
const _sqlite3_flutter_libs = Package(
|
const _sqlite3_flutter_libs = Package(
|
||||||
name: 'sqlite3_flutter_libs',
|
name: 'sqlite3_flutter_libs',
|
||||||
description: 'Flutter plugin to include native sqlite3 libraries with your app',
|
description: 'Flutter plugin to include native sqlite3 libraries with your app',
|
||||||
homepage: 'https://github.com/simolus3/sqlite3.dart/tree/v2/sqlite3_flutter_libs',
|
homepage: 'https://github.com/simolus3/sqlite3.dart/tree/v2/sqlite3_flutter_libs',
|
||||||
authors: [],
|
authors: [],
|
||||||
version: '0.5.41',
|
version: '0.5.42',
|
||||||
spdxIdentifiers: ['MIT'],
|
spdxIdentifiers: ['MIT'],
|
||||||
isMarkdown: false,
|
isMarkdown: false,
|
||||||
isSdk: false,
|
isSdk: false,
|
||||||
@@ -37796,12 +37796,12 @@ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|||||||
SOFTWARE.''',
|
SOFTWARE.''',
|
||||||
);
|
);
|
||||||
|
|
||||||
/// tallee 0.0.18+252
|
/// tallee 0.0.19+253
|
||||||
const _tallee = Package(
|
const _tallee = Package(
|
||||||
name: 'tallee',
|
name: 'tallee',
|
||||||
description: 'Tracking App for Card Games',
|
description: 'Tracking App for Card Games',
|
||||||
authors: [],
|
authors: [],
|
||||||
version: '0.0.18+252',
|
version: '0.0.19+253',
|
||||||
spdxIdentifiers: ['LGPL-3.0'],
|
spdxIdentifiers: ['LGPL-3.0'],
|
||||||
isMarkdown: false,
|
isMarkdown: false,
|
||||||
isSdk: false,
|
isSdk: false,
|
||||||
|
|||||||
@@ -8,18 +8,12 @@ class TextInputField extends StatelessWidget {
|
|||||||
/// - [onChanged]: Optional callback invoked when the text in the field changes.
|
/// - [onChanged]: Optional callback invoked when the text in the field changes.
|
||||||
/// - [hintText]: The hint text displayed in the text input field when it is empty
|
/// - [hintText]: The hint text displayed in the text input field when it is empty
|
||||||
/// - [maxLength]: Optional parameter for maximum length of the input text.
|
/// - [maxLength]: Optional parameter for maximum length of the input text.
|
||||||
/// - [maxLines]: The maximum number of lines for the text input field. Defaults to 1.
|
|
||||||
/// - [minLines]: The minimum number of lines for the text input field. Defaults to 1.
|
|
||||||
/// - [showCounterText]: Whether to show the counter text in the text input field. Defaults to false.
|
|
||||||
const TextInputField({
|
const TextInputField({
|
||||||
super.key,
|
super.key,
|
||||||
required this.controller,
|
required this.controller,
|
||||||
required this.hintText,
|
required this.hintText,
|
||||||
this.onChanged,
|
this.onChanged,
|
||||||
this.maxLength,
|
this.maxLength,
|
||||||
this.maxLines = 1,
|
|
||||||
this.minLines = 1,
|
|
||||||
this.showCounterText = false,
|
|
||||||
});
|
});
|
||||||
|
|
||||||
/// The controller for the text input field.
|
/// The controller for the text input field.
|
||||||
@@ -34,15 +28,6 @@ class TextInputField extends StatelessWidget {
|
|||||||
/// Optional parameter for maximum length of the input text.
|
/// Optional parameter for maximum length of the input text.
|
||||||
final int? maxLength;
|
final int? maxLength;
|
||||||
|
|
||||||
/// The maximum number of lines for the text input field.
|
|
||||||
final int? maxLines;
|
|
||||||
|
|
||||||
/// The minimum number of lines for the text input field.
|
|
||||||
final int? minLines;
|
|
||||||
|
|
||||||
/// Whether to show the counter text in the text input field.
|
|
||||||
final bool showCounterText;
|
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return TextField(
|
return TextField(
|
||||||
@@ -50,14 +35,13 @@ class TextInputField extends StatelessWidget {
|
|||||||
onChanged: onChanged,
|
onChanged: onChanged,
|
||||||
maxLength: maxLength,
|
maxLength: maxLength,
|
||||||
maxLengthEnforcement: MaxLengthEnforcement.truncateAfterCompositionEnds,
|
maxLengthEnforcement: MaxLengthEnforcement.truncateAfterCompositionEnds,
|
||||||
maxLines: maxLines,
|
|
||||||
minLines: minLines,
|
|
||||||
decoration: InputDecoration(
|
decoration: InputDecoration(
|
||||||
filled: true,
|
filled: true,
|
||||||
fillColor: CustomTheme.boxColor,
|
fillColor: CustomTheme.boxColor,
|
||||||
hintText: hintText,
|
hintText: hintText,
|
||||||
hintStyle: const TextStyle(fontSize: 18),
|
hintStyle: const TextStyle(fontSize: 18),
|
||||||
counterText: showCounterText ? null : '',
|
// Hides the character counter
|
||||||
|
counterText: '',
|
||||||
enabledBorder: const OutlineInputBorder(
|
enabledBorder: const OutlineInputBorder(
|
||||||
borderRadius: BorderRadius.all(Radius.circular(12)),
|
borderRadius: BorderRadius.all(Radius.circular(12)),
|
||||||
borderSide: BorderSide(color: CustomTheme.boxBorderColor),
|
borderSide: BorderSide(color: CustomTheme.boxBorderColor),
|
||||||
|
|||||||
@@ -6,7 +6,6 @@ class TitleDescriptionListTile extends StatelessWidget {
|
|||||||
/// - [title]: The title text displayed on the tile.
|
/// - [title]: The title text displayed on the tile.
|
||||||
/// - [description]: The description text displayed below the title.
|
/// - [description]: The description text displayed below the title.
|
||||||
/// - [onPressed]: The callback invoked when the tile is tapped.
|
/// - [onPressed]: The callback invoked when the tile is tapped.
|
||||||
/// - [onLongPress]: The callback invoked when the tile is tapped.
|
|
||||||
/// - [isHighlighted]: A boolean to determine if the tile should be highlighted.
|
/// - [isHighlighted]: A boolean to determine if the tile should be highlighted.
|
||||||
/// - [badgeText]: Optional text to display in a badge on the right side of the title.
|
/// - [badgeText]: Optional text to display in a badge on the right side of the title.
|
||||||
/// - [badgeColor]: Optional color for the badge background.
|
/// - [badgeColor]: Optional color for the badge background.
|
||||||
@@ -14,8 +13,7 @@ class TitleDescriptionListTile extends StatelessWidget {
|
|||||||
super.key,
|
super.key,
|
||||||
required this.title,
|
required this.title,
|
||||||
required this.description,
|
required this.description,
|
||||||
this.onTap,
|
this.onPressed,
|
||||||
this.onLongPress,
|
|
||||||
this.isHighlighted = false,
|
this.isHighlighted = false,
|
||||||
this.badgeText,
|
this.badgeText,
|
||||||
this.badgeColor,
|
this.badgeColor,
|
||||||
@@ -28,10 +26,7 @@ class TitleDescriptionListTile extends StatelessWidget {
|
|||||||
final String description;
|
final String description;
|
||||||
|
|
||||||
/// The callback invoked when the tile is tapped.
|
/// The callback invoked when the tile is tapped.
|
||||||
final VoidCallback? onTap;
|
final VoidCallback? onPressed;
|
||||||
|
|
||||||
/// The callback invoked when the tile is long-pressed.
|
|
||||||
final VoidCallback? onLongPress;
|
|
||||||
|
|
||||||
/// A boolean to determine if the tile should be highlighted.
|
/// A boolean to determine if the tile should be highlighted.
|
||||||
final bool isHighlighted;
|
final bool isHighlighted;
|
||||||
@@ -45,8 +40,7 @@ class TitleDescriptionListTile extends StatelessWidget {
|
|||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return GestureDetector(
|
return GestureDetector(
|
||||||
onTap: onTap,
|
onTap: onPressed,
|
||||||
onLongPress: onLongPress,
|
|
||||||
child: AnimatedContainer(
|
child: AnimatedContainer(
|
||||||
margin: const EdgeInsets.symmetric(vertical: 10, horizontal: 10),
|
margin: const EdgeInsets.symmetric(vertical: 10, horizontal: 10),
|
||||||
padding: const EdgeInsets.symmetric(vertical: 6, horizontal: 12),
|
padding: const EdgeInsets.symmetric(vertical: 6, horizontal: 12),
|
||||||
|
|||||||
@@ -40,39 +40,33 @@ class DataTransferService {
|
|||||||
'players': players.map((p) => p.toJson()).toList(),
|
'players': players.map((p) => p.toJson()).toList(),
|
||||||
'games': games.map((g) => g.toJson()).toList(),
|
'games': games.map((g) => g.toJson()).toList(),
|
||||||
'groups': groups
|
'groups': groups
|
||||||
.map(
|
.map((g) => {
|
||||||
(g) => {
|
'id': g.id,
|
||||||
'id': g.id,
|
'name': g.name,
|
||||||
'name': g.name,
|
'description': g.description,
|
||||||
'description': g.description,
|
'createdAt': g.createdAt.toIso8601String(),
|
||||||
'createdAt': g.createdAt.toIso8601String(),
|
'memberIds': (g.members).map((m) => m.id).toList(),
|
||||||
'memberIds': (g.members).map((m) => m.id).toList(),
|
})
|
||||||
},
|
|
||||||
)
|
|
||||||
.toList(),
|
.toList(),
|
||||||
'teams': teams
|
'teams': teams
|
||||||
.map(
|
.map((t) => {
|
||||||
(t) => {
|
'id': t.id,
|
||||||
'id': t.id,
|
'name': t.name,
|
||||||
'name': t.name,
|
'createdAt': t.createdAt.toIso8601String(),
|
||||||
'createdAt': t.createdAt.toIso8601String(),
|
'memberIds': (t.members).map((m) => m.id).toList(),
|
||||||
'memberIds': (t.members).map((m) => m.id).toList(),
|
})
|
||||||
},
|
|
||||||
)
|
|
||||||
.toList(),
|
.toList(),
|
||||||
'matches': matches
|
'matches': matches
|
||||||
.map(
|
.map((m) => {
|
||||||
(m) => {
|
'id': m.id,
|
||||||
'id': m.id,
|
'name': m.name,
|
||||||
'name': m.name,
|
'createdAt': m.createdAt.toIso8601String(),
|
||||||
'createdAt': m.createdAt.toIso8601String(),
|
'endedAt': m.endedAt?.toIso8601String(),
|
||||||
'endedAt': m.endedAt?.toIso8601String(),
|
'gameId': m.game.id,
|
||||||
'gameId': m.game.id,
|
'groupId': m.group?.id,
|
||||||
'groupId': m.group?.id,
|
'playerIds': m.players.map((p) => p.id).toList(),
|
||||||
'playerIds': m.players.map((p) => p.id).toList(),
|
'notes': m.notes,
|
||||||
'notes': m.notes,
|
})
|
||||||
},
|
|
||||||
)
|
|
||||||
.toList(),
|
.toList(),
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -85,9 +79,9 @@ class DataTransferService {
|
|||||||
/// [jsonString] The JSON string to be exported.
|
/// [jsonString] The JSON string to be exported.
|
||||||
/// [fileName] The desired name for the exported file (without extension).
|
/// [fileName] The desired name for the exported file (without extension).
|
||||||
static Future<ExportResult> exportData(
|
static Future<ExportResult> exportData(
|
||||||
String jsonString,
|
String jsonString,
|
||||||
String fileName,
|
String fileName
|
||||||
) async {
|
) async {
|
||||||
try {
|
try {
|
||||||
final bytes = Uint8List.fromList(utf8.encode(jsonString));
|
final bytes = Uint8List.fromList(utf8.encode(jsonString));
|
||||||
final path = await FilePicker.platform.saveFile(
|
final path = await FilePicker.platform.saveFile(
|
||||||
@@ -100,6 +94,7 @@ class DataTransferService {
|
|||||||
} else {
|
} else {
|
||||||
return ExportResult.success;
|
return ExportResult.success;
|
||||||
}
|
}
|
||||||
|
|
||||||
} catch (e, stack) {
|
} catch (e, stack) {
|
||||||
print('[exportData] $e');
|
print('[exportData] $e');
|
||||||
print(stack);
|
print(stack);
|
||||||
@@ -127,19 +122,13 @@ class DataTransferService {
|
|||||||
final isValid = await _validateJsonSchema(jsonString);
|
final isValid = await _validateJsonSchema(jsonString);
|
||||||
if (!isValid) return ImportResult.invalidSchema;
|
if (!isValid) return ImportResult.invalidSchema;
|
||||||
|
|
||||||
final Map<String, dynamic> decoded =
|
final Map<String, dynamic> decoded = json.decode(jsonString) as Map<String, dynamic>;
|
||||||
json.decode(jsonString) as Map<String, dynamic>;
|
|
||||||
|
|
||||||
final List<dynamic> playersJson =
|
final List<dynamic> playersJson = (decoded['players'] as List<dynamic>?) ?? [];
|
||||||
(decoded['players'] as List<dynamic>?) ?? [];
|
final List<dynamic> gamesJson = (decoded['games'] as List<dynamic>?) ?? [];
|
||||||
final List<dynamic> gamesJson =
|
final List<dynamic> groupsJson = (decoded['groups'] as List<dynamic>?) ?? [];
|
||||||
(decoded['games'] as List<dynamic>?) ?? [];
|
final List<dynamic> teamsJson = (decoded['teams'] as List<dynamic>?) ?? [];
|
||||||
final List<dynamic> groupsJson =
|
final List<dynamic> matchesJson = (decoded['matches'] as List<dynamic>?) ?? [];
|
||||||
(decoded['groups'] as List<dynamic>?) ?? [];
|
|
||||||
final List<dynamic> teamsJson =
|
|
||||||
(decoded['teams'] as List<dynamic>?) ?? [];
|
|
||||||
final List<dynamic> matchesJson =
|
|
||||||
(decoded['matches'] as List<dynamic>?) ?? [];
|
|
||||||
|
|
||||||
// Import Players
|
// Import Players
|
||||||
final List<Player> importedPlayers = playersJson
|
final List<Player> importedPlayers = playersJson
|
||||||
@@ -162,8 +151,7 @@ class DataTransferService {
|
|||||||
// Import Groups
|
// Import Groups
|
||||||
final List<Group> importedGroups = groupsJson.map((g) {
|
final List<Group> importedGroups = groupsJson.map((g) {
|
||||||
final map = g as Map<String, dynamic>;
|
final map = g as Map<String, dynamic>;
|
||||||
final memberIds = (map['memberIds'] as List<dynamic>? ?? [])
|
final memberIds = (map['memberIds'] as List<dynamic>? ?? []).cast<String>();
|
||||||
.cast<String>();
|
|
||||||
|
|
||||||
final members = memberIds
|
final members = memberIds
|
||||||
.map((id) => playerById[id])
|
.map((id) => playerById[id])
|
||||||
@@ -186,8 +174,7 @@ class DataTransferService {
|
|||||||
// Import Teams
|
// Import Teams
|
||||||
final List<Team> importedTeams = teamsJson.map((t) {
|
final List<Team> importedTeams = teamsJson.map((t) {
|
||||||
final map = t as Map<String, dynamic>;
|
final map = t as Map<String, dynamic>;
|
||||||
final memberIds = (map['memberIds'] as List<dynamic>? ?? [])
|
final memberIds = (map['memberIds'] as List<dynamic>? ?? []).cast<String>();
|
||||||
.cast<String>();
|
|
||||||
|
|
||||||
final members = memberIds
|
final members = memberIds
|
||||||
.map((id) => playerById[id])
|
.map((id) => playerById[id])
|
||||||
@@ -208,11 +195,8 @@ class DataTransferService {
|
|||||||
|
|
||||||
final String gameId = map['gameId'] as String;
|
final String gameId = map['gameId'] as String;
|
||||||
final String? groupId = map['groupId'] as String?;
|
final String? groupId = map['groupId'] as String?;
|
||||||
final List<String> playerIds =
|
final List<String> playerIds = (map['playerIds'] as List<dynamic>? ?? []).cast<String>();
|
||||||
(map['playerIds'] as List<dynamic>? ?? []).cast<String>();
|
final DateTime? endedAt = map['endedAt'] != null ? DateTime.parse(map['endedAt'] as String) : null;
|
||||||
final DateTime? endedAt = map['endedAt'] != null
|
|
||||||
? DateTime.parse(map['endedAt'] as String)
|
|
||||||
: null;
|
|
||||||
|
|
||||||
final game = gameById[gameId];
|
final game = gameById[gameId];
|
||||||
final group = (groupId == null) ? null : groupById[groupId];
|
final group = (groupId == null) ? null : groupById[groupId];
|
||||||
@@ -224,14 +208,7 @@ class DataTransferService {
|
|||||||
return Match(
|
return Match(
|
||||||
id: map['id'] as String,
|
id: map['id'] as String,
|
||||||
name: map['name'] as String,
|
name: map['name'] as String,
|
||||||
game:
|
game: game ?? Game(name: 'Unknown', ruleset: Ruleset.singleWinner, description: '', color: GameColor.blue, icon: ''),
|
||||||
game ??
|
|
||||||
Game(
|
|
||||||
name: 'Unknown',
|
|
||||||
ruleset: Ruleset.singleWinner,
|
|
||||||
description: '',
|
|
||||||
color: GameColor.blue,
|
|
||||||
),
|
|
||||||
group: group,
|
group: group,
|
||||||
players: players,
|
players: players,
|
||||||
createdAt: DateTime.parse(map['createdAt'] as String),
|
createdAt: DateTime.parse(map['createdAt'] as String),
|
||||||
@@ -289,4 +266,4 @@ class DataTransferService {
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,7 @@
|
|||||||
name: tallee
|
name: tallee
|
||||||
description: "Tracking App for Card Games"
|
description: "Tracking App for Card Games"
|
||||||
publish_to: 'none'
|
publish_to: 'none'
|
||||||
version: 0.0.18+252
|
version: 0.0.19+253
|
||||||
|
|
||||||
environment:
|
environment:
|
||||||
sdk: ^3.8.1
|
sdk: ^3.8.1
|
||||||
@@ -31,9 +31,9 @@ dependencies:
|
|||||||
dev_dependencies:
|
dev_dependencies:
|
||||||
flutter_test:
|
flutter_test:
|
||||||
sdk: flutter
|
sdk: flutter
|
||||||
build_runner: ^2.5.4
|
build_runner: ^2.7.0
|
||||||
dart_pubspec_licenses: ^3.0.14
|
dart_pubspec_licenses: ^3.0.14
|
||||||
drift_dev: ^2.27.0
|
drift_dev: ^2.29.0
|
||||||
flutter_lints: ^6.0.0
|
flutter_lints: ^6.0.0
|
||||||
|
|
||||||
flutter:
|
flutter:
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ void main() {
|
|||||||
testPlayer4 = Player(name: 'Diana', description: '');
|
testPlayer4 = Player(name: 'Diana', description: '');
|
||||||
testPlayer5 = Player(name: 'Eve', description: '');
|
testPlayer5 = Player(name: 'Eve', description: '');
|
||||||
testGroup1 = Group(
|
testGroup1 = Group(
|
||||||
name: 'Test Group 2',
|
name: 'Test Group 1',
|
||||||
description: '',
|
description: '',
|
||||||
members: [testPlayer1, testPlayer2, testPlayer3],
|
members: [testPlayer1, testPlayer2, testPlayer3],
|
||||||
);
|
);
|
||||||
@@ -56,6 +56,7 @@ void main() {
|
|||||||
ruleset: Ruleset.singleWinner,
|
ruleset: Ruleset.singleWinner,
|
||||||
description: 'A test game',
|
description: 'A test game',
|
||||||
color: GameColor.blue,
|
color: GameColor.blue,
|
||||||
|
icon: '',
|
||||||
);
|
);
|
||||||
testMatch1 = Match(
|
testMatch1 = Match(
|
||||||
name: 'First Test Match',
|
name: 'First Test Match',
|
||||||
@@ -306,5 +307,69 @@ void main() {
|
|||||||
expect(fetchedMatch.winner, isNotNull);
|
expect(fetchedMatch.winner, isNotNull);
|
||||||
expect(fetchedMatch.winner!.id, testPlayer5.id);
|
expect(fetchedMatch.winner!.id, testPlayer5.id);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
test(
|
||||||
|
'removeMatchGroup removes group from match with existing group',
|
||||||
|
() async {
|
||||||
|
await database.matchDao.addMatch(match: testMatch1);
|
||||||
|
|
||||||
|
final removed = await database.matchDao.removeMatchGroup(
|
||||||
|
matchId: testMatch1.id,
|
||||||
|
);
|
||||||
|
expect(removed, isTrue);
|
||||||
|
|
||||||
|
final updatedMatch = await database.matchDao.getMatchById(
|
||||||
|
matchId: testMatch1.id,
|
||||||
|
);
|
||||||
|
expect(updatedMatch.group, null);
|
||||||
|
expect(updatedMatch.game.id, testMatch1.game.id);
|
||||||
|
expect(updatedMatch.name, testMatch1.name);
|
||||||
|
expect(updatedMatch.notes, testMatch1.notes);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
test(
|
||||||
|
'removeMatchGroup on match that already has no group still succeeds',
|
||||||
|
() async {
|
||||||
|
await database.matchDao.addMatch(match: testMatchOnlyPlayers);
|
||||||
|
|
||||||
|
final removed = await database.matchDao.removeMatchGroup(
|
||||||
|
matchId: testMatchOnlyPlayers.id,
|
||||||
|
);
|
||||||
|
expect(removed, isTrue);
|
||||||
|
|
||||||
|
final updatedMatch = await database.matchDao.getMatchById(
|
||||||
|
matchId: testMatchOnlyPlayers.id,
|
||||||
|
);
|
||||||
|
expect(updatedMatch.group, null);
|
||||||
|
},
|
||||||
|
);
|
||||||
|
|
||||||
|
test('removeMatchGroup on non-existing match returns false', () async {
|
||||||
|
final removed = await database.matchDao.removeMatchGroup(
|
||||||
|
matchId: 'non-existing-id',
|
||||||
|
);
|
||||||
|
expect(removed, isFalse);
|
||||||
|
});
|
||||||
|
|
||||||
|
test('Fetching all matches related to a group', () async {
|
||||||
|
var matches = await database.matchDao.getGroupMatches(
|
||||||
|
groupId: 'non-existing-id',
|
||||||
|
);
|
||||||
|
|
||||||
|
expect(matches, isEmpty);
|
||||||
|
|
||||||
|
await database.matchDao.addMatch(match: testMatch1);
|
||||||
|
print(await database.matchDao.getAllMatches());
|
||||||
|
|
||||||
|
matches = await database.matchDao.getGroupMatches(groupId: testGroup1.id);
|
||||||
|
|
||||||
|
expect(matches, isNotEmpty);
|
||||||
|
|
||||||
|
final match = matches.first;
|
||||||
|
expect(match.id, testMatch1.id);
|
||||||
|
expect(match.group, isNotNull);
|
||||||
|
expect(match.group!.id, testGroup1.id);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,12 +2,12 @@ import 'package:clock/clock.dart';
|
|||||||
import 'package:drift/drift.dart';
|
import 'package:drift/drift.dart';
|
||||||
import 'package:drift/native.dart';
|
import 'package:drift/native.dart';
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
import 'package:tallee/core/enums.dart';
|
|
||||||
import 'package:tallee/data/db/database.dart';
|
import 'package:tallee/data/db/database.dart';
|
||||||
import 'package:tallee/data/dto/game.dart';
|
import 'package:tallee/data/dto/game.dart';
|
||||||
import 'package:tallee/data/dto/match.dart';
|
import 'package:tallee/data/dto/match.dart';
|
||||||
import 'package:tallee/data/dto/player.dart';
|
import 'package:tallee/data/dto/player.dart';
|
||||||
import 'package:tallee/data/dto/team.dart';
|
import 'package:tallee/data/dto/team.dart';
|
||||||
|
import 'package:tallee/core/enums.dart';
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
late AppDatabase database;
|
late AppDatabase database;
|
||||||
@@ -37,21 +37,20 @@ void main() {
|
|||||||
testPlayer2 = Player(name: 'Bob', description: '');
|
testPlayer2 = Player(name: 'Bob', description: '');
|
||||||
testPlayer3 = Player(name: 'Charlie', description: '');
|
testPlayer3 = Player(name: 'Charlie', description: '');
|
||||||
testPlayer4 = Player(name: 'Diana', description: '');
|
testPlayer4 = Player(name: 'Diana', description: '');
|
||||||
testTeam1 = Team(name: 'Team Alpha', members: [testPlayer1, testPlayer2]);
|
testTeam1 = Team(
|
||||||
testTeam2 = Team(name: 'Team Beta', members: [testPlayer3, testPlayer4]);
|
name: 'Team Alpha',
|
||||||
testTeam3 = Team(name: 'Team Gamma', members: [testPlayer1, testPlayer3]);
|
members: [testPlayer1, testPlayer2],
|
||||||
testGame1 = Game(
|
|
||||||
name: 'Game 1',
|
|
||||||
ruleset: Ruleset.singleWinner,
|
|
||||||
description: 'Test game 1',
|
|
||||||
color: GameColor.blue,
|
|
||||||
);
|
);
|
||||||
testGame2 = Game(
|
testTeam2 = Team(
|
||||||
name: 'Game 2',
|
name: 'Team Beta',
|
||||||
ruleset: Ruleset.highestScore,
|
members: [testPlayer3, testPlayer4],
|
||||||
description: 'Test game 2',
|
|
||||||
color: GameColor.red,
|
|
||||||
);
|
);
|
||||||
|
testTeam3 = Team(
|
||||||
|
name: 'Team Gamma',
|
||||||
|
members: [testPlayer1, testPlayer3],
|
||||||
|
);
|
||||||
|
testGame1 = Game(name: 'Game 1', ruleset: Ruleset.singleWinner, description: 'Test game 1', color: GameColor.blue, icon: '');
|
||||||
|
testGame2 = Game(name: 'Game 2', ruleset: Ruleset.highestScore, description: 'Test game 2', color: GameColor.red, icon: '');
|
||||||
});
|
});
|
||||||
|
|
||||||
await database.playerDao.addPlayersAsList(
|
await database.playerDao.addPlayersAsList(
|
||||||
@@ -66,6 +65,7 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
group('Team Tests', () {
|
group('Team Tests', () {
|
||||||
|
|
||||||
// Verifies that a single team can be added and retrieved with all fields intact.
|
// Verifies that a single team can be added and retrieved with all fields intact.
|
||||||
test('Adding and fetching a single team works correctly', () async {
|
test('Adding and fetching a single team works correctly', () async {
|
||||||
final added = await database.teamDao.addTeam(team: testTeam1);
|
final added = await database.teamDao.addTeam(team: testTeam1);
|
||||||
@@ -285,7 +285,10 @@ void main() {
|
|||||||
test('Updating team name to empty string works', () async {
|
test('Updating team name to empty string works', () async {
|
||||||
await database.teamDao.addTeam(team: testTeam1);
|
await database.teamDao.addTeam(team: testTeam1);
|
||||||
|
|
||||||
await database.teamDao.updateTeamName(teamId: testTeam1.id, newName: '');
|
await database.teamDao.updateTeamName(
|
||||||
|
teamId: testTeam1.id,
|
||||||
|
newName: '',
|
||||||
|
);
|
||||||
|
|
||||||
final updatedTeam = await database.teamDao.getTeamById(
|
final updatedTeam = await database.teamDao.getTeamById(
|
||||||
teamId: testTeam1.id,
|
teamId: testTeam1.id,
|
||||||
@@ -347,7 +350,9 @@ void main() {
|
|||||||
await database.matchDao.addMatch(match: match2);
|
await database.matchDao.addMatch(match: match2);
|
||||||
|
|
||||||
// Add teams to database
|
// Add teams to database
|
||||||
await database.teamDao.addTeamsAsList(teams: [testTeam1, testTeam3]);
|
await database.teamDao.addTeamsAsList(
|
||||||
|
teams: [testTeam1, testTeam3],
|
||||||
|
);
|
||||||
|
|
||||||
// Associate players with teams through match1
|
// Associate players with teams through match1
|
||||||
// testTeam1: player1, player2
|
// testTeam1: player1, player2
|
||||||
@@ -415,11 +420,10 @@ void main() {
|
|||||||
final allTeams = await database.teamDao.getAllTeams();
|
final allTeams = await database.teamDao.getAllTeams();
|
||||||
|
|
||||||
expect(allTeams.length, 3);
|
expect(allTeams.length, 3);
|
||||||
expect(allTeams.map((t) => t.id).toSet(), {
|
expect(
|
||||||
testTeam1.id,
|
allTeams.map((t) => t.id).toSet(),
|
||||||
testTeam2.id,
|
{testTeam1.id, testTeam2.id, testTeam3.id},
|
||||||
testTeam3.id,
|
);
|
||||||
});
|
|
||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that teamExists returns false for deleted teams.
|
// Verifies that teamExists returns false for deleted teams.
|
||||||
@@ -458,7 +462,9 @@ void main() {
|
|||||||
|
|
||||||
// Verifies that addTeam after deleteAllTeams works correctly.
|
// Verifies that addTeam after deleteAllTeams works correctly.
|
||||||
test('Adding team after deleteAllTeams works correctly', () async {
|
test('Adding team after deleteAllTeams works correctly', () async {
|
||||||
await database.teamDao.addTeamsAsList(teams: [testTeam1, testTeam2]);
|
await database.teamDao.addTeamsAsList(
|
||||||
|
teams: [testTeam1, testTeam2],
|
||||||
|
);
|
||||||
expect(await database.teamDao.getTeamCount(), 2);
|
expect(await database.teamDao.getTeamCount(), 2);
|
||||||
|
|
||||||
await database.teamDao.deleteAllTeams();
|
await database.teamDao.deleteAllTeams();
|
||||||
@@ -518,4 +524,4 @@ void main() {
|
|||||||
expect(fetchedTeam.createdAt, testTeam1.createdAt);
|
expect(fetchedTeam.createdAt, testTeam1.createdAt);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
@@ -44,6 +44,7 @@ void main() {
|
|||||||
ruleset: Ruleset.highestScore,
|
ruleset: Ruleset.highestScore,
|
||||||
description: 'A board game about real estate',
|
description: 'A board game about real estate',
|
||||||
color: GameColor.orange,
|
color: GameColor.orange,
|
||||||
|
icon: '',
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
@@ -53,6 +54,7 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
group('Game Tests', () {
|
group('Game Tests', () {
|
||||||
|
|
||||||
// Verifies that getAllGames returns an empty list when the database has no games.
|
// Verifies that getAllGames returns an empty list when the database has no games.
|
||||||
test('getAllGames returns empty list when no games exist', () async {
|
test('getAllGames returns empty list when no games exist', () async {
|
||||||
final allGames = await database.gameDao.getAllGames();
|
final allGames = await database.gameDao.getAllGames();
|
||||||
@@ -104,7 +106,7 @@ void main() {
|
|||||||
// Verifies that getGameById throws a StateError when the game doesn't exist.
|
// Verifies that getGameById throws a StateError when the game doesn't exist.
|
||||||
test('getGameById throws exception for non-existent game', () async {
|
test('getGameById throws exception for non-existent game', () async {
|
||||||
expect(
|
expect(
|
||||||
() => database.gameDao.getGameById(gameId: 'non-existent-id'),
|
() => database.gameDao.getGameById(gameId: 'non-existent-id'),
|
||||||
throwsA(isA<StateError>()),
|
throwsA(isA<StateError>()),
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
@@ -132,12 +134,7 @@ void main() {
|
|||||||
|
|
||||||
// Verifies that a game with empty optional fields can be added and retrieved.
|
// Verifies that a game with empty optional fields can be added and retrieved.
|
||||||
test('addGame handles game with null optional fields', () async {
|
test('addGame handles game with null optional fields', () async {
|
||||||
final gameWithNulls = Game(
|
final gameWithNulls = Game(name: 'Simple Game', ruleset: Ruleset.lowestScore, description: 'A simple game', color: GameColor.green, icon: '');
|
||||||
name: 'Simple Game',
|
|
||||||
ruleset: Ruleset.lowestScore,
|
|
||||||
description: 'A simple game',
|
|
||||||
color: GameColor.green,
|
|
||||||
);
|
|
||||||
final result = await database.gameDao.addGame(game: gameWithNulls);
|
final result = await database.gameDao.addGame(game: gameWithNulls);
|
||||||
expect(result, true);
|
expect(result, true);
|
||||||
|
|
||||||
@@ -422,7 +419,9 @@ void main() {
|
|||||||
|
|
||||||
// Verifies that getGameCount updates correctly after deleting a game.
|
// Verifies that getGameCount updates correctly after deleting a game.
|
||||||
test('getGameCount updates correctly after deletion', () async {
|
test('getGameCount updates correctly after deletion', () async {
|
||||||
await database.gameDao.addGamesAsList(games: [testGame1, testGame2]);
|
await database.gameDao.addGamesAsList(
|
||||||
|
games: [testGame1, testGame2],
|
||||||
|
);
|
||||||
|
|
||||||
final countBefore = await database.gameDao.getGameCount();
|
final countBefore = await database.gameDao.getGameCount();
|
||||||
expect(countBefore, 2);
|
expect(countBefore, 2);
|
||||||
@@ -462,6 +461,7 @@ void main() {
|
|||||||
ruleset: Ruleset.multipleWinners,
|
ruleset: Ruleset.multipleWinners,
|
||||||
description: 'Description with émojis 🎮🎲',
|
description: 'Description with émojis 🎮🎲',
|
||||||
color: GameColor.purple,
|
color: GameColor.purple,
|
||||||
|
icon: '',
|
||||||
);
|
);
|
||||||
await database.gameDao.addGame(game: specialGame);
|
await database.gameDao.addGame(game: specialGame);
|
||||||
|
|
||||||
@@ -478,6 +478,7 @@ void main() {
|
|||||||
name: '',
|
name: '',
|
||||||
ruleset: Ruleset.singleWinner,
|
ruleset: Ruleset.singleWinner,
|
||||||
description: '',
|
description: '',
|
||||||
|
icon: '',
|
||||||
color: GameColor.red,
|
color: GameColor.red,
|
||||||
);
|
);
|
||||||
await database.gameDao.addGame(game: emptyGame);
|
await database.gameDao.addGame(game: emptyGame);
|
||||||
@@ -499,6 +500,7 @@ void main() {
|
|||||||
description: longString,
|
description: longString,
|
||||||
ruleset: Ruleset.multipleWinners,
|
ruleset: Ruleset.multipleWinners,
|
||||||
color: GameColor.yellow,
|
color: GameColor.yellow,
|
||||||
|
icon: '',
|
||||||
);
|
);
|
||||||
await database.gameDao.addGame(game: longGame);
|
await database.gameDao.addGame(game: longGame);
|
||||||
|
|
||||||
|
|||||||
@@ -48,12 +48,7 @@ void main() {
|
|||||||
description: '',
|
description: '',
|
||||||
members: [testPlayer1, testPlayer2, testPlayer3],
|
members: [testPlayer1, testPlayer2, testPlayer3],
|
||||||
);
|
);
|
||||||
testGame = Game(
|
testGame = Game(name: 'Test Game', ruleset: Ruleset.singleWinner, description: 'A test game', color: GameColor.blue, icon: '');
|
||||||
name: 'Test Game',
|
|
||||||
ruleset: Ruleset.singleWinner,
|
|
||||||
description: 'A test game',
|
|
||||||
color: GameColor.blue,
|
|
||||||
);
|
|
||||||
testMatchOnlyGroup = Match(
|
testMatchOnlyGroup = Match(
|
||||||
name: 'Test Match with Group',
|
name: 'Test Match with Group',
|
||||||
game: testGame,
|
game: testGame,
|
||||||
@@ -66,8 +61,14 @@ void main() {
|
|||||||
players: [testPlayer4, testPlayer5, testPlayer6],
|
players: [testPlayer4, testPlayer5, testPlayer6],
|
||||||
notes: '',
|
notes: '',
|
||||||
);
|
);
|
||||||
testTeam1 = Team(name: 'Team Alpha', members: [testPlayer1, testPlayer2]);
|
testTeam1 = Team(
|
||||||
testTeam2 = Team(name: 'Team Beta', members: [testPlayer3, testPlayer4]);
|
name: 'Team Alpha',
|
||||||
|
members: [testPlayer1, testPlayer2],
|
||||||
|
);
|
||||||
|
testTeam2 = Team(
|
||||||
|
name: 'Team Beta',
|
||||||
|
members: [testPlayer3, testPlayer4],
|
||||||
|
);
|
||||||
});
|
});
|
||||||
await database.playerDao.addPlayersAsList(
|
await database.playerDao.addPlayersAsList(
|
||||||
players: [
|
players: [
|
||||||
@@ -87,6 +88,7 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
group('Player-Match Tests', () {
|
group('Player-Match Tests', () {
|
||||||
|
|
||||||
// Verifies that matchHasPlayers returns false initially and true after adding a player.
|
// Verifies that matchHasPlayers returns false initially and true after adding a player.
|
||||||
test('Match has player works correctly', () async {
|
test('Match has player works correctly', () async {
|
||||||
await database.matchDao.addMatch(match: testMatchOnlyGroup);
|
await database.matchDao.addMatch(match: testMatchOnlyGroup);
|
||||||
@@ -151,23 +153,26 @@ void main() {
|
|||||||
);
|
);
|
||||||
expect(result.players.length, testMatchOnlyPlayers.players.length - 1);
|
expect(result.players.length, testMatchOnlyPlayers.players.length - 1);
|
||||||
|
|
||||||
final playerExists = result.players.any((p) => p.id == playerToRemove.id);
|
final playerExists = result.players.any(
|
||||||
|
(p) => p.id == playerToRemove.id,
|
||||||
|
);
|
||||||
expect(playerExists, false);
|
expect(playerExists, false);
|
||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that getPlayersOfMatch returns all players of a match with correct data.
|
// Verifies that getPlayersOfMatch returns all players of a match with correct data.
|
||||||
test('Retrieving players of a match works correctly', () async {
|
test('Retrieving players of a match works correctly', () async {
|
||||||
await database.matchDao.addMatch(match: testMatchOnlyPlayers);
|
await database.matchDao.addMatch(match: testMatchOnlyPlayers);
|
||||||
final players =
|
final players = await database.playerMatchDao.getPlayersOfMatch(
|
||||||
await database.playerMatchDao.getPlayersOfMatch(
|
matchId: testMatchOnlyPlayers.id,
|
||||||
matchId: testMatchOnlyPlayers.id,
|
) ?? [];
|
||||||
) ??
|
|
||||||
[];
|
|
||||||
|
|
||||||
for (int i = 0; i < players.length; i++) {
|
for (int i = 0; i < players.length; i++) {
|
||||||
expect(players[i].id, testMatchOnlyPlayers.players[i].id);
|
expect(players[i].id, testMatchOnlyPlayers.players[i].id);
|
||||||
expect(players[i].name, testMatchOnlyPlayers.players[i].name);
|
expect(players[i].name, testMatchOnlyPlayers.players[i].name);
|
||||||
expect(players[i].createdAt, testMatchOnlyPlayers.players[i].createdAt);
|
expect(
|
||||||
|
players[i].createdAt,
|
||||||
|
testMatchOnlyPlayers.players[i].createdAt,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
@@ -218,20 +223,10 @@ void main() {
|
|||||||
// Verifies that the same player can be added to multiple different matches.
|
// Verifies that the same player can be added to multiple different matches.
|
||||||
test(
|
test(
|
||||||
'Adding the same player to separate matches works correctly',
|
'Adding the same player to separate matches works correctly',
|
||||||
() async {
|
() async {
|
||||||
final playersList = [testPlayer1, testPlayer2, testPlayer3];
|
final playersList = [testPlayer1, testPlayer2, testPlayer3];
|
||||||
final match1 = Match(
|
final match1 = Match(name: 'Match 1', game: testGame, players: playersList, notes: '');
|
||||||
name: 'Match 1',
|
final match2 = Match(name: 'Match 2', game: testGame, players: playersList, notes: '');
|
||||||
game: testGame,
|
|
||||||
players: playersList,
|
|
||||||
notes: '',
|
|
||||||
);
|
|
||||||
final match2 = Match(
|
|
||||||
name: 'Match 2',
|
|
||||||
game: testGame,
|
|
||||||
players: playersList,
|
|
||||||
notes: '',
|
|
||||||
);
|
|
||||||
|
|
||||||
await Future.wait([
|
await Future.wait([
|
||||||
database.matchDao.addMatch(match: match1),
|
database.matchDao.addMatch(match: match1),
|
||||||
@@ -304,19 +299,16 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that getPlayerScore returns null for non-existent player-match combination.
|
// Verifies that getPlayerScore returns null for non-existent player-match combination.
|
||||||
test(
|
test('getPlayerScore returns null for non-existent player in match', () async {
|
||||||
'getPlayerScore returns null for non-existent player in match',
|
await database.matchDao.addMatch(match: testMatchOnlyGroup);
|
||||||
() async {
|
|
||||||
await database.matchDao.addMatch(match: testMatchOnlyGroup);
|
|
||||||
|
|
||||||
final score = await database.playerMatchDao.getPlayerScore(
|
final score = await database.playerMatchDao.getPlayerScore(
|
||||||
matchId: testMatchOnlyGroup.id,
|
matchId: testMatchOnlyGroup.id,
|
||||||
playerId: 'non-existent-player-id',
|
playerId: 'non-existent-player-id',
|
||||||
);
|
);
|
||||||
|
|
||||||
expect(score, isNull);
|
expect(score, isNull);
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|
||||||
// Verifies that updatePlayerScore updates the score correctly.
|
// Verifies that updatePlayerScore updates the score correctly.
|
||||||
test('updatePlayerScore updates score correctly', () async {
|
test('updatePlayerScore updates score correctly', () async {
|
||||||
@@ -339,20 +331,17 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that updatePlayerScore returns false for non-existent player-match.
|
// Verifies that updatePlayerScore returns false for non-existent player-match.
|
||||||
test(
|
test('updatePlayerScore returns false for non-existent player-match', () async {
|
||||||
'updatePlayerScore returns false for non-existent player-match',
|
await database.matchDao.addMatch(match: testMatchOnlyGroup);
|
||||||
() async {
|
|
||||||
await database.matchDao.addMatch(match: testMatchOnlyGroup);
|
|
||||||
|
|
||||||
final updated = await database.playerMatchDao.updatePlayerScore(
|
final updated = await database.playerMatchDao.updatePlayerScore(
|
||||||
matchId: testMatchOnlyGroup.id,
|
matchId: testMatchOnlyGroup.id,
|
||||||
playerId: 'non-existent-player-id',
|
playerId: 'non-existent-player-id',
|
||||||
newScore: 50,
|
newScore: 50,
|
||||||
);
|
);
|
||||||
|
|
||||||
expect(updated, false);
|
expect(updated, false);
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|
||||||
// Verifies that adding a player with teamId works correctly.
|
// Verifies that adding a player with teamId works correctly.
|
||||||
test('Adding player with teamId works correctly', () async {
|
test('Adding player with teamId works correctly', () async {
|
||||||
@@ -442,20 +431,17 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that updatePlayerTeam returns false for non-existent player-match.
|
// Verifies that updatePlayerTeam returns false for non-existent player-match.
|
||||||
test(
|
test('updatePlayerTeam returns false for non-existent player-match', () async {
|
||||||
'updatePlayerTeam returns false for non-existent player-match',
|
await database.matchDao.addMatch(match: testMatchOnlyGroup);
|
||||||
() async {
|
|
||||||
await database.matchDao.addMatch(match: testMatchOnlyGroup);
|
|
||||||
|
|
||||||
final updated = await database.playerMatchDao.updatePlayerTeam(
|
final updated = await database.playerMatchDao.updatePlayerTeam(
|
||||||
matchId: testMatchOnlyGroup.id,
|
matchId: testMatchOnlyGroup.id,
|
||||||
playerId: 'non-existent-player-id',
|
playerId: 'non-existent-player-id',
|
||||||
teamId: testTeam1.id,
|
teamId: testTeam1.id,
|
||||||
);
|
);
|
||||||
|
|
||||||
expect(updated, false);
|
expect(updated, false);
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|
||||||
// Verifies that getPlayersInTeam returns empty list for non-existent team.
|
// Verifies that getPlayersInTeam returns empty list for non-existent team.
|
||||||
test('getPlayersInTeam returns empty list for non-existent team', () async {
|
test('getPlayersInTeam returns empty list for non-existent team', () async {
|
||||||
@@ -497,19 +483,16 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that removePlayerFromMatch returns false for non-existent player.
|
// Verifies that removePlayerFromMatch returns false for non-existent player.
|
||||||
test(
|
test('removePlayerFromMatch returns false for non-existent player', () async {
|
||||||
'removePlayerFromMatch returns false for non-existent player',
|
await database.matchDao.addMatch(match: testMatchOnlyPlayers);
|
||||||
() async {
|
|
||||||
await database.matchDao.addMatch(match: testMatchOnlyPlayers);
|
|
||||||
|
|
||||||
final removed = await database.playerMatchDao.removePlayerFromMatch(
|
final removed = await database.playerMatchDao.removePlayerFromMatch(
|
||||||
playerId: 'non-existent-player-id',
|
playerId: 'non-existent-player-id',
|
||||||
matchId: testMatchOnlyPlayers.id,
|
matchId: testMatchOnlyPlayers.id,
|
||||||
);
|
);
|
||||||
|
|
||||||
expect(removed, false);
|
expect(removed, false);
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|
||||||
// Verifies that adding the same player twice to the same match is ignored.
|
// Verifies that adding the same player twice to the same match is ignored.
|
||||||
test('Adding same player twice to same match is ignored', () async {
|
test('Adding same player twice to same match is ignored', () async {
|
||||||
@@ -545,30 +528,27 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that updatePlayersFromMatch with empty list removes all players.
|
// Verifies that updatePlayersFromMatch with empty list removes all players.
|
||||||
test(
|
test('updatePlayersFromMatch with empty list removes all players', () async {
|
||||||
'updatePlayersFromMatch with empty list removes all players',
|
await database.matchDao.addMatch(match: testMatchOnlyPlayers);
|
||||||
() async {
|
|
||||||
await database.matchDao.addMatch(match: testMatchOnlyPlayers);
|
|
||||||
|
|
||||||
// Verify players exist initially
|
// Verify players exist initially
|
||||||
var players = await database.playerMatchDao.getPlayersOfMatch(
|
var players = await database.playerMatchDao.getPlayersOfMatch(
|
||||||
matchId: testMatchOnlyPlayers.id,
|
matchId: testMatchOnlyPlayers.id,
|
||||||
);
|
);
|
||||||
expect(players?.length, 3);
|
expect(players?.length, 3);
|
||||||
|
|
||||||
// Update with empty list
|
// Update with empty list
|
||||||
await database.playerMatchDao.updatePlayersFromMatch(
|
await database.playerMatchDao.updatePlayersFromMatch(
|
||||||
matchId: testMatchOnlyPlayers.id,
|
matchId: testMatchOnlyPlayers.id,
|
||||||
newPlayer: [],
|
newPlayer: [],
|
||||||
);
|
);
|
||||||
|
|
||||||
// Verify all players are removed
|
// Verify all players are removed
|
||||||
players = await database.playerMatchDao.getPlayersOfMatch(
|
players = await database.playerMatchDao.getPlayersOfMatch(
|
||||||
matchId: testMatchOnlyPlayers.id,
|
matchId: testMatchOnlyPlayers.id,
|
||||||
);
|
);
|
||||||
expect(players, isNull);
|
expect(players, isNull);
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|
||||||
// Verifies that updatePlayersFromMatch with same players makes no changes.
|
// Verifies that updatePlayersFromMatch with same players makes no changes.
|
||||||
test('updatePlayersFromMatch with same players makes no changes', () async {
|
test('updatePlayersFromMatch with same players makes no changes', () async {
|
||||||
@@ -722,19 +702,16 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that getPlayersInTeam returns empty list for non-existent match.
|
// Verifies that getPlayersInTeam returns empty list for non-existent match.
|
||||||
test(
|
test('getPlayersInTeam returns empty list for non-existent match', () async {
|
||||||
'getPlayersInTeam returns empty list for non-existent match',
|
await database.teamDao.addTeam(team: testTeam1);
|
||||||
() async {
|
|
||||||
await database.teamDao.addTeam(team: testTeam1);
|
|
||||||
|
|
||||||
final players = await database.playerMatchDao.getPlayersInTeam(
|
final players = await database.playerMatchDao.getPlayersInTeam(
|
||||||
matchId: 'non-existent-match-id',
|
matchId: 'non-existent-match-id',
|
||||||
teamId: testTeam1.id,
|
teamId: testTeam1.id,
|
||||||
);
|
);
|
||||||
|
|
||||||
expect(players.isEmpty, true);
|
expect(players.isEmpty, true);
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|
||||||
// Verifies that players in different teams within the same match are returned correctly.
|
// Verifies that players in different teams within the same match are returned correctly.
|
||||||
test('Players in different teams within same match are separate', () async {
|
test('Players in different teams within same match are separate', () async {
|
||||||
@@ -782,18 +759,8 @@ void main() {
|
|||||||
// Verifies that removePlayerFromMatch does not affect other matches.
|
// Verifies that removePlayerFromMatch does not affect other matches.
|
||||||
test('removePlayerFromMatch does not affect other matches', () async {
|
test('removePlayerFromMatch does not affect other matches', () async {
|
||||||
final playersList = [testPlayer1, testPlayer2];
|
final playersList = [testPlayer1, testPlayer2];
|
||||||
final match1 = Match(
|
final match1 = Match(name: 'Match 1', game: testGame, players: playersList, notes: '');
|
||||||
name: 'Match 1',
|
final match2 = Match(name: 'Match 2', game: testGame, players: playersList, notes: '');
|
||||||
game: testGame,
|
|
||||||
players: playersList,
|
|
||||||
notes: '',
|
|
||||||
);
|
|
||||||
final match2 = Match(
|
|
||||||
name: 'Match 2',
|
|
||||||
game: testGame,
|
|
||||||
players: playersList,
|
|
||||||
notes: '',
|
|
||||||
);
|
|
||||||
|
|
||||||
await Future.wait([
|
await Future.wait([
|
||||||
database.matchDao.addMatch(match: match1),
|
database.matchDao.addMatch(match: match1),
|
||||||
@@ -825,18 +792,8 @@ void main() {
|
|||||||
// Verifies that updating scores for players in different matches are independent.
|
// Verifies that updating scores for players in different matches are independent.
|
||||||
test('Player scores are independent across matches', () async {
|
test('Player scores are independent across matches', () async {
|
||||||
final playersList = [testPlayer1];
|
final playersList = [testPlayer1];
|
||||||
final match1 = Match(
|
final match1 = Match(name: 'Match 1', game: testGame, players: playersList, notes: '');
|
||||||
name: 'Match 1',
|
final match2 = Match(name: 'Match 2', game: testGame, players: playersList, notes: '');
|
||||||
game: testGame,
|
|
||||||
players: playersList,
|
|
||||||
notes: '',
|
|
||||||
);
|
|
||||||
final match2 = Match(
|
|
||||||
name: 'Match 2',
|
|
||||||
game: testGame,
|
|
||||||
players: playersList,
|
|
||||||
notes: '',
|
|
||||||
);
|
|
||||||
|
|
||||||
await Future.wait([
|
await Future.wait([
|
||||||
database.matchDao.addMatch(match: match1),
|
database.matchDao.addMatch(match: match1),
|
||||||
@@ -872,19 +829,16 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that updatePlayersFromMatch on non-existent match fails with constraint error.
|
// Verifies that updatePlayersFromMatch on non-existent match fails with constraint error.
|
||||||
test(
|
test('updatePlayersFromMatch on non-existent match fails with foreign key constraint', () async {
|
||||||
'updatePlayersFromMatch on non-existent match fails with foreign key constraint',
|
// Should throw due to foreign key constraint - match doesn't exist
|
||||||
() async {
|
await expectLater(
|
||||||
// Should throw due to foreign key constraint - match doesn't exist
|
database.playerMatchDao.updatePlayersFromMatch(
|
||||||
await expectLater(
|
matchId: 'non-existent-match-id',
|
||||||
database.playerMatchDao.updatePlayersFromMatch(
|
newPlayer: [testPlayer1, testPlayer2],
|
||||||
matchId: 'non-existent-match-id',
|
),
|
||||||
newPlayer: [testPlayer1, testPlayer2],
|
throwsA(anything),
|
||||||
),
|
);
|
||||||
throwsA(anything),
|
});
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// Verifies that a player can be in a match without being assigned to a team.
|
// Verifies that a player can be in a match without being assigned to a team.
|
||||||
test('Player can exist in match without team assignment', () async {
|
test('Player can exist in match without team assignment', () async {
|
||||||
|
|||||||
@@ -2,11 +2,11 @@ import 'package:clock/clock.dart';
|
|||||||
import 'package:drift/drift.dart' hide isNull, isNotNull;
|
import 'package:drift/drift.dart' hide isNull, isNotNull;
|
||||||
import 'package:drift/native.dart';
|
import 'package:drift/native.dart';
|
||||||
import 'package:flutter_test/flutter_test.dart';
|
import 'package:flutter_test/flutter_test.dart';
|
||||||
import 'package:tallee/core/enums.dart';
|
|
||||||
import 'package:tallee/data/db/database.dart';
|
import 'package:tallee/data/db/database.dart';
|
||||||
import 'package:tallee/data/dto/game.dart';
|
import 'package:tallee/data/dto/game.dart';
|
||||||
import 'package:tallee/data/dto/match.dart';
|
import 'package:tallee/data/dto/match.dart';
|
||||||
import 'package:tallee/data/dto/player.dart';
|
import 'package:tallee/data/dto/player.dart';
|
||||||
|
import 'package:tallee/core/enums.dart';
|
||||||
|
|
||||||
void main() {
|
void main() {
|
||||||
late AppDatabase database;
|
late AppDatabase database;
|
||||||
@@ -32,12 +32,7 @@ void main() {
|
|||||||
testPlayer1 = Player(name: 'Alice', description: '');
|
testPlayer1 = Player(name: 'Alice', description: '');
|
||||||
testPlayer2 = Player(name: 'Bob', description: '');
|
testPlayer2 = Player(name: 'Bob', description: '');
|
||||||
testPlayer3 = Player(name: 'Charlie', description: '');
|
testPlayer3 = Player(name: 'Charlie', description: '');
|
||||||
testGame = Game(
|
testGame = Game(name: 'Test Game', ruleset: Ruleset.singleWinner, description: 'A test game', color: GameColor.blue, icon: '');
|
||||||
name: 'Test Game',
|
|
||||||
ruleset: Ruleset.singleWinner,
|
|
||||||
description: 'A test game',
|
|
||||||
color: GameColor.blue,
|
|
||||||
);
|
|
||||||
testMatch1 = Match(
|
testMatch1 = Match(
|
||||||
name: 'Test Match 1',
|
name: 'Test Match 1',
|
||||||
game: testGame,
|
game: testGame,
|
||||||
@@ -65,6 +60,7 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
group('Score Tests', () {
|
group('Score Tests', () {
|
||||||
|
|
||||||
// Verifies that a score can be added and retrieved with all fields intact.
|
// Verifies that a score can be added and retrieved with all fields intact.
|
||||||
test('Adding and fetching a score works correctly', () async {
|
test('Adding and fetching a score works correctly', () async {
|
||||||
await database.scoreDao.addScore(
|
await database.scoreDao.addScore(
|
||||||
@@ -435,16 +431,13 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that getScoresForMatch returns empty list for match with no scores.
|
// Verifies that getScoresForMatch returns empty list for match with no scores.
|
||||||
test(
|
test('Getting scores for match with no scores returns empty list', () async {
|
||||||
'Getting scores for match with no scores returns empty list',
|
final scores = await database.scoreDao.getScoresForMatch(
|
||||||
() async {
|
matchId: testMatch1.id,
|
||||||
final scores = await database.scoreDao.getScoresForMatch(
|
);
|
||||||
matchId: testMatch1.id,
|
|
||||||
);
|
|
||||||
|
|
||||||
expect(scores.isEmpty, true);
|
expect(scores.isEmpty, true);
|
||||||
},
|
});
|
||||||
);
|
|
||||||
|
|
||||||
// Verifies that getPlayerScoresInMatch returns empty list when player has no scores.
|
// Verifies that getPlayerScoresInMatch returns empty list when player has no scores.
|
||||||
test('Getting player scores with no scores returns empty list', () async {
|
test('Getting player scores with no scores returns empty list', () async {
|
||||||
@@ -673,58 +666,46 @@ void main() {
|
|||||||
});
|
});
|
||||||
|
|
||||||
// Verifies that updating one player's score doesn't affect another player's score in same round.
|
// Verifies that updating one player's score doesn't affect another player's score in same round.
|
||||||
test(
|
test('Updating one player score does not affect other players in same round', () async {
|
||||||
'Updating one player score does not affect other players in same round',
|
await database.scoreDao.addScore(
|
||||||
() async {
|
playerId: testPlayer1.id,
|
||||||
await database.scoreDao.addScore(
|
matchId: testMatch1.id,
|
||||||
playerId: testPlayer1.id,
|
roundNumber: 1,
|
||||||
matchId: testMatch1.id,
|
score: 10,
|
||||||
roundNumber: 1,
|
change: 10,
|
||||||
score: 10,
|
);
|
||||||
change: 10,
|
await database.scoreDao.addScore(
|
||||||
);
|
playerId: testPlayer2.id,
|
||||||
await database.scoreDao.addScore(
|
matchId: testMatch1.id,
|
||||||
playerId: testPlayer2.id,
|
roundNumber: 1,
|
||||||
matchId: testMatch1.id,
|
score: 20,
|
||||||
roundNumber: 1,
|
change: 20,
|
||||||
score: 20,
|
);
|
||||||
change: 20,
|
await database.scoreDao.addScore(
|
||||||
);
|
playerId: testPlayer3.id,
|
||||||
await database.scoreDao.addScore(
|
matchId: testMatch1.id,
|
||||||
playerId: testPlayer3.id,
|
roundNumber: 1,
|
||||||
matchId: testMatch1.id,
|
score: 30,
|
||||||
roundNumber: 1,
|
change: 30,
|
||||||
score: 30,
|
);
|
||||||
change: 30,
|
|
||||||
);
|
|
||||||
|
|
||||||
await database.scoreDao.updateScore(
|
await database.scoreDao.updateScore(
|
||||||
playerId: testPlayer2.id,
|
playerId: testPlayer2.id,
|
||||||
matchId: testMatch1.id,
|
matchId: testMatch1.id,
|
||||||
roundNumber: 1,
|
roundNumber: 1,
|
||||||
newScore: 99,
|
newScore: 99,
|
||||||
newChange: 89,
|
newChange: 89,
|
||||||
);
|
);
|
||||||
|
|
||||||
final scores = await database.scoreDao.getScoresForMatch(
|
final scores = await database.scoreDao.getScoresForMatch(
|
||||||
matchId: testMatch1.id,
|
matchId: testMatch1.id,
|
||||||
);
|
);
|
||||||
|
|
||||||
expect(scores.length, 3);
|
expect(scores.length, 3);
|
||||||
expect(
|
expect(scores.where((s) => s.playerId == testPlayer1.id).first.score, 10);
|
||||||
scores.where((s) => s.playerId == testPlayer1.id).first.score,
|
expect(scores.where((s) => s.playerId == testPlayer2.id).first.score, 99);
|
||||||
10,
|
expect(scores.where((s) => s.playerId == testPlayer3.id).first.score, 30);
|
||||||
);
|
});
|
||||||
expect(
|
|
||||||
scores.where((s) => s.playerId == testPlayer2.id).first.score,
|
|
||||||
99,
|
|
||||||
);
|
|
||||||
expect(
|
|
||||||
scores.where((s) => s.playerId == testPlayer3.id).first.score,
|
|
||||||
30,
|
|
||||||
);
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
// Verifies that deleting a player's scores only affects that specific player.
|
// Verifies that deleting a player's scores only affects that specific player.
|
||||||
test('Deleting player scores only affects target player', () async {
|
test('Deleting player scores only affects target player', () async {
|
||||||
@@ -743,7 +724,9 @@ void main() {
|
|||||||
change: 20,
|
change: 20,
|
||||||
);
|
);
|
||||||
|
|
||||||
await database.scoreDao.deleteScoresForPlayer(playerId: testPlayer1.id);
|
await database.scoreDao.deleteScoresForPlayer(
|
||||||
|
playerId: testPlayer1.id,
|
||||||
|
);
|
||||||
|
|
||||||
final match1Scores = await database.scoreDao.getScoresForMatch(
|
final match1Scores = await database.scoreDao.getScoresForMatch(
|
||||||
matchId: testMatch1.id,
|
matchId: testMatch1.id,
|
||||||
|
|||||||
Reference in New Issue
Block a user