Created
April 15, 2016 04:24
-
-
Save griffinmichl/39f3ed15fc111cb60e6be49ffc7beb87 to your computer and use it in GitHub Desktop.
A saved Tricycle Program
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| "\nconst Cycle = require('@cycle/core');\nconst {makeDOMDriver, div, button} = require('@cycle/dom');\nconst _ = require('lodash');\nconst {Observable} = require('rx');\nconst {restartable} = require('cycle-restart');\n\nfunction main ({DOM}) {\n const add$ = DOM\n .select('.add')\n .events('click')\n .map(ev => 1);\n\n const count$ = add$\n .startWith(0)\n .scan((total, change) => total + change)\n\n return {\n DOM: count$.map(count =>\n div('.counter', [\n 'Count: ' + count,\n button('.add', 'Add')\n ])\n )\n };\n}\n\n// This looks a little different than normal. It's to enable support for cycle-restart,\n// which automatically plays back your actions when the code reloads.\n// See https://github.com/Widdershin/cycle-restart for more info\nconst sources = {\n DOM: restartable(makeDOMDriver('.app'), {pauseSinksWhileReplaying: false})\n}\n\n// Normally you need to call Cycle.run, but Tricycle handles that for you!\n// If you want to try this out locally, just uncomment this code.\n//\n// Cycle.run(main, sources);\n" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment