todomvc-cycle
todomvc-cycle copied to clipboard
TodoMVC example implemented in Cycle.js
Is there a reason why this TodoMVC example is not published on the main repo that hosts all examples ( https://github.com/tastejs/todomvc )? It would be a good way for cyclejs...
Steps to reproduce: 1. start the app 2. create a task (say '123') 3. double click on the created task to edit it (say you change it from '123' to...
The # needs to be preserved, otherwise the url is not navigable, resulting in a 404.
You cannot delete, edit or toggle active-state of a `Task`. Even though actions produced by the intent of `Task` are triggered, `TaskList` does not receive those item actions.
This will significantly improve rendering performance as DOM updates are going to be batched.
Hi, At this point https://github.com/cyclejs/todomvc-cycle/blob/2692a07b61db886f0af144ff301a37701d9adeba/src/components/TodoItem.js#L23-L27 `keyup` and `blur` are fired when `ENTER` key is pressed. That way the model is written two times to `localstorage`. How can we ignore `blur`...