run prettify on code

This commit is contained in:
Carmine D'Amico
2016-05-25 22:28:47 +02:00
parent 510f49a99b
commit c0e5cbd9ef

View File

@@ -42,7 +42,7 @@ var SettingsPage = React.createClass({
this.handleSave(false); this.handleSave(false);
}, },
handleSave: function(backToIndex) { handleSave: function(toIndex) {
var config = { var config = {
teams: this.state.teams, teams: this.state.teams,
hideMenuBar: this.state.hideMenuBar, hideMenuBar: this.state.hideMenuBar,
@@ -58,7 +58,7 @@ var SettingsPage = React.createClass({
currentWindow.setMenuBarVisibility(!config.hideMenuBar); currentWindow.setMenuBarVisibility(!config.hideMenuBar);
} }
if (typeof backToIndex == 'undefined' || backToIndex) { if (typeof toIndex == 'undefined' || toIndex) {
backToIndex(); backToIndex();
} }
}, },
@@ -101,11 +101,11 @@ var SettingsPage = React.createClass({
<Row> <Row>
<Col md={ 12 }> <Col md={ 12 }>
<h2> <h2>
Teams Teams
<Button className="pull-right" bsSize="small" onClick={ this.handleShowTeamForm }> <Button className="pull-right" bsSize="small" onClick={ this.handleShowTeamForm }>
<Glyphicon glyph="plus" /> <Glyphicon glyph="plus" />
</Button> </Button>
</h2> </h2>
<TeamList teams={ this.state.teams } showAddTeamForm={ this.state.showAddTeamForm } onTeamsChange={ this.handleTeamsChange } /> <TeamList teams={ this.state.teams } showAddTeamForm={ this.state.showAddTeamForm } onTeamsChange={ this.handleTeamsChange } />
</Col> </Col>
</Row> </Row>
@@ -209,7 +209,8 @@ var TeamList = React.createClass({
}; };
return ( return (
<TeamListItem index={ i } key={ "teamListItem" + i } name={ team.name } url={ team.url } onTeamRemove={ handleTeamRemove } onTeamEditing={ handleTeamEditing } /> <TeamListItem index={ i } key={ "teamListItem" + i } name={ team.name } url={ team.url } onTeamRemove={ handleTeamRemove } onTeamEditing={ handleTeamEditing }
/>
); );
}); });
@@ -295,7 +296,8 @@ var TeamListItemNew = React.createClass({
}); });
}, },
shouldEnableAddButton: function() { shouldEnableAddButton: function() {
return (this.state.name.trim() !== '' || this.props.teamName !== '') && (this.state.url.trim() !== '' || this.props.teamUrl !== ''); return (this.state.name.trim() !== '' || this.props.teamName !== '')
&& (this.state.url.trim() !== '' || this.props.teamUrl !== '');
}, },
render: function() { render: function() {
@@ -326,7 +328,9 @@ var TeamListItemNew = React.createClass({
<input type="url" className="form-control" id="inputTeamURL" placeholder="https://example.com/team" value={ this.state.url } onChange={ this.handleURLChange } /> <input type="url" className="form-control" id="inputTeamURL" placeholder="https://example.com/team" value={ this.state.url } onChange={ this.handleURLChange } />
</div> </div>
{ ' ' } { ' ' }
<Button type="submit" disabled={ !this.shouldEnableAddButton() }>{ btnAddText }</Button> <Button type="submit" disabled={ !this.shouldEnableAddButton() }>
{ btnAddText }
</Button>
</form> </form>
</ListGroupItem> </ListGroupItem>
); );