-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathnotes.dart
122 lines (117 loc) · 4.46 KB
/
notes.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
import 'package:flutter/material.dart';
import 'package:flutter_bloc/flutter_bloc.dart';
import 'package:flutter_gen/gen_l10n/app_localizations.dart';
import 'package:material_leap/material_leap.dart';
import 'package:phosphor_flutter/phosphor_flutter.dart';
import 'package:setonix/bloc/world/bloc.dart';
import 'package:setonix/bloc/world/state.dart';
import 'package:setonix/pages/game/note.dart';
import 'package:setonix_api/setonix_api.dart';
class GameNotesDrawer extends StatefulWidget {
const GameNotesDrawer({super.key});
@override
State<GameNotesDrawer> createState() => _GameNotesDrawerState();
}
class _GameNotesDrawerState extends State<GameNotesDrawer> {
@override
void initState() {
super.initState();
}
@override
void dispose() {
super.dispose();
}
@override
Widget build(BuildContext context) {
return Drawer(
child: Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
children: [
Header(
leading: IconButton.outlined(
icon: const Icon(PhosphorIconsLight.x),
onPressed: () => Navigator.of(context).pop(),
),
title: Text(AppLocalizations.of(context).notes),
),
Flexible(
child: BlocBuilder<WorldBloc, ClientWorldState>(
buildWhen: (previous, current) => previous.data != current.data,
builder: (context, state) {
final notes = state.data.getNotes().toList();
return ListView.builder(
itemCount: notes.length,
itemBuilder: (context, index) {
final note = notes[index];
return ListTile(
title: Text(note),
onTap: () {
final bloc = context.read<WorldBloc>();
showDialog(
context: context,
builder: (context) => BlocProvider.value(
value: bloc,
child: GameNoteDialog(note: note),
),
);
},
trailing: IconButton(
icon: const Icon(PhosphorIconsLight.trash),
onPressed: () async {
final bloc = context.read<WorldBloc>();
final result = await showDialog<bool>(
context: context,
builder: (context) => AlertDialog(
title:
Text(AppLocalizations.of(context).deleteNote),
content: Text(AppLocalizations.of(context)
.deleteNoteMessage(note)),
actions: [
TextButton(
onPressed: () =>
Navigator.of(context).pop(false),
child:
Text(AppLocalizations.of(context).cancel),
),
TextButton(
onPressed: () =>
Navigator.of(context).pop(true),
child:
Text(AppLocalizations.of(context).delete),
),
],
),
);
if (!(result ?? false)) return;
bloc.process(
NoteRemoved(note),
);
},
),
);
},
);
},
),
),
const SizedBox(height: 8),
SizedBox(
height: 48,
child: ElevatedButton.icon(
icon: const Icon(PhosphorIconsLight.plus),
label: Text(LeapLocalizations.of(context).create),
onPressed: () {
final bloc = context.read<WorldBloc>();
showDialog(
context: context,
builder: (context) => BlocProvider.value(
value: bloc, child: const GameNoteDialog()),
);
},
),
),
],
),
);
}
}