mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2024-11-27 09:35:56 -05:00
small steps towards addtostudio modal's container-presentation refactor
This commit is contained in:
parent
d9543314cc
commit
9cac70ab18
7 changed files with 19 additions and 66 deletions
|
@ -155,13 +155,12 @@ class AddToStudioModal extends React.Component {
|
|||
projectStudios,
|
||||
curatedStudios,
|
||||
onAddToStudio, // eslint-disable-line no-unused-vars
|
||||
type,
|
||||
isOpen,
|
||||
onRequestClose
|
||||
} = this.props;
|
||||
const joined = this.state.joined;
|
||||
const updateQueued = this.state.updateQueued;
|
||||
const contentLabel = intl.formatMessage({id: `addToStudio.${type}`});
|
||||
const contentLabel = intl.formatMessage({id: "addToStudio.title"});
|
||||
const checkmark = <img alt="checkmark-icon"
|
||||
className="studio-status-icon-checkmark-img"
|
||||
src="/svgs/modal/confirm.svg"
|
||||
|
@ -240,13 +239,14 @@ class AddToStudioModal extends React.Component {
|
|||
</Button>
|
||||
{this.state.waitingToClose ? [
|
||||
<Button
|
||||
className="action-button submit-button"
|
||||
className="action-button submit-button submit-button-waiting"
|
||||
disabled="disabled"
|
||||
key="submitButton"
|
||||
type="submit"
|
||||
>
|
||||
<div className="action-button-text">
|
||||
<Spinner />
|
||||
<Spinner type="smooth" />
|
||||
<FormattedMessage id="addToStudio.finishing" />
|
||||
</div>
|
||||
</Button>
|
||||
] : [
|
||||
|
|
|
@ -160,6 +160,10 @@
|
|||
background-color: #3F9AFB;
|
||||
}
|
||||
|
||||
submit-button-waiting {
|
||||
background-color: #3F9AFB;
|
||||
}
|
||||
|
||||
.studio-status-icon-plus-img {
|
||||
height: 1.4rem;
|
||||
width: 1.4rem;
|
||||
|
@ -179,9 +183,9 @@
|
|||
|
||||
|
||||
.action-button-text .spinner-smooth {
|
||||
margin: -0.125rem auto 2rem;
|
||||
height: 30px;
|
||||
margin: 0.2125rem auto;
|
||||
width: 1.875rem;
|
||||
height: 1rem;
|
||||
}
|
||||
|
||||
.studio-status-icon .spinner-smooth {
|
||||
|
|
|
@ -1,31 +1,3 @@
|
|||
// NOTE: next questions:
|
||||
// * what is the lifecycle of the getStudios etc. requests? Are they guaranteed to be there
|
||||
// on page load? Are they ever updated, e.g. after you join one?
|
||||
|
||||
// design decisions:
|
||||
// * we should treat "waiting" to mean, user has requested the modal to be closed;
|
||||
// that is, if you click ok and it's waiting for responses, then you click x,
|
||||
// it closes and sets waiting to false?
|
||||
// then in the checkForOutstandingUpdates function, we close the window
|
||||
// iff waiting is true.
|
||||
// that avoids the situation where you close the window while a request is
|
||||
// outstanding, then reopen it only to have it instantly close on you.
|
||||
// * keep the okay button, it sets up an overall spinner until everything is resolved
|
||||
// * but you can totally close the window regardless
|
||||
|
||||
// sample data:
|
||||
// this.studios = [{name: 'Funny games', id: 1}, {name: 'Silly ideas', id: 2}];
|
||||
// studios data is like:
|
||||
// [{
|
||||
// id: 1702295,
|
||||
// description: "...",
|
||||
// history: {created: "2015-11-15T00:24:35.000Z",
|
||||
// modified: "2018-05-01T00:14:48.000Z"},
|
||||
// image: "http....png",
|
||||
// owner: 10689298,
|
||||
// stats: {followers: 0},
|
||||
// title: "Studio title"
|
||||
// }, {...}]
|
||||
const bindAll = require('lodash.bindall');
|
||||
const truncate = require('lodash.truncate');
|
||||
const PropTypes = require('prop-types');
|
||||
|
@ -46,7 +18,7 @@ const FlexRow = require('../../flex-row/flex-row.jsx');
|
|||
require('../../forms/button.scss');
|
||||
require('./modal.scss');
|
||||
|
||||
class AddToStudioModal extends React.Component {
|
||||
class AddToStudioModalPresentation extends React.Component {
|
||||
constructor (props) {
|
||||
super(props);
|
||||
bindAll(this, [ // NOTE: will need to add and bind callback fn to handle addind and removing studios
|
||||
|
@ -66,25 +38,6 @@ class AddToStudioModal extends React.Component {
|
|||
};
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.updateJoined(this.props.projectStudios);
|
||||
}
|
||||
|
||||
componentWillReceiveProps(nextProps) {
|
||||
this.updateJoined(nextProps.projectStudios);
|
||||
}
|
||||
|
||||
updateJoined(projectStudios) {
|
||||
// projectStudios could have dropped some studios since the last time
|
||||
// we traveresd it, so we should build the joined state object
|
||||
// from scratch.
|
||||
let joined = Object.assign({}, this.state.joined);
|
||||
projectStudios.forEach((studio) => {
|
||||
joined[studio.id] = true;
|
||||
});
|
||||
this.setState({joined: Object.assign({}, joined)});
|
||||
}
|
||||
|
||||
requestJoinStudio(studioId) {
|
||||
// submit here? or through presentation?
|
||||
}
|
||||
|
@ -149,16 +102,14 @@ class AddToStudioModal extends React.Component {
|
|||
render () {
|
||||
const {
|
||||
intl,
|
||||
projectStudios,
|
||||
curatedStudios,
|
||||
studios,
|
||||
onAddToStudio, // eslint-disable-line no-unused-vars
|
||||
type,
|
||||
isOpen,
|
||||
onRequestClose
|
||||
} = this.props;
|
||||
const joined = this.state.joined;
|
||||
const updateQueued = this.state.updateQueued;
|
||||
const contentLabel = intl.formatMessage({id: `addToStudio.${type}`});
|
||||
const contentLabel = intl.formatMessage({id: "addToStudio.title");
|
||||
const checkmark = <img alt="checkmark-icon"
|
||||
className="studio-status-icon-checkmark-img"
|
||||
src="/svgs/modal/confirm.svg"
|
||||
|
@ -267,13 +218,11 @@ class AddToStudioModal extends React.Component {
|
|||
}
|
||||
}
|
||||
|
||||
AddToStudioModal.propTypes = {
|
||||
AddToStudioModalPresentation.propTypes = {
|
||||
intl: intlShape,
|
||||
projectStudios: PropTypes.arrayOf(PropTypes.object),
|
||||
curatedStudios: PropTypes.arrayOf(PropTypes.object),
|
||||
studios: PropTypes.arrayOf(PropTypes.object),
|
||||
onAddToStudio: PropTypes.func,
|
||||
onRequestClose: PropTypes.func,
|
||||
type: PropTypes.string
|
||||
onRequestClose: PropTypes.func
|
||||
};
|
||||
|
||||
module.exports = injectIntl(AddToStudioModal);
|
||||
|
|
|
@ -76,5 +76,6 @@ $modal-close-size: 1rem;
|
|||
}
|
||||
|
||||
.action-button-text {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
|
|
|
@ -162,7 +162,8 @@
|
|||
"registration.welcomeStepTitle": "Hurray! Welcome to Scratch!",
|
||||
|
||||
"thumbnail.by": "by",
|
||||
"addToStudio.project": "Add to Studio",
|
||||
"addToStudio.title": "Add to Studio",
|
||||
"addToStudio.finishing": "Finishing up...",
|
||||
"report.project": "Report Project",
|
||||
"report.projectInstructions": "From the dropdown below, please select the reason why you feel this project is disrespectful or inappropriate or otherwise breaks the {CommunityGuidelinesLink}.",
|
||||
"report.CommunityGuidelinesLinkText": "Scratch Community Guidelines",
|
||||
|
|
|
@ -391,7 +391,6 @@ module.exports.getCuratedStudios = (username, token) => (dispatch => {
|
|||
});
|
||||
});
|
||||
|
||||
|
||||
module.exports.updateProject = (id, jsonData, username, token) => (dispatch => {
|
||||
api({
|
||||
uri: `/projects/${id}`,
|
||||
|
|
|
@ -491,7 +491,6 @@ class PreviewPresentation extends React.Component {
|
|||
<AddToStudioModal
|
||||
isOpen={this.state.addToStudioOpen}
|
||||
key="add-to-studio-modal"
|
||||
type="project"
|
||||
projectStudios={projectStudios}
|
||||
curatedStudios={this.mockedMyStudios}
|
||||
onAddToStudio={this.handleAddToStudioSubmit}
|
||||
|
|
Loading…
Reference in a new issue