New time selector proto
This commit is contained in:
@@ -77,7 +77,6 @@ var App = React.createClass({
|
||||
<Menu orgs={this.state.orgs} teams={this.state.teams} />
|
||||
<Router.RouteHandler />
|
||||
</div>
|
||||
<WeekIntervalSelector />
|
||||
</div>
|
||||
);
|
||||
}
|
||||
@@ -112,7 +111,7 @@ var Menu = React.createClass({
|
||||
return (
|
||||
<div className="menu">
|
||||
<ul>
|
||||
<li key="empact">
|
||||
<li className="empact">
|
||||
<Link to="org" params={this.getParams()} className="logo-button">
|
||||
<div className="logo e">e</div>
|
||||
<div className="logo m">m</div>
|
||||
@@ -122,9 +121,9 @@ var Menu = React.createClass({
|
||||
<div className="logo t">t</div>
|
||||
</Link>
|
||||
</li>
|
||||
<li key="orgs-header" className="nav header">Organizations:</li>
|
||||
<li className="nav header">Organizations:</li>
|
||||
{this.props.orgs.map(renderOrg)}
|
||||
<li key="teams-header" className="nav header">Teams:</li>
|
||||
<li className="nav header">Teams:</li>
|
||||
{this.props.teams.map(renderTeam)}
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
@@ -120,7 +120,7 @@ var BarChart = React.createClass({
|
||||
return (
|
||||
<div className="barchart-container">
|
||||
<div className="whatsgoingon">
|
||||
This bar chart represents <em>{words.items[this.state.item]}</em> {words.actions[this.state.item]} <em>{who}</em> {words.item[subject]} from <em>W11, Mar 9</em> to <em>W18, Apr 27</em>
|
||||
This bar chart represents <em>{words.items[this.state.item]}</em> {words.actions[this.state.item]} <em>{who}</em> {words.item[subject]} from <em className="date">Mar 9</em> to <em className="date">Apr 27</em>
|
||||
</div>
|
||||
<div className="filters">
|
||||
<Selector thing="sort"
|
||||
|
||||
@@ -196,7 +196,7 @@ var StackedAreaChart = React.createClass({
|
||||
return (
|
||||
<div className="sachart-container">
|
||||
<div className="whatsgoingon">
|
||||
This stacked area chart represents <em>{words.items[this.state.item]}</em> {words.actions[this.state.item]} <em>{who}</em> {words.item[subject]} from <em>W11, Mar 9</em> to <em>W18, Apr 27</em>
|
||||
This stacked area chart represents <em>{words.items[this.state.item]}</em> {words.actions[this.state.item]} <em>{who}</em> {words.item[subject]} from <em className="date">Mar 9</em> to <em className="date">Apr 27</em>
|
||||
</div>
|
||||
<div className="filters">
|
||||
<Selector thing="sort"
|
||||
|
||||
Reference in New Issue
Block a user