2013-06-30 22:38:05 +02:00
|
|
|
/** @jsx React.DOM */
|
|
|
|
var StateIcon = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
var icon_names = {"TODO": "icon-check-empty",
|
|
|
|
"DOING": "icon-sign-blank",
|
|
|
|
"DONE": "icon-check"};
|
|
|
|
return <i class={icon_names[this.props.state]}></i>;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-07-04 21:51:31 +02:00
|
|
|
var StoryTaskRow = React.createClass({
|
2013-07-04 23:55:43 +02:00
|
|
|
changeState: React.autoBind(function(event) {
|
2013-07-13 02:05:46 +02:00
|
|
|
$.post("/tasks/state", {'id': this.props.task.id})
|
|
|
|
.done(function (data, textStatus, jqXHR) {
|
2013-07-07 23:46:15 +02:00
|
|
|
if (data.status == "ok")
|
|
|
|
this.setState({state: data.state});
|
2013-07-13 02:05:46 +02:00
|
|
|
}.bind(this));
|
2013-07-04 23:55:43 +02:00
|
|
|
}),
|
2013-07-07 23:46:15 +02:00
|
|
|
getInitialState: function () {
|
|
|
|
return {state: this.props.task.state};
|
|
|
|
},
|
2013-07-04 23:55:43 +02:00
|
|
|
moveUp: React.autoBind(function(event) {
|
2013-07-13 02:05:46 +02:00
|
|
|
$.post("/tasks/up", {'id': this.props.task.id});
|
2013-07-04 23:55:43 +02:00
|
|
|
}),
|
|
|
|
moveDown: React.autoBind(function(event) {
|
2013-07-13 02:05:46 +02:00
|
|
|
$.post("/tasks/down", {'id': this.props.task.id});
|
2013-07-04 23:55:43 +02:00
|
|
|
}),
|
2013-07-04 21:51:31 +02:00
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<tr>
|
|
|
|
<td class="span1">
|
2013-07-04 23:55:43 +02:00
|
|
|
<i class="icon-arrow-up" onClick={this.moveUp}></i>
|
|
|
|
<i class="icon-arrow-down" onClick={this.moveDown}></i>
|
2013-07-04 21:51:31 +02:00
|
|
|
</td>
|
|
|
|
<td class="span2">
|
2013-07-04 23:55:43 +02:00
|
|
|
<span onClick={this.changeState}>
|
2013-07-07 23:46:15 +02:00
|
|
|
<StateIcon state={this.state.state} /> {" "}
|
|
|
|
{this.state.state}
|
2013-07-04 21:51:31 +02:00
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{this.props.task.description}
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var StoryTaskTable = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
var taskNodes = this.props.tasks.map(function (task) {
|
|
|
|
return <StoryTaskRow task={task} />;
|
2013-07-05 00:02:10 +02:00
|
|
|
}.bind(this));
|
|
|
|
|
2013-07-04 21:51:31 +02:00
|
|
|
return (
|
|
|
|
<table class="table table-striped">
|
|
|
|
{taskNodes}
|
|
|
|
</table>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var StoryTaskForm = React.createClass({
|
|
|
|
handleSubmit: React.autoBind(function() {
|
|
|
|
var text = this.refs.text.getDOMNode().value.trim();
|
|
|
|
|
|
|
|
this.props.onTaskSubmit({description: text});
|
|
|
|
|
|
|
|
this.refs.text.getDOMNode().value = '';
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}),
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<form onSubmit={this.handleSubmit}>
|
|
|
|
<fieldset>
|
|
|
|
<legend>New task</legend>
|
|
|
|
<div class="input-append">
|
|
|
|
<input type="text" ref="text" class="input-medium" />
|
|
|
|
<button type="submit" class="btn btn-primary">
|
|
|
|
Send
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2013-06-30 22:38:05 +02:00
|
|
|
var StoryData = React.createClass({
|
2013-07-04 21:51:31 +02:00
|
|
|
handleTaskSubmit: React.autoBind(function (task) {
|
2013-07-13 19:57:22 +02:00
|
|
|
task.storyId = this.state.data.id;
|
2013-07-13 02:05:46 +02:00
|
|
|
$.post("/stories/tasks/new", task);
|
2013-07-04 21:51:31 +02:00
|
|
|
}),
|
2013-07-13 19:57:22 +02:00
|
|
|
getInitialState: function() {
|
|
|
|
return {data: null};
|
|
|
|
},
|
|
|
|
setData: function(data) {
|
|
|
|
this.setState({data: data});
|
|
|
|
},
|
2013-06-30 22:38:05 +02:00
|
|
|
render: function() {
|
2013-07-13 19:57:22 +02:00
|
|
|
if (this.state.data) {
|
2013-06-30 22:38:05 +02:00
|
|
|
return (<div>
|
2013-07-13 19:57:22 +02:00
|
|
|
<h1>{this.state.data.title}</h1>
|
|
|
|
Assignee: {this.state.data.assignee}
|
|
|
|
<div class="well">
|
|
|
|
{this.state.data.content}
|
|
|
|
</div>
|
|
|
|
<StoryTaskTable tasks={this.state.data.tasks || []} />
|
|
|
|
<StoryTaskForm onTaskSubmit={this.handleTaskSubmit} />
|
2013-06-30 22:38:05 +02:00
|
|
|
</div>);
|
|
|
|
}
|
|
|
|
|
2013-07-13 19:57:22 +02:00
|
|
|
return <div></div>;
|
2013-06-30 22:38:05 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var StoryRow = React.createClass({
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<tr>
|
2013-07-04 23:45:07 +02:00
|
|
|
<td class="span1">
|
2013-06-30 22:38:05 +02:00
|
|
|
<i class="icon-arrow-up" onClick={this.moveUp}></i>
|
|
|
|
<i class="icon-arrow-down" onClick={this.moveDown}></i>
|
|
|
|
</td>
|
2013-07-04 23:45:07 +02:00
|
|
|
<td class="span2">
|
2013-06-30 22:38:05 +02:00
|
|
|
<span onClick={this.changeState}>
|
2013-07-07 23:46:15 +02:00
|
|
|
<StateIcon state={this.state.state} /> {" "}
|
|
|
|
{this.state.state}
|
2013-06-30 22:38:05 +02:00
|
|
|
</span>
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<a onClick={this.handleClick}>
|
|
|
|
As a {this.props.story.role}, I
|
|
|
|
{this.props.story.necessity} to
|
|
|
|
{this.props.story.title}
|
|
|
|
</a>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
);
|
|
|
|
},
|
|
|
|
getInitialState: function() {
|
|
|
|
return {state: this.props.story.state,
|
|
|
|
content: null};
|
|
|
|
},
|
|
|
|
handleClick: React.autoBind(function(event) {
|
2013-07-13 19:57:22 +02:00
|
|
|
this.props.onTitleClicked(this.props.story.id);
|
2013-06-30 22:38:05 +02:00
|
|
|
}),
|
|
|
|
changeState: React.autoBind(function(event) {
|
2013-07-13 02:05:46 +02:00
|
|
|
$.post("/stories/state", {'id': this.props.story.id})
|
|
|
|
.done(function(data, textStatus, jqXHR) {
|
2013-07-07 23:46:15 +02:00
|
|
|
if (data.status == "ok")
|
|
|
|
this.setState({state: data.state});
|
2013-07-13 02:05:46 +02:00
|
|
|
}.bind(this));
|
2013-06-30 22:38:05 +02:00
|
|
|
}),
|
|
|
|
moveUp: React.autoBind(function(event) {
|
2013-07-13 02:05:46 +02:00
|
|
|
$.post("/stories/up", {'id': this.props.story.id})
|
|
|
|
.done(function (data, textStatus, jqXHR) {
|
2013-07-07 23:46:15 +02:00
|
|
|
if (data.status == "ok")
|
|
|
|
this.props.onMoved(1);
|
2013-07-13 02:05:46 +02:00
|
|
|
}.bind(this));
|
2013-06-30 22:38:05 +02:00
|
|
|
}),
|
|
|
|
moveDown: React.autoBind(function(event) {
|
2013-07-13 02:05:46 +02:00
|
|
|
$.post("/stories/down", {'id': this.props.story.id})
|
|
|
|
.done(function (data) {
|
|
|
|
if (data.status == "ok")
|
|
|
|
this.props.onMoved(-1);
|
|
|
|
}.bind(this));
|
2013-06-30 22:38:05 +02:00
|
|
|
})
|
|
|
|
});
|
|
|
|
|
|
|
|
var StoryTable = React.createClass({
|
|
|
|
handleMoved: React.autoBind(function(direction) {
|
2013-07-07 23:46:15 +02:00
|
|
|
this.props.onStoryMoved(direction);
|
2013-06-30 22:38:05 +02:00
|
|
|
}),
|
2013-07-13 19:57:22 +02:00
|
|
|
handleSelected: React.autoBind(function(storyId) {
|
|
|
|
this.props.onStorySelected(storyId);
|
|
|
|
}),
|
2013-06-30 22:38:05 +02:00
|
|
|
render: function() {
|
2013-07-07 22:36:51 +02:00
|
|
|
var storyNodes = this.props.data.map(function (story) {
|
2013-07-13 19:57:22 +02:00
|
|
|
return <StoryRow story={story} onMoved={this.handleMoved}
|
|
|
|
onTitleClicked={this.handleSelected} />;
|
2013-06-30 22:38:05 +02:00
|
|
|
}.bind(this));
|
|
|
|
return (
|
|
|
|
<table class="table table-striped">
|
|
|
|
{storyNodes}
|
|
|
|
</table>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var StoryForm = React.createClass({
|
|
|
|
handleSubmit: React.autoBind(function() {
|
|
|
|
var role = this.refs.role.getDOMNode().value.trim();
|
|
|
|
var necessity = this.refs.necessity.getDOMNode().value.trim();
|
|
|
|
var headline = this.refs.headline.getDOMNode().value.trim();
|
|
|
|
var content = this.refs.content.getDOMNode().value.trim();
|
|
|
|
|
|
|
|
this.props.onStorySubmit({role: role,
|
|
|
|
necessity: necessity,
|
|
|
|
headline: headline,
|
|
|
|
content: content});
|
|
|
|
|
|
|
|
this.refs.role.getDOMNode().value = '';
|
|
|
|
this.refs.necessity.getDOMNode().value = '';
|
|
|
|
this.refs.headline.getDOMNode().value = '';
|
|
|
|
this.refs.content.getDOMNode().value = '';
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}),
|
|
|
|
render: function() {
|
|
|
|
return (
|
|
|
|
<form onSubmit={this.handleSubmit}>
|
|
|
|
<fieldset>
|
|
|
|
<legend class="toggle">New story</legend>
|
|
|
|
<div id="new-story">
|
|
|
|
<div class="input-prepend input-append">
|
|
|
|
<span class="add-on">As a </span>
|
|
|
|
<input type="text" class="input-medium" ref="role"
|
|
|
|
placeholder="person" />
|
|
|
|
<span class="add-on"> I </span>
|
|
|
|
<input type="text" class="input-small"
|
|
|
|
ref="necessity" placeholder="would like" />
|
|
|
|
<span class="add-on"> to </span>
|
|
|
|
<input type="text" class="input-xxlarge"
|
|
|
|
ref="headline" placeholder="fill in this form..." />
|
2013-07-04 23:45:07 +02:00
|
|
|
<button class="btn btn-primary" type="submit">!</button>
|
|
|
|
<br />
|
2013-06-30 22:38:05 +02:00
|
|
|
<textarea ref="content"></textarea>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
</form>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
var StoryPage = React.createClass({
|
2013-07-07 22:36:51 +02:00
|
|
|
loadStoriesFromServer: function() {
|
2013-07-13 02:05:46 +02:00
|
|
|
$.get(this.props.url)
|
|
|
|
.done(function(data) {
|
2013-07-13 19:19:36 +02:00
|
|
|
this.setState({data: []});
|
2013-07-13 02:05:46 +02:00
|
|
|
this.setState({data: data});
|
|
|
|
}.bind(this));
|
2013-07-07 22:36:51 +02:00
|
|
|
},
|
|
|
|
getInitialState: function() {
|
|
|
|
return {data: []};
|
|
|
|
},
|
|
|
|
componentWillMount: function() {
|
|
|
|
this.loadStoriesFromServer();
|
|
|
|
setInterval(
|
|
|
|
this.loadStoriesFromServer.bind(this),
|
|
|
|
this.props.pollInterval
|
|
|
|
);
|
|
|
|
},
|
2013-07-07 23:46:15 +02:00
|
|
|
handleStoryMoved: React.autoBind(function (direction) {
|
|
|
|
this.loadStoriesFromServer();
|
|
|
|
}),
|
2013-06-30 22:38:05 +02:00
|
|
|
handleStorySubmit: React.autoBind(function (story) {
|
2013-07-13 02:05:46 +02:00
|
|
|
$.post("/stories/new", story)
|
|
|
|
.done(function (data, textStatus, jqXHR) {
|
2013-07-07 22:36:51 +02:00
|
|
|
if (data.status == "ok")
|
|
|
|
this.loadStoriesFromServer();
|
2013-07-13 02:05:46 +02:00
|
|
|
}.bind(this))
|
|
|
|
.fail(function (jqXHR, textStatus, errorThrown) {
|
2013-07-07 22:36:51 +02:00
|
|
|
alert("error: " + errorThrown);
|
2013-07-13 02:05:46 +02:00
|
|
|
}.bind(this));
|
2013-06-30 22:38:05 +02:00
|
|
|
}),
|
2013-07-13 19:57:22 +02:00
|
|
|
handleStorySelected: React.autoBind(function (storyId) {
|
|
|
|
$.get('/stories/' + storyId)
|
|
|
|
.done(function (data, textStatus, jqXHR) {
|
|
|
|
this.refs.data.setData(data);
|
|
|
|
}.bind(this), 'json');
|
|
|
|
}),
|
2013-06-30 22:38:05 +02:00
|
|
|
render: function() {
|
|
|
|
return (
|
2013-07-13 19:57:22 +02:00
|
|
|
<div class="row">
|
|
|
|
<div class="span6">
|
|
|
|
<StoryTable data={this.state.data}
|
|
|
|
onStoryMoved={this.handleStoryMoved}
|
|
|
|
onStorySelected={this.handleStorySelected} />
|
|
|
|
<StoryForm onStorySubmit={this.handleStorySubmit} />
|
|
|
|
</div>
|
|
|
|
<div class="span6">
|
|
|
|
<StoryData ref="data" />
|
|
|
|
</div>
|
2013-06-30 22:38:05 +02:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
React.renderComponent(
|
2013-07-07 22:36:51 +02:00
|
|
|
<StoryPage url="/stories" pollInterval={5000} />,
|
2013-06-30 22:38:05 +02:00
|
|
|
document.getElementById('content')
|
|
|
|
);
|