7 Commits

Author SHA1 Message Date
963f7271a2 Rename todo to scratch 2025-04-22 00:22:01 +02:00
442403b5b9 DO save empty todo 2025-04-21 23:38:06 +02:00
ad767ac33a Fix backspace delete 2025-04-21 23:33:15 +02:00
1051805463 Fix the double escape bug 2025-04-21 23:04:40 +02:00
173c4fbee2 Auto focus new entry 2025-04-21 22:36:54 +02:00
d06a8d6698 Implement commit sudoku button 2025-04-21 22:35:53 +02:00
d788c110a7 TODO 2025-04-21 22:33:02 +02:00
3 changed files with 72 additions and 40 deletions

View File

@@ -21,13 +21,13 @@ CREATE UNIQUE INDEX IF NOT EXISTS idx_notes_date_unique ON notes (date);
-- ie. they're not really a list but instead a string -- ie. they're not really a list but instead a string
-- But we will also keep a history of all todos -- But we will also keep a history of all todos
-- Because we might as well -- Because we might as well
CREATE TABLE IF NOT EXISTS todos ( CREATE TABLE IF NOT EXISTS scratches (
id INTEGER PRIMARY KEY AUTOINCREMENT, id INTEGER PRIMARY KEY AUTOINCREMENT,
date TEXT DEFAULT CURRENT_TIMESTAMP, date TEXT DEFAULT CURRENT_TIMESTAMP,
content TEXT NOT NULL content TEXT NOT NULL
); );
CREATE INDEX IF NOT EXISTS idx_todos_date ON todos (date); CREATE INDEX IF NOT EXISTS idx_scratches_date ON scratches (date);
CREATE UNIQUE INDEX IF NOT EXISTS idx_todos_date_unique ON todos (date); CREATE UNIQUE INDEX IF NOT EXISTS idx_scratches_date_unique ON scratches (date);
'''; ''';
static Future<String> _getDatabasePath() async { static Future<String> _getDatabasePath() async {

View File

@@ -7,6 +7,12 @@ import 'package:system_tray/system_tray.dart';
import 'package:window_manager/window_manager.dart'; import 'package:window_manager/window_manager.dart';
import 'package:audioplayers/audioplayers.dart'; import 'package:audioplayers/audioplayers.dart';
// TODO: Add an icon to the executable, simply use the existing tray icon
// TODO: Add an entry field for the duration ie. the interval of apperance
// TODO: Also the sound file, if possible...
// TODO: Cram the above into the database
// TODO: Implement some sort of scroll through notes
const Duration popupInterval = Duration(minutes: 20); const Duration popupInterval = Duration(minutes: 20);
const String notificationSound = 'MeetTheSniper.mp3'; const String notificationSound = 'MeetTheSniper.mp3';
@@ -116,17 +122,19 @@ class MainPage extends StatefulWidget {
const MainPage({super.key}); const MainPage({super.key});
@override @override
State<MainPage> createState() => _MainPageState(); State<MainPage> createState() => MainPageState();
} }
class _MainPageState extends State<MainPage> with WindowListener { class MainPageState extends State<MainPage> with WindowListener {
final SystemTray _systemTray = SystemTray(); final SystemTray _systemTray = SystemTray();
final Menu _menu = Menu();
final AudioPlayer _audioPlayer = AudioPlayer(); final AudioPlayer _audioPlayer = AudioPlayer();
final TextEditingController _previousEntryController = final TextEditingController _previousEntryController =
TextEditingController(); TextEditingController();
final TextEditingController _currentEntryController = TextEditingController(); final TextEditingController _currentEntryController = TextEditingController();
final TextEditingController _todoController = TextEditingController(); final FocusNode _currentEntryFocusNode = FocusNode();
final TextEditingController _scratchController = TextEditingController();
Note? previousNote; Note? previousNote;
@@ -151,7 +159,8 @@ class _MainPageState extends State<MainPage> with WindowListener {
_debounceTimer?.cancel(); _debounceTimer?.cancel();
_previousEntryController.dispose(); _previousEntryController.dispose();
_currentEntryController.dispose(); _currentEntryController.dispose();
_todoController.dispose(); _currentEntryFocusNode.dispose();
_scratchController.dispose();
_audioPlayer.dispose(); _audioPlayer.dispose();
super.dispose(); super.dispose();
} }
@@ -172,9 +181,22 @@ class _MainPageState extends State<MainPage> with WindowListener {
await _systemTray.initSystemTray(iconPath: iconPath, toolTip: "Journaler"); await _systemTray.initSystemTray(iconPath: iconPath, toolTip: "Journaler");
await _menu.buildFrom([
MenuItemLabel(
label: 'Commit Sudoku',
onClicked: (menuItem) => windowManager.destroy(),
),
]);
await _systemTray.setContextMenu(_menu);
_systemTray.registerSystemTrayEventHandler((eventName) { _systemTray.registerSystemTrayEventHandler((eventName) {
debugPrint("System Tray Event: $eventName"); debugPrint("System Tray Event: $eventName");
_showWindow(); if (eventName == kSystemTrayEventClick) {
_showWindow();
} else if (eventName == kSystemTrayEventRightClick) {
_systemTray.popUpContextMenu();
}
}); });
} }
@@ -192,9 +214,11 @@ class _MainPageState extends State<MainPage> with WindowListener {
await windowManager.center(); await windowManager.center();
await windowManager.show(); await windowManager.show();
await windowManager.focus(); await windowManager.focus();
_currentEntryFocusNode.requestFocus();
await _playSound(); await _playSound();
} else { } else {
await windowManager.focus(); await windowManager.focus();
_currentEntryFocusNode.requestFocus();
} }
} }
@@ -209,25 +233,27 @@ class _MainPageState extends State<MainPage> with WindowListener {
previousNote = note; previousNote = note;
_previousEntryController.text = note?.content ?? ""; _previousEntryController.text = note?.content ?? "";
final todo = await getLatestTodo(); final scratch = await getLatestScratch();
_todoController.text = todo?.content ?? ""; _scratchController.text = scratch?.content ?? "";
_currentEntryController.text = ""; _currentEntryController.text = "";
debugPrint("Data loaded (placeholder)."); debugPrint("Data loaded.");
} }
void _saveData() async { void _saveData() async {
String previousEntry = _previousEntryController.text; String previousEntry = _previousEntryController.text;
String currentEntry = _currentEntryController.text; String currentEntry = _currentEntryController.text;
String todoList = _todoController.text; String scratchContent = _scratchController.text;
await createNote(currentEntry); await createNote(currentEntry);
await createTodo(todoList); await createScratch(scratchContent);
previousNote!.content = previousEntry; if (previousNote != null) {
await updateNote(previousNote!); previousNote!.content = previousEntry;
await updateNote(previousNote!);
}
debugPrint( debugPrint(
"Saving data (placeholder)... Current Entry: [${currentEntry.length} chars], Todo: [${todoList.length} chars]", "Saving data... Current Entry: [${currentEntry.length} chars], Scratch: [${scratchContent.length} chars]",
); );
} }
@@ -237,13 +263,17 @@ class _MainPageState extends State<MainPage> with WindowListener {
@override @override
Widget build(BuildContext context) { Widget build(BuildContext context) {
return KeyboardListener( // Wrap Scaffold with RawKeyboardListener as workaround for Escape key
focusNode: FocusNode(), return RawKeyboardListener(
autofocus: true, focusNode: FocusNode(), // Needs its own node
onKeyEvent: (event) { onKey: (RawKeyEvent event) {
if (event is KeyDownEvent && if (event is RawKeyDownEvent &&
event.logicalKey == LogicalKeyboardKey.escape) { event.logicalKey == LogicalKeyboardKey.escape) {
debugPrint("Escape key pressed - hiding window."); debugPrint(
"Escape pressed inside MainPage (RawKeyboardListener - Workaround)",
);
// Call method directly since we are in the state
FocusManager.instance.primaryFocus?.unfocus(); // Keep unfocus attempt
onWindowClose(); onWindowClose();
} }
}, },
@@ -274,6 +304,7 @@ class _MainPageState extends State<MainPage> with WindowListener {
Expanded( Expanded(
child: TextField( child: TextField(
controller: _currentEntryController, controller: _currentEntryController,
focusNode: _currentEntryFocusNode,
maxLines: null, maxLines: null,
expands: true, expands: true,
autofocus: true, autofocus: true,
@@ -291,7 +322,7 @@ class _MainPageState extends State<MainPage> with WindowListener {
Expanded( Expanded(
flex: 3, flex: 3,
child: TextField( child: TextField(
controller: _todoController, controller: _scratchController,
maxLines: null, maxLines: null,
expands: true, expands: true,
style: style:
@@ -299,7 +330,7 @@ class _MainPageState extends State<MainPage> with WindowListener {
context, context,
).textTheme.bodyMedium, // Apply theme text style ).textTheme.bodyMedium, // Apply theme text style
decoration: const InputDecoration( decoration: const InputDecoration(
labelText: 'Todo', labelText: 'Scratch',
// border: OutlineInputBorder(), // Handled by theme // border: OutlineInputBorder(), // Handled by theme
// contentPadding: EdgeInsets.all(8.0), // Handled by theme or default // contentPadding: EdgeInsets.all(8.0), // Handled by theme or default
), ),
@@ -312,3 +343,5 @@ class _MainPageState extends State<MainPage> with WindowListener {
); );
} }
} }
// --- End Actions and Shortcuts ---

View File

@@ -7,11 +7,11 @@ class Note {
Note({required this.date, required this.content}); Note({required this.date, required this.content});
} }
class Todo { class Scratch {
final String date; final String date;
final String content; String content;
Todo({required this.date, required this.content}); Scratch({required this.date, required this.content});
} }
Future<Note?> getLatestNote() async { Future<Note?> getLatestNote() async {
@@ -43,22 +43,21 @@ Future<void> updateNote(Note note) async {
); );
} }
Future<Todo?> getLatestTodo() async { Future<Scratch?> getLatestScratch() async {
final todo = await DB.db.rawQuery( final scratch = await DB.db.rawQuery(
'SELECT content, date FROM todos ORDER BY date DESC LIMIT 1', 'SELECT content, date FROM scratches ORDER BY date DESC LIMIT 1',
); );
if (todo.isEmpty) {
if (scratch.isEmpty) {
return null; return null;
} else {
return Scratch(
date: scratch[0]['date'] as String,
content: scratch[0]['content'] as String,
);
} }
return Todo(
date: todo[0]['date'] as String,
content: todo[0]['content'] as String,
);
} }
Future<void> createTodo(String content) async { Future<void> createScratch(String content) async {
if (content.isEmpty) { await DB.db.insert('scratches', {'content': content});
return;
}
await DB.db.insert('todos', {'content': content});
} }