Implemented 2 possibilites of deleting game
This commit is contained in:
@@ -215,7 +215,7 @@
|
||||
isa = PBXProject;
|
||||
attributes = {
|
||||
BuildIndependentTargetsInParallel = YES;
|
||||
LastUpgradeCheck = 1620;
|
||||
LastUpgradeCheck = 1510;
|
||||
ORGANIZATIONNAME = "";
|
||||
TargetAttributes = {
|
||||
331C8080294A63A400263BE5 = {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<Scheme
|
||||
LastUpgradeVersion = "1620"
|
||||
LastUpgradeVersion = "1510"
|
||||
version = "1.3">
|
||||
<BuildAction
|
||||
parallelizeBuildables = "YES"
|
||||
|
||||
@@ -169,4 +169,17 @@ class LocalStorageService {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
static Future<bool> deleteAllGames() async {
|
||||
try {
|
||||
Globals.gameList.clear();
|
||||
await saveGameSessions();
|
||||
logger.i('Alle Runden wurden erfolgreich gelöscht.');
|
||||
return true;
|
||||
} catch (e) {
|
||||
logger.e('Fehler beim Löschen aller Runden: $e',
|
||||
error: 'Löschen fehlgeschlagen');
|
||||
return false;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@@ -289,7 +289,9 @@ class _CreateGameState extends State<CreateGame> {
|
||||
caboPenalty: Globals.caboPenalty,
|
||||
isPointsLimitEnabled: selectedMode!,
|
||||
);
|
||||
setState(() {
|
||||
Globals.addGameSession(gameSession);
|
||||
});
|
||||
LocalStorageService.saveGameSessions();
|
||||
if (context.mounted) {
|
||||
Navigator.pushReplacement(
|
||||
|
||||
@@ -17,6 +17,7 @@ class MainMenuView extends StatefulWidget {
|
||||
|
||||
class _MainMenuViewState extends State<MainMenuView> {
|
||||
bool _isLoading = true;
|
||||
bool _isDeletionModeEnabled = false;
|
||||
|
||||
@override
|
||||
initState() {
|
||||
@@ -45,21 +46,24 @@ class _MainMenuViewState extends State<MainMenuView> {
|
||||
),
|
||||
);
|
||||
},
|
||||
icon: const Icon(
|
||||
CupertinoIcons.settings,
|
||||
size: 30,
|
||||
)),
|
||||
icon: _isDeletionModeEnabled
|
||||
? const Icon(null)
|
||||
: const Icon(CupertinoIcons.settings, size: 30)),
|
||||
middle: const Text('Cabo Counter'),
|
||||
trailing: IconButton(
|
||||
onPressed: () {
|
||||
onPressed: () => _isDeletionModeEnabled
|
||||
? _showDeleteAllGamesPopup()
|
||||
: {
|
||||
Navigator.push(
|
||||
context,
|
||||
CupertinoPageRoute(
|
||||
builder: (context) => const CreateGame(),
|
||||
),
|
||||
);
|
||||
)
|
||||
},
|
||||
icon: const Icon(CupertinoIcons.add)),
|
||||
icon: _isDeletionModeEnabled
|
||||
? const Icon(CupertinoIcons.trash, size: 25)
|
||||
: const Icon(CupertinoIcons.add)),
|
||||
),
|
||||
child: CupertinoPageScaffold(
|
||||
child: SafeArea(
|
||||
@@ -91,12 +95,48 @@ class _MainMenuViewState extends State<MainMenuView> {
|
||||
),
|
||||
],
|
||||
)
|
||||
: ListView.builder(
|
||||
: GestureDetector(
|
||||
onTap: () => {
|
||||
if (_isDeletionModeEnabled)
|
||||
{
|
||||
setState(() {
|
||||
_isDeletionModeEnabled = false;
|
||||
}),
|
||||
print('Deletion mode: $_isDeletionModeEnabled')
|
||||
}
|
||||
},
|
||||
onLongPress: () => {
|
||||
setState(() {
|
||||
_isDeletionModeEnabled = true;
|
||||
}),
|
||||
print('Deletion mode: $_isDeletionModeEnabled')
|
||||
},
|
||||
child: ListView.builder(
|
||||
itemCount: Globals.gameList.length,
|
||||
itemBuilder: (context, index) {
|
||||
final session = Globals.gameList[index];
|
||||
return Padding(
|
||||
padding: const EdgeInsets.symmetric(vertical: 10.0),
|
||||
return Dismissible(
|
||||
key: Key(session.gameTitle),
|
||||
background: Container(
|
||||
color: CupertinoColors.destructiveRed,
|
||||
alignment: Alignment.centerLeft,
|
||||
padding: const EdgeInsets.only(left: 20.0),
|
||||
child: const Icon(
|
||||
CupertinoIcons.delete,
|
||||
color: CupertinoColors.white,
|
||||
),
|
||||
),
|
||||
direction: DismissDirection.startToEnd,
|
||||
confirmDismiss: (direction) async {
|
||||
if (_isDeletionModeEnabled) return false;
|
||||
return await _showDeleteSingleGamePopup(index);
|
||||
},
|
||||
onDismissed: (direction) {
|
||||
_deleteSpecificGame(index);
|
||||
},
|
||||
child: Padding(
|
||||
padding:
|
||||
const EdgeInsets.symmetric(vertical: 10.0),
|
||||
child: CupertinoListTile(
|
||||
title: Text(session.gameTitle),
|
||||
subtitle: session.isGameFinished == true
|
||||
@@ -120,26 +160,114 @@ class _MainMenuViewState extends State<MainMenuView> {
|
||||
const Icon(CupertinoIcons.person_2_fill),
|
||||
],
|
||||
),
|
||||
onTap: () async {
|
||||
onTap: () => _isDeletionModeEnabled
|
||||
? _showDeleteSingleGamePopup(index)
|
||||
: () async {
|
||||
//ignore: unused_local_variable
|
||||
final val = await Navigator.push(
|
||||
context,
|
||||
CupertinoPageRoute(
|
||||
builder: (context) => ActiveGameView(
|
||||
gameSession: Globals.gameList[index]),
|
||||
builder: (context) =>
|
||||
ActiveGameView(
|
||||
gameSession: Globals
|
||||
.gameList[index]),
|
||||
),
|
||||
);
|
||||
setState(() {});
|
||||
},
|
||||
));
|
||||
}),
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
),
|
||||
),
|
||||
),
|
||||
));
|
||||
}
|
||||
|
||||
/// Translates the game mode boolean into the corresponding String.
|
||||
/// If [pointLimit] is true, it returns '101 Punkte', otherwise it returns 'Unbegrenzt'.
|
||||
String _translateGameMode(bool pointLimit) {
|
||||
if (pointLimit) return '101 Punkte';
|
||||
return 'Unbegrenzt';
|
||||
}
|
||||
|
||||
/// Shows a confirmation dialog to delete all game sessions.
|
||||
void _showDeleteAllGamesPopup() {
|
||||
showCupertinoDialog(
|
||||
context: context,
|
||||
builder: (context) {
|
||||
return CupertinoAlertDialog(
|
||||
title: const Text('Alle Spiele löschen?'),
|
||||
content: const Text(
|
||||
'Bist du sicher, dass du alle Spiele löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.'),
|
||||
actions: [
|
||||
CupertinoDialogAction(
|
||||
onPressed: () {
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: const Text('Abbrechen'),
|
||||
),
|
||||
CupertinoDialogAction(
|
||||
onPressed: () {
|
||||
setState(() {
|
||||
_deleteAllGames();
|
||||
_isDeletionModeEnabled = false;
|
||||
});
|
||||
Navigator.pop(context);
|
||||
},
|
||||
child: const Text('Löschen'),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
}
|
||||
|
||||
/// Shows a confirmation dialog to delete all game sessions.
|
||||
Future<bool> _showDeleteSingleGamePopup(int gameIndex) async {
|
||||
final String title = Globals.gameList[gameIndex].gameTitle;
|
||||
bool? shouldDelete = await showCupertinoDialog<bool>(
|
||||
context: context,
|
||||
builder: (context) {
|
||||
return CupertinoAlertDialog(
|
||||
title: const Text('Spiel löschen?'),
|
||||
content: Text(
|
||||
'Bist du sicher, dass du die Runde "$title" löschen möchtest? Diese Aktion kann nicht rückgängig gemacht werden.'),
|
||||
actions: [
|
||||
CupertinoDialogAction(
|
||||
onPressed: () {
|
||||
Navigator.pop(context, false);
|
||||
},
|
||||
child: const Text('Abbrechen'),
|
||||
),
|
||||
CupertinoDialogAction(
|
||||
onPressed: () {
|
||||
Navigator.pop(context, true);
|
||||
},
|
||||
child: const Text('Löschen'),
|
||||
),
|
||||
],
|
||||
);
|
||||
},
|
||||
);
|
||||
return shouldDelete ?? false;
|
||||
} //
|
||||
|
||||
/// Deletes all game sessions.
|
||||
/// This functions clears the global games lists and triggers a save to the
|
||||
/// local storage. This overwrites the existing game data so that both the
|
||||
/// local json file and the global variable are empty.
|
||||
void _deleteAllGames() {
|
||||
Globals.gameList.clear();
|
||||
LocalStorageService.saveGameSessions();
|
||||
}
|
||||
|
||||
/// Deletes a specific game session by its index.
|
||||
/// This function takes an [index] as parameter and removes the game session at
|
||||
/// that index from the global game list,
|
||||
void _deleteSpecificGame(int index) {
|
||||
Globals.gameList.removeAt(index);
|
||||
LocalStorageService.saveGameSessions();
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user