493634aee5
Added all post-function icon sprites to the app. Remove FA icon from the form and used bg sprite for upload button. Will match all other post / composer / widget ui buttons eventually.
149 lines
4.2 KiB
JavaScript
149 lines
4.2 KiB
JavaScript
import React from 'react';
|
|
import { connect } from 'react-redux';
|
|
import PropTypes from 'prop-types';
|
|
import ImmutablePropTypes from 'react-immutable-proptypes';
|
|
import { changeValue, submit, setUp } from '../../../actions/group_editor';
|
|
import Icon from '../../../components/icon';
|
|
import { defineMessages, injectIntl } from 'react-intl';
|
|
import LoadingIndicator from '../../../components/loading_indicator';
|
|
import Column from '../../../components/column';
|
|
import classNames from 'classnames';
|
|
|
|
const messages = defineMessages({
|
|
title: { id: 'groups.form.title', defaultMessage: 'Title' },
|
|
description: { id: 'groups.form.description', defaultMessage: 'Description' },
|
|
coverImage: { id: 'groups.form.coverImage', defaultMessage: 'Upload new banner image (optional)' },
|
|
coverImageChange: { id: 'groups.form.coverImageChange', defaultMessage: 'Banner image selected' },
|
|
update: { id: 'groups.form.update', defaultMessage: 'Update group' },
|
|
});
|
|
|
|
const mapStateToProps = (state, props) => ({
|
|
group: state.getIn(['groups', props.params.id]),
|
|
title: state.getIn(['group_editor', 'title']),
|
|
description: state.getIn(['group_editor', 'description']),
|
|
coverImage: state.getIn(['group_editor', 'coverImage']),
|
|
disabled: state.getIn(['group_editor', 'isSubmitting']),
|
|
});
|
|
|
|
const mapDispatchToProps = dispatch => ({
|
|
onTitleChange: value => dispatch(changeValue('title', value)),
|
|
onDescriptionChange: value => dispatch(changeValue('description', value)),
|
|
onCoverImageChange: value => dispatch(changeValue('coverImage', value)),
|
|
onSubmit: routerHistory => dispatch(submit(routerHistory)),
|
|
setUp: group => dispatch(setUp(group)),
|
|
});
|
|
|
|
export default @connect(mapStateToProps, mapDispatchToProps)
|
|
@injectIntl
|
|
class Edit extends React.PureComponent {
|
|
|
|
static contextTypes = {
|
|
router: PropTypes.object
|
|
}
|
|
|
|
static propTypes = {
|
|
group: ImmutablePropTypes.map,
|
|
title: PropTypes.string.isRequired,
|
|
description: PropTypes.string.isRequired,
|
|
coverImage: PropTypes.object,
|
|
disabled: PropTypes.bool,
|
|
intl: PropTypes.object.isRequired,
|
|
onTitleChange: PropTypes.func.isRequired,
|
|
onSubmit: PropTypes.func.isRequired,
|
|
};
|
|
|
|
componentWillMount(nextProps) {
|
|
if (this.props.group) {
|
|
this.props.setUp(this.props.group);
|
|
}
|
|
}
|
|
|
|
componentWillReceiveProps(nextProps) {
|
|
if (!this.props.group && nextProps.group) {
|
|
this.props.setUp(nextProps.group);
|
|
}
|
|
}
|
|
|
|
handleTitleChange = e => {
|
|
this.props.onTitleChange(e.target.value);
|
|
}
|
|
|
|
handleDescriptionChange = e => {
|
|
this.props.onDescriptionChange(e.target.value);
|
|
}
|
|
|
|
handleCoverImageChange = e => {
|
|
this.props.onCoverImageChange(e.target.files[0]);
|
|
}
|
|
|
|
handleSubmit = e => {
|
|
e.preventDefault();
|
|
this.props.onSubmit(this.context.router.history);
|
|
}
|
|
|
|
handleClick = () => {
|
|
this.props.onSubmit(this.context.router.history);
|
|
}
|
|
|
|
render () {
|
|
const { group, title, description, coverImage, disabled, intl } = this.props;
|
|
|
|
if (typeof group === 'undefined') {
|
|
return (
|
|
<Column>
|
|
<LoadingIndicator />
|
|
</Column>
|
|
);
|
|
} else if (group === false) {
|
|
return (
|
|
<Column>
|
|
<MissingIndicator />
|
|
</Column>
|
|
);
|
|
}
|
|
|
|
return (
|
|
<form className='group-form' onSubmit={this.handleSubmit}>
|
|
<div>
|
|
<input
|
|
className='standard'
|
|
type='text'
|
|
value={title}
|
|
disabled={disabled}
|
|
onChange={this.handleTitleChange}
|
|
placeholder={intl.formatMessage(messages.title)}
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<textarea
|
|
className='standard'
|
|
type='text'
|
|
value={description}
|
|
disabled={disabled}
|
|
onChange={this.handleDescriptionChange}
|
|
placeholder={intl.formatMessage(messages.description)}
|
|
/>
|
|
</div>
|
|
|
|
<div>
|
|
<label htmlFor='group_cover_image' className={classNames('group-form__file-label', { 'group-form__file-label--selected': coverImage !== null })}>
|
|
{intl.formatMessage(coverImage === null ? messages.coverImage : messages.coverImageChange)}
|
|
</label>
|
|
|
|
<input
|
|
type='file'
|
|
className='group-form__file'
|
|
id='group_cover_image'
|
|
disabled={disabled}
|
|
onChange={this.handleCoverImageChange}
|
|
/>
|
|
|
|
<button>{intl.formatMessage(messages.update)}</button>
|
|
</div>
|
|
</form>
|
|
);
|
|
}
|
|
|
|
}
|