Merge pull request #2925 from benjiwheeler/retry-studios-for-project-endpoint

change studios for project API request to use admin status, owner status and token
This commit is contained in:
Benjamin Wheeler 2019-06-03 14:24:34 -04:00 committed by GitHub
commit 4fe1bd907e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 8 deletions

View file

@ -763,11 +763,16 @@ module.exports.getRemixes = id => (dispatch => {
});
});
module.exports.getProjectStudios = id => (dispatch => {
module.exports.getProjectStudios = (id, ownerUsername, isAdmin, token) => (dispatch => {
dispatch(module.exports.setFetchStatus('projectStudios', module.exports.Status.FETCHING));
api({
uri: `/projects/${id}/studios`
}, (err, body, res) => {
const opts = {
uri: `${isAdmin ? '/admin' : `/users/${ownerUsername}`}/projects/${id}/studios`
};
if (token) {
Object.assign(opts, {authentication: token});
}
api(opts, (err, body, res) => {
if (err) {
dispatch(module.exports.setFetchStatus('projectStudios', module.exports.Status.ERROR));
dispatch(module.exports.setError(err));

View file

@ -160,7 +160,10 @@ class Preview extends React.Component {
if (typeof this.props.projectInfo.id === 'undefined') {
this.initCounts(0, 0);
} else {
const token = this.props.user ? this.props.user.token : null;
this.initCounts(this.props.projectInfo.stats.favorites, this.props.projectInfo.stats.loves);
this.props.getProjectStudios(this.props.projectInfo.id,
this.props.authorUsername, this.props.isAdmin, token);
if (this.props.projectInfo.remix.parent !== null) {
this.props.getParentInfo(this.props.projectInfo.remix.parent);
}
@ -216,7 +219,6 @@ class Preview extends React.Component {
}
this.props.getProjectInfo(this.state.projectId, token);
this.props.getRemixes(this.state.projectId, token);
this.props.getProjectStudios(this.state.projectId, token);
this.props.getCuratedStudios(username);
this.props.getFavedStatus(this.state.projectId, username, token);
this.props.getLovedStatus(this.state.projectId, username, token);
@ -228,7 +230,6 @@ class Preview extends React.Component {
}
this.props.getProjectInfo(this.state.projectId);
this.props.getRemixes(this.state.projectId);
this.props.getProjectStudios(this.state.projectId);
}
}
setScreenFromOrientation () {
@ -984,8 +985,8 @@ const mapDispatchToProps = dispatch => ({
getRemixes: id => {
dispatch(previewActions.getRemixes(id));
},
getProjectStudios: id => {
dispatch(previewActions.getProjectStudios(id));
getProjectStudios: (id, ownerUsername, isAdmin, token) => {
dispatch(previewActions.getProjectStudios(id, ownerUsername, isAdmin, token));
},
getCuratedStudios: (username, token) => {
dispatch(previewActions.getCuratedStudios(username, token));