<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.0/angular.min.js"></script>
<meta name="description" content="[Rx + Cyclejs] lesson learned: always share replay in a stream where you create a component!">
<script src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/4.0.6/rx.all.js"></script>
<script src="https://cdn.rawgit.com/cyclejs/cycle-core/master/dist/cycle.min.js"></script>
<script src="https://cdn.rawgit.com/cyclejs/cycle-dom/master/dist/cycle-dom.min.js"></script>
<script src="https://raw.githubusercontent.com/cyclejs/isolate/master/dist/cycle-isolate.min.js"></script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div id="app"></div>
</body>
</html>
const {Observable, Subject, ReplaySubject} = Rx;
const {button, div, span, makeDOMDriver} = CycleDOM;
const isolate = CycleIsolate;
function log(from) {
return (args) =>
console.log(args + " from: " + from)
};
function UserContainer({DOM, user$}) {
const logAction$ = DOM
.select(".log")
.events("click")
.map(() => "log");
/*
* This would print a input each time the button is clicked
* assuming we have a log function
*/
logAction$.subscribe(log("UserContainer"));
return {
//what should be printed depending on the user
DOM: user$.map((user) => div([
span(".user-name", user.name),
button(".log", "Log")
])),
/*
* the log action fired when the user clicks on the
* log button
*/
logAction$: logAction$
};
}
function main({DOM}) {
const user$ = Observable.just({name: "felix"});
//we map the user stream to an 'instance' of a UserContainer
const userContainer$ = user$
.map(user =>
//from @cycle/isolate https://github.com/cyclejs/isolate
isolate(UserContainer)({ DOM, user$: Observable.just(user) })
)
/* forget this, and you will
* end up creating as many components as they are
* streams that are created from `components$`
*/
//.shareReplay();
const userContainerDOM$ = userContainer$
//meaning you will create a new component here ...
.map(container => container.DOM);
const userContainerLogAction$ = userContainer$
//... and a new component here too
.flatMapLatest(container => container.logAction$);
/*
* /!\ here is the problem, this will never print anything
* when the button is clicked !!
*/
userContainerLogAction$.subscribe(log("main function"));
return {
/* which means the DOM attribute you get from the
* `userContainerDOM$` stream is not coming from the same component
* as the `userContainerLogAction$` stream
* which means that you are completly blind and the
* `userContainerLogAction$` stream won't be feeded at all
*/
DOM: userContainerDOM$
};
}
Cycle.run(main, {
DOM: makeDOMDriver('#app')
});
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |