<html>
<head>
<script src="//cdnjs.cloudflare.com/ajax/libs/react/0.13.3/react.js"></script>
<script src="//npmcdn.com/react-router/umd/ReactRouter.min.js"></script>
<script src="//npmcdn.com/history/umd/History.min.js"></script>
<script type="text/javascript">
window.blogData = [
{
title: "Immutable 详解及 React 中实践",
},
{
title: "React 源码剖析系列 - 生命周期的管理艺术",
},
{
title: "React 源码剖析系列 - 解密 setState",
},
{
title: "React 源码剖析系列 - 不可思议的 react diff",
},
{
title: "Architecting Android with RxJava 程序亦非猿的Android旅程",
},
{
title: "学习 React Native for Android:React 基础 Android&iOS工程师之路",
},
{
title: "MVVM_Android-CleanArchitecture Rocko",
},
{
title: "使用 Go 开发一个 Slack 运维机器人 Java程序员",
},
]
</script>
<meta charset="utf-8">
<title>JS Bin</title>
</head>
<body>
<div id="example"></div>
</body>
</html>
var React = window.React;
var ReactRouter = window.ReactRouter;
var History = window.History;
var Router = ReactRouter.Router;
var Route = ReactRouter.Route;
var Link = ReactRouter.Link;
var Redirect = ReactRouter.Redirect;
var IndexRoute = ReactRouter.IndexRoute;
var createHistory = History.createHistory;
var useBasename = History.useBasename;
var BlogApp = React.createClass({
render: function() {
var pathname = this.props.location.pathname;
return (
<div className="blog-app">
<ul>
<li><Link activeClassName="active" to="/archives">Archives</Link></li>
<li><Link activeClassName="active" to="/about">About</Link></li>
<li><Link activeClassName="active" to="/signIn">Sign in</Link></li>
<li><Link activeClassName="active" to="/signOut">Sign out</Link></li>
</ul>
{React.cloneElement(this.props.children || <div/>, { key: pathname })}
</div>
)
}
})
var About = React.createClass({
render: function() {
return (
<div className="about">
<h1>About author</h1>
</div>
)
}
})
var Archives = React.createClass({
render: function() {
return (
<div>
原创:<br/>
{this.props.original}
转载:<br/>
{this.props.reproduce}
</div>
)
}
});
var Original = React.createClass({
render: function() {
return (
<div className="archives">
<ul>
{window.blogData.slice(0, 4).map(function(item, index) {
return <li key={index}>
<Link
to={`/article/${index}`}
query={{type: 'Original'}}
state={{title: item.title}}
>
{item.title}
</Link>
</li>
})}
</ul>
</div>
)
}
});
var Reproduce = React.createClass({
render: function() {
return (
<div className="archives">
<ul>
{window.blogData.slice(4, 8).map(function(item, index) {
return <li key={index}>
<Link
to={`/article/${index}`}
query={{type: 'Reproduce'}}
state={{title: item.title}}
hash='#hash'
>
{item.title}
</Link>
</li>
})}
</ul>
</div>
)
}
});
var Article = React.createClass({
render: function() {
var id = this.props.params.id
var location = this.props.location
return (
<div className="article">
<h2>{location.state.title}</h2>
<br/><br/>
这是文档归档 {location.query.type} 类目下的第 {++id} 篇文章,欢迎你的访问!
</div>
)
}
});
var SignIn = React.createClass({
handleSubmit: function(e) {
e.preventDefault();
var email = React.findDOMNode(this.refs.name).value
var pass = React.findDOMNode(this.refs.pass).value
if (pass !== 'password') {
return;
}
localStorage.setItem('login', 'true')
var location = this.props.location;
if (location.state && location.state.nextPathname) {
this.props.history.replaceState(null, location.state.nextPathname)
} else {
this.props.history.replaceState(null, '/about')
}
},
render: function() {
if (hasLogin()) {
return <p>你已经登录系统!<Link to="/signOut">点此退出</Link></p>
}
return (
<form onSubmit={this.handleSubmit}>
<label><input ref="name" /></label><br/>
<label><input ref="pass" /></label> (password)<br />
<button type="submit">登录</button>
</form>
)
}
})
var SignOut = React.createClass({
componentDidMount: function() {
localStorage.setItem('login', 'false')
},
render: function() {
return <p>已经退出!</p>
}
})
function hasLogin() {
return localStorage.getItem('login') === 'true';
}
function requireAuth(nextState, replaceState) {
if (!hasLogin()) {
replaceState({ nextPathname: nextState.location.pathname }, '/signIn')
}
}
React.render((
<Router>
<Route path="/" component={BlogApp}>
<IndexRoute component={SignIn}/>
<Route path="signIn" component={SignIn}/>
<Route path="signOut" component={SignOut}/>
<Redirect from="/archives" to="/archives/posts"/>
<Route onEnter={requireAuth} path="/archives" component={Archives}>
<Route path="posts" components={{
original: Original,
reproduce: Reproduce,
}}/>
</Route>
<Route path="article/:id" component={Article} />
<Route path="about" component={About} />
</Route>
</Router>
), document.getElementById('example'))
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. |