mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-23 07:38:07 -05:00
Set empty states on sign out
also make state setting a bit more uniform
This commit is contained in:
parent
ade0959d94
commit
eb38951f06
1 changed files with 4 additions and 2 deletions
|
@ -39,6 +39,8 @@ var Splash = injectIntl(React.createClass({
|
|||
this.getNews();
|
||||
} else {
|
||||
this.setState({featuredCustom: []});
|
||||
this.setState({activity: []});
|
||||
this.setState({news: []});
|
||||
this.getProjectCount();
|
||||
}
|
||||
}
|
||||
|
@ -57,7 +59,7 @@ var Splash = injectIntl(React.createClass({
|
|||
this.api({
|
||||
uri: '/proxy/users/' + this.state.session.user.username + '/activity?limit=5'
|
||||
}, function (err, body) {
|
||||
if (!err) this.setState({'activity': body});
|
||||
if (!err) this.setState({activity: body});
|
||||
}.bind(this));
|
||||
},
|
||||
getFeaturedGlobal: function () {
|
||||
|
@ -78,7 +80,7 @@ var Splash = injectIntl(React.createClass({
|
|||
this.api({
|
||||
uri: '/news?limit=3'
|
||||
}, function (err, body) {
|
||||
if (!err) this.setState({'news': body});
|
||||
if (!err) this.setState({news: body});
|
||||
}.bind(this));
|
||||
},
|
||||
getProjectCount: function () {
|
||||
|
|
Loading…
Reference in a new issue