https://github.com/sheepla/ratatodo
Sample TUI Todo App with ratatui
https://github.com/sheepla/ratatodo
Last synced: 12 months ago
JSON representation
Sample TUI Todo App with ratatui
- Host: GitHub
- URL: https://github.com/sheepla/ratatodo
- Owner: sheepla
- Created: 2025-05-11T10:10:04.000Z (about 1 year ago)
- Default Branch: master
- Last Pushed: 2025-05-24T11:36:15.000Z (about 1 year ago)
- Last Synced: 2025-05-24T12:35:49.335Z (about 1 year ago)
- Language: Rust
- Size: 291 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ✅️ ratatodo
This is a sample TUI TODO app with an asynchronous, event-driven, designed with a Flux-like architecture built with [ratatui](https://ratatui.rs) and [crossterm](https://docs.rs/crossterm/latest/crossterm/)

## Features
- [x] View todo entries
- [x] Moving cursor
- [x] Delete current todo entry
- [x] Loading / Saving todo data automatically in JSON
- [x] Add and Edit TODO entries with textarea
- [ ] Customizable key bindings in config file
- [x] Non-blocking action execution handling
## Usage
- `k`, `j`, `Up`, `Down`: Move focus
- `i`, `a`: Focus to textarea
- `Enter`: Accept current entry
- `Esc`: Focus to todo list view
- `Space`: Toggle completed/incomplete state
- `r`: Run some heavy task (Reproduces pseudo-heavy tasks. While the task is running, the status bar is updated with `Loading...` is displayed while the task is running)