Skip to content

Commit

Permalink
doc: update TODO with new rethink about Cmd and Task
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanceras committed Mar 30, 2024
1 parent 6b3c362 commit 0632d40
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion TODO.md
Original file line number Diff line number Diff line change
Expand Up @@ -270,14 +270,19 @@
- [X] add `symbol_html` for html entities such as ` ` `&gt`, `&lt` etc.
- this should be safe to be inserted
- [X] remove `innerHTML` func in AttributeValue as it could alter the DOM node tree
- [ ] Keep track of which attributes to be skipped in `SkipDiff{shall:false}`
- [X] Keep track of which attributes to be skipped in `SkipDiff{shall:false}`
```rust
enum SkipStrat{
SkipAll,
SkippIndex(Vec<usize>),
}
```
- [X] Maybe disable the template usage for now
- [ ] Make `Cmd` to be used internally as it needs reference to the `Program<APP>`
- [ ] Use `Task` for returning from `Application` init and `update`.
- The `Recurring Task` is actually just a Sub in elm
- The `SingleTask` is a Cmd in sauron
- Sauron just consilidate them into one enum struct for simplicity

## Features
- [X] Storage service (May not be needed since the user can directly use web-sys)
Expand Down

0 comments on commit 0632d40

Please sign in to comment.