d4t_formulas/TODO.md

36 lines
3.3 KiB
Markdown
Raw Normal View History

2026-02-11 07:56:43 +00:00
# Conventions
2026-02-09 15:28:30 +00:00
[ ] Means not done
[R] Means done by an ai agent, but needs a human review
2026-02-11 07:56:43 +00:00
[X] Means done
2026-02-09 15:28:30 +00:00
2026-02-11 07:56:43 +00:00
# List of tasks
2026-02-09 16:10:47 +00:00
- [X] Unify error reporting. Create class ErrorHandler that get notified of every catched exception. This class prints the exception in stdout.
2026-02-09 16:34:20 +00:00
- [X] Make formula description collapsable in FormulaScreen. Initialy, the description is visible, but the user can hide it.
2026-02-09 15:28:30 +00:00
- Refactor formula and unit loading:
2026-02-09 16:34:20 +00:00
- [X] Create method `List<Object?> parseD4rtLiteral(String arrayStringLiteral). It parses a d4rt array literal (containing maps and arrays) to a List<Object?> using d4rt
- [X] Make `fromArrayStringLiteral` from UnitSpec and Formula to use parseD4rtLiteral
- [X] Create function `List<Object> parseCorpusElements(String arrayStringLiteral)`. It uses parseD4rtLiteral and determines if each element of the array is a formula or a unit. Then converts the objects with Formula.fromSet or UnitSpec.fromSet.
- [X] Create method loadFormulaElements( List<Object> elements). Tipically receives the list from parseCorpusElements(). It loads the units first, then the formulas, to avoid missing dependencies.
- [X] Change createDefaultCorpus to use loadFormulaElements instead of loadUnits and loadFormula. Make loadUnits and loadFormula private.
2026-02-09 18:11:00 +00:00
- [X] Use a single table in database `FORMULAELEMENT` to store formulas and units. The table contains only two columns: autonumeric id and text.
- Drift files have a lot of duplicate code. "web" version is the same as native version, only _openConnection is diferrent. Refactor to not duplicate code.
2026-02-11 07:56:43 +00:00
- [X] Create Formula.toStringLiteral. It is the reverse of Formula.fromSet( Formula.fromArrayStringLiteral(string)[0] )
- [X] Create UnitSpec.toStringLiteral, like Formula.toStringLiteral
2026-02-11 08:07:13 +00:00
- [X] Make Formula and UnitSpec subclasses of FormulaElement. Change return type of functions that return Object to FormulaElement if necessary.
2026-02-11 08:19:18 +00:00
- [X] Define toStringLiteral in FormulaElement.
- [X] Database file location:
- [X] In linux, the sqlite database file will be located following rules at https://specifications.freedesktop.org/basedir/latest/
- [X] In Windows, the sqlite database file will be in %appdata%/Roaming
- [X] In Macos, the sqlite database file will be in ~/Library/Application Support
- [X] Initialize database at startup
- [X] Try first to load a corpus from database
- [X] If the database is empty, sugest to use a default corpus
- [X] If the user choose to use the default corpus, populate de database with the default corpus (load defaultcorpus, and then use toStringLiteral). If not, start with an empty list of formulas.
- [X] From now on, the corpus will be loaded from database instead of assets
- [X] Create method List<FormulaElement> Corpus.withDependencies(Formula formula). It will return the formula, the units of the formula, and all the units from the corpus with the same base unit.
2026-02-15 19:29:49 +00:00
- [X] Add a Share button to the formula list. It will export the array string literal of the formula with the units from Corpus.withDependencies().
2026-02-18 08:46:02 +00:00
- [X] Replace flutter-markdown with flutter-markdown-plus
- [X] Heron's formula: investigate why a=3, b=40, c=5 yields NaN. Root cause: input values don't form a valid triangle (violate triangle inequality: 3+5=8 is not > 40). Added documentation note to the formula description.
2026-02-28 13:22:18 +00:00
- [ ] Change Share package to share_plus, because share is deprecated.