mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Adds button behavior for various search result state
This commit is contained in:
parent
34093e6aa9
commit
36b90980a6
3 changed files with 38 additions and 15 deletions
|
@ -62,6 +62,7 @@
|
||||||
"general.scratchJr": "ScratchJr",
|
"general.scratchJr": "ScratchJr",
|
||||||
"general.scratchStore": "Scratch Store",
|
"general.scratchStore": "Scratch Store",
|
||||||
"general.search": "Search",
|
"general.search": "Search",
|
||||||
|
"general.searchEmpty": "Nothing found",
|
||||||
"general.signIn": "Sign in",
|
"general.signIn": "Sign in",
|
||||||
"general.statistics": "Statistics",
|
"general.statistics": "Statistics",
|
||||||
"general.studios": "Studios",
|
"general.studios": "Studios",
|
||||||
|
|
|
@ -33,7 +33,8 @@ var Search = injectIntl(React.createClass({
|
||||||
getInitialState: function () {
|
getInitialState: function () {
|
||||||
return {
|
return {
|
||||||
loaded: [],
|
loaded: [],
|
||||||
offset: 0
|
offset: 0,
|
||||||
|
loadMore: false
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
componentDidMount: function () {
|
componentDidMount: function () {
|
||||||
|
@ -70,9 +71,9 @@ var Search = injectIntl(React.createClass({
|
||||||
}, function (err, body) {
|
}, function (err, body) {
|
||||||
var loadedSoFar = this.state.loaded;
|
var loadedSoFar = this.state.loaded;
|
||||||
Array.prototype.push.apply(loadedSoFar, body);
|
Array.prototype.push.apply(loadedSoFar, body);
|
||||||
this.setState({loaded: loadedSoFar});
|
|
||||||
var currentOffset = this.state.offset + this.props.loadNumber;
|
var currentOffset = this.state.offset + this.props.loadNumber;
|
||||||
this.setState({offset: currentOffset});
|
var willLoadMore = body.length === this.props.loadNumber;
|
||||||
|
this.setState({loaded: loadedSoFar, offset: currentOffset, loadMore: willLoadMore});
|
||||||
}.bind(this));
|
}.bind(this));
|
||||||
},
|
},
|
||||||
onSearchSubmit: function (formData) {
|
onSearchSubmit: function (formData) {
|
||||||
|
@ -96,6 +97,31 @@ var Search = injectIntl(React.createClass({
|
||||||
}
|
}
|
||||||
return allTab;
|
return allTab;
|
||||||
},
|
},
|
||||||
|
getProjectBox: function () {
|
||||||
|
var results = <Grid
|
||||||
|
items={this.state.loaded}
|
||||||
|
itemType={this.props.tab}
|
||||||
|
cards={true}
|
||||||
|
showAvatar={true}
|
||||||
|
showLoves={false}
|
||||||
|
showFavorites={false}
|
||||||
|
showViews={false}
|
||||||
|
/>;
|
||||||
|
var searchAction = null;
|
||||||
|
if (this.state.loaded.length === 0 && this.state.offset !== 0) {
|
||||||
|
searchAction = <h2 className="search-prompt"><FormattedMessage id="general.searchEmpty" /></h2>;
|
||||||
|
} else if (this.state.loadMore) {
|
||||||
|
searchAction = <Button onClick={this.getSearchMore} className="white">
|
||||||
|
<FormattedMessage id='general.loadMore' />
|
||||||
|
</Button>;
|
||||||
|
}
|
||||||
|
return (
|
||||||
|
<div id='projectBox' key='projectBox'>
|
||||||
|
{results}
|
||||||
|
{searchAction}
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
},
|
||||||
render: function () {
|
render: function () {
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
|
@ -109,18 +135,7 @@ var Search = injectIntl(React.createClass({
|
||||||
{this.getTab('projects')}
|
{this.getTab('projects')}
|
||||||
{this.getTab('studios')}
|
{this.getTab('studios')}
|
||||||
</Tabs>
|
</Tabs>
|
||||||
<div id='projectBox' key='projectBox'>
|
{this.getProjectBox()}
|
||||||
<Grid items={this.state.loaded}
|
|
||||||
itemType={this.props.tab}
|
|
||||||
cards={true}
|
|
||||||
showAvatar={true}
|
|
||||||
showLoves={false}
|
|
||||||
showFavorites={false}
|
|
||||||
showViews={false} />
|
|
||||||
<Button onClick={this.getSearchMore} className="white">
|
|
||||||
<FormattedMessage id='general.loadMore' />
|
|
||||||
</Button>
|
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
|
|
|
@ -132,6 +132,13 @@ $base-bg: $ui-white;
|
||||||
display: block;
|
display: block;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.search-prompt {
|
||||||
|
margin: 0 auto;
|
||||||
|
padding: 30px;
|
||||||
|
max-width: 500px;
|
||||||
|
text-align: center;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue