Merge pull request #1699 from mewtaylor/hotfix/avatar-endpoint

[Develop] Hotfix: Change avatar to use `uploads` endpoint
This commit is contained in:
Matthew Taylor 2017-11-28 15:33:14 -05:00 committed by GitHub
commit ea90dc9309
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -32,33 +32,40 @@ var Grid = React.createClass({
if (this.props.itemType == 'projects') {
return (
<Thumbnail key={key}
showLoves={this.props.showLoves}
showFavorites={this.props.showFavorites}
showRemixes={this.props.showRemixes}
showViews={this.props.showViews}
showAvatar={this.props.showAvatar}
type={'project'}
href={href}
title={item.title}
src={item.image}
avatar={'https://cdn2.scratch.mit.edu/get_image/user/'
+ item.author.id + '_32x32.png'}
creator={item.author.username}
loves={item.stats.loves}
favorites={item.stats.favorites}
remixes={item.stats.remixes}
views={item.stats.views} />
<Thumbnail
key={key}
showLoves={this.props.showLoves}
showFavorites={this.props.showFavorites}
showRemixes={this.props.showRemixes}
showViews={this.props.showViews}
showAvatar={this.props.showAvatar}
type={'project'}
href={href}
title={item.title}
src={item.image}
avatar={
'https://uploads.scratch.mit.edu/users/avatars/' +
item.author.id +
'.png'
}
creator={item.author.username}
loves={item.stats.loves}
favorites={item.stats.favorites}
remixes={item.stats.remixes}
views={item.stats.views}
/>
);
}
else {
return (
<Thumbnail key={key}
type={'gallery'}
href={href}
title={item.title}
src={item.image}
owner={item.owner} />
<Thumbnail
key={key}
type={'gallery'}
href={href}
title={item.title}
src={item.image}
owner={item.owner}
/>
);
}
}.bind(this))}