gab-social/app/javascript/gabsocial/features/group_create.js

377 lines
11 KiB
JavaScript
Raw Normal View History

import React from 'react'
import PropTypes from 'prop-types'
import { connect } from 'react-redux'
2020-03-06 15:38:22 +00:00
import ImmutablePropTypes from 'react-immutable-proptypes'
import ImmutablePureComponent from 'react-immutable-pure-component'
2020-02-29 15:42:47 +00:00
import { defineMessages, injectIntl } from 'react-intl'
2020-03-06 15:38:22 +00:00
import isObject from 'lodash.isobject'
2020-04-28 06:33:58 +01:00
import {
changeGroupTitle,
changeGroupDescription,
changeGroupCoverImage,
2020-08-06 05:59:14 +01:00
changeGroupId,
changeGroupTags,
changeGroupCategory,
changeGroupIsPrivate,
changeGroupIsVisible,
2020-04-28 06:33:58 +01:00
submit,
setGroup,
resetEditor,
} from '../actions/group_editor'
import { closeModal } from '../actions/modal'
2020-08-06 05:59:14 +01:00
import { fetchGroup } from '../actions/groups'
import { fetchGroupCategories } from '../actions/group_categories'
2020-04-28 06:33:58 +01:00
import ColumnIndicator from '../components/column_indicator'
2020-03-05 15:44:17 +00:00
import Button from '../components/button'
import Divider from '../components/divider'
import Input from '../components/input'
import Text from '../components/text'
2020-04-28 06:33:58 +01:00
import Form from '../components/form'
2020-08-06 05:59:14 +01:00
import Switch from '../components/switch'
import Select from '../components/select'
2020-03-05 15:44:17 +00:00
import Textarea from '../components/textarea'
import FileInput from '../components/file_input'
2019-07-02 08:10:25 +01:00
const messages = defineMessages({
2020-08-06 05:59:14 +01:00
title: { id: 'groups.form.title', defaultMessage: 'Title' },
idTitle: { id: 'groups.form.id_title', defaultMessage: 'Unique id' },
idDescription: { id: 'groups.form.id_description', defaultMessage: 'A unique id that links to this group. (Cannot be changed)' },
tagsTitle: { id: 'groups.form.tags_title', defaultMessage: 'Tags' },
tagsDescription: { id: 'groups.form.tags_description', defaultMessage: 'Add tags seperated by commas to increase group visibility' },
categoryTitle: { id: 'groups.form.category_title', defaultMessage: 'Category' },
categoryDescription: { id: 'groups.form.category_description', defaultMessage: 'Add a general category for your group' },
2019-07-18 20:37:53 +01:00
description: { id: 'groups.form.description', defaultMessage: 'Enter the group description' },
coverImage: { id: 'groups.form.coverImage', defaultMessage: 'Upload a banner image' },
2020-08-06 05:59:14 +01:00
coverImageDescription: { id: 'groups.form.coverImage_description', defaultMessage: 'Accepted image types: .jpg, .png' },
2019-07-18 20:37:53 +01:00
coverImageChange: { id: 'groups.form.coverImageChange', defaultMessage: 'Banner image selected' },
2019-07-17 19:22:19 +01:00
create: { id: 'groups.form.create', defaultMessage: 'Create group' },
2020-03-06 15:38:22 +00:00
update: { id: 'groups.form.update', defaultMessage: 'Update group' },
2020-04-28 06:33:58 +01:00
titlePlaceholder: { id: 'groups.form.title_placeholder', defaultMessage: 'New group title...' },
2020-08-06 05:59:14 +01:00
descriptionPlaceholder: { id: 'groups.form.description_placeholder', defaultMessage: 'This group is about...' },
isPrivateDescription: { id: 'groups.form.is_private_description', defaultMessage: 'Only members can see group posts.' },
isVisibleDescription: { id: 'groups.form.is_visible_description', defaultMessage: 'Anyone can find a visible group in search and other places on Gab.' },
2020-02-29 15:42:47 +00:00
})
2019-07-02 08:10:25 +01:00
2020-03-06 15:38:22 +00:00
const mapStateToProps = (state, { params }) => {
const groupId = isObject(params) ? params['id'] : null
const group = state.getIn(['groups', groupId])
2020-08-06 05:59:14 +01:00
let isAdmin = false
if (groupId) {
const relationships = state.getIn(['group_relationships', groupId])
if (relationships) {
isAdmin = relationships.get('admin')
}
}
2020-03-06 15:38:22 +00:00
return {
group,
2020-08-06 05:59:14 +01:00
groupId,
isAdmin,
2020-08-06 05:59:14 +01:00
error: (groupId && !group) || (group && !isAdmin),
2020-04-28 06:33:58 +01:00
titleValue: state.getIn(['group_editor', 'title']),
descriptionValue: state.getIn(['group_editor', 'description']),
2020-03-06 15:38:22 +00:00
coverImage: state.getIn(['group_editor', 'coverImage']),
2020-04-28 06:33:58 +01:00
isSubmitting: state.getIn(['group_editor', 'isSubmitting']),
2020-08-06 05:59:14 +01:00
idValue: state.getIn(['group_editor', 'id']),
tags: state.getIn(['group_editor', 'tags']),
category: state.getIn(['group_editor', 'category']),
isPrivate: state.getIn(['group_editor', 'isPrivate']),
isVisible: state.getIn(['group_editor', 'isVisible']),
categories: state.getIn(['group_categories', 'items']),
2020-03-06 15:38:22 +00:00
}
}
2019-07-02 08:10:25 +01:00
2020-04-11 23:29:19 +01:00
const mapDispatchToProps = (dispatch) => ({
2020-08-06 05:59:14 +01:00
onTitleChange(value) {
2020-04-28 06:33:58 +01:00
dispatch(changeGroupTitle(value))
},
2020-08-06 05:59:14 +01:00
onDescriptionChange(value) {
2020-04-28 06:33:58 +01:00
dispatch(changeGroupDescription(value))
},
2020-08-06 05:59:14 +01:00
onCoverImageChange(imageData) {
2020-04-28 06:33:58 +01:00
dispatch(changeGroupCoverImage(imageData))
},
2020-08-06 05:59:14 +01:00
onChangeGroupId(value) {
dispatch(changeGroupId(value))
},
onChangeGroupTags(value) {
dispatch(changeGroupTags(value))
},
onChangeGroupCategory(e) {
dispatch(changeGroupCategory(e.target.value))
},
onChangeGroupIsPrivate(value) {
dispatch(changeGroupIsPrivate(value))
},
onChangeGroupIsVisible(value) {
dispatch(changeGroupIsVisible(value))
},
onResetEditor() {
2020-04-28 06:33:58 +01:00
dispatch(resetEditor())
},
2020-08-06 05:59:14 +01:00
onSetGroup(group) {
2020-04-28 06:33:58 +01:00
dispatch(setGroup(group))
},
2020-08-06 05:59:14 +01:00
onSubmit(routerHistory) {
dispatch(submit(routerHistory))
dispatch(closeModal())
},
2020-08-06 05:59:14 +01:00
onFetchGroup(groupId) {
dispatch(fetchGroup(groupId))
},
onFetchGroupCategories() {
dispatch(fetchGroupCategories())
}
2020-02-29 15:42:47 +00:00
})
2019-07-02 08:10:25 +01:00
2020-02-25 16:04:44 +00:00
export default
2019-07-02 08:10:25 +01:00
@injectIntl
2020-04-28 06:33:58 +01:00
@connect(mapStateToProps, mapDispatchToProps)
class GroupCreate extends ImmutablePureComponent {
2019-07-02 08:10:25 +01:00
2019-07-17 19:22:19 +01:00
static contextTypes = {
router: PropTypes.object
}
static propTypes = {
2020-03-06 15:38:22 +00:00
group: ImmutablePropTypes.map,
2020-04-28 06:33:58 +01:00
titleValue: PropTypes.string.isRequired,
descriptionValue: PropTypes.string.isRequired,
2019-07-17 19:22:19 +01:00
coverImage: PropTypes.object,
intl: PropTypes.object.isRequired,
onTitleChange: PropTypes.func.isRequired,
2020-04-28 06:33:58 +01:00
onDescriptionChange: PropTypes.func.isRequired,
2020-08-06 05:59:14 +01:00
onChangeGroupId: PropTypes.func.isRequired,
onChangeGroupTags: PropTypes.func.isRequired,
onChangeGroupCategory: PropTypes.func.isRequired,
onChangeGroupIsPrivate: PropTypes.func.isRequired,
onChangeGroupIsVisible: PropTypes.func.isRequired,
onFetchGroup: PropTypes.func.isRequired,
onFetchGroupCategories: PropTypes.func.isRequired,
2020-04-28 06:33:58 +01:00
onResetEditor: PropTypes.func.isRequired,
onSetGroup: PropTypes.func.isRequired,
2019-07-17 19:22:19 +01:00
onSubmit: PropTypes.func.isRequired,
2020-04-28 06:33:58 +01:00
isSubmitting: PropTypes.bool,
isAdmin: PropTypes.bool,
2020-05-14 21:45:39 +01:00
onClose: PropTypes.func,
2020-08-06 05:59:14 +01:00
idValue: PropTypes.string.isRequired,
tags: PropTypes.string.isRequired,
category: PropTypes.string.isRequired,
isPrivate: PropTypes.bool.isRequired,
isVisible: PropTypes.bool.isRequired,
categories: ImmutablePropTypes.list.isRequired,
2020-02-29 15:42:47 +00:00
}
2019-07-17 19:22:19 +01:00
2020-04-28 06:33:58 +01:00
componentDidMount() {
2020-08-06 05:59:14 +01:00
const { groupId, group } = this.props
this.props.onFetchGroupCategories()
if (!group) {
if (groupId) {
this.props.onFetchGroup(groupId)
} else {
this.props.onResetEditor()
}
2020-03-06 15:38:22 +00:00
} else {
2020-08-06 05:59:14 +01:00
this.props.onSetGroup(group)
2020-03-06 15:38:22 +00:00
}
}
componentWillReceiveProps(nextProps) {
if (this.props.group !== nextProps.group && !!nextProps.group) {
2020-04-28 06:33:58 +01:00
this.props.onSetGroup(nextProps.group)
2020-03-06 15:38:22 +00:00
}
2019-07-17 19:22:19 +01:00
}
2020-04-28 06:33:58 +01:00
handleCoverImageChange = (e) => {
try {
this.props.onCoverImageChange(e.target.files[0])
} catch (error) {
//
}
2019-07-17 19:22:19 +01:00
}
2020-04-28 06:33:58 +01:00
handleSubmit = (e) => {
2020-02-29 15:42:47 +00:00
e.preventDefault()
2020-05-14 21:45:39 +01:00
if (this.props.onClose) this.props.onClose()
2020-02-29 15:42:47 +00:00
this.props.onSubmit(this.context.router.history)
2019-07-17 19:22:19 +01:00
}
2020-08-06 05:59:14 +01:00
2020-02-29 15:42:47 +00:00
render() {
2020-03-05 15:44:17 +00:00
const {
2020-03-06 15:38:22 +00:00
group,
error,
2020-04-28 06:33:58 +01:00
titleValue,
descriptionValue,
2020-03-05 15:44:17 +00:00
coverImage,
2020-04-28 06:33:58 +01:00
intl,
onTitleChange,
onDescriptionChange,
2020-08-06 05:59:14 +01:00
onChangeGroupId,
onChangeGroupTags,
onChangeGroupCategory,
onChangeGroupIsPrivate,
onChangeGroupIsVisible,
2020-04-28 06:33:58 +01:00
isSubmitting,
onSubmit,
2020-08-06 05:59:14 +01:00
idValue,
tags,
category,
isPrivate,
isVisible,
groupId,
categories,
isAdmin,
2020-03-05 15:44:17 +00:00
} = this.props
2019-07-17 19:22:19 +01:00
2020-08-06 05:59:14 +01:00
if (!group && groupId) {
return <ColumnIndicator type='loading' />
} else if ((!group && error) || (groupId && !isAdmin)) {
2020-03-06 15:38:22 +00:00
return <ColumnIndicator type='missing' />
}
2020-08-06 05:59:14 +01:00
const memberCount = group ? group.get('member_count') : 0
const hasGroupSlug = group ? !!group.get('slug') : false
2020-08-06 05:59:14 +01:00
let categoriesOptions = []
if (categories) {
for (let i = 0; i < categories.count(); i++) {
const c = categories.get(i)
categoriesOptions.push({
title: c.get('text'),
value: c.get('id'),
})
}
}
2019-07-17 19:22:19 +01:00
return (
2020-04-28 06:33:58 +01:00
<Form onSubmit={onSubmit}>
2020-03-05 15:44:17 +00:00
<Input
2020-08-06 05:59:14 +01:00
id='group-title'
2020-03-05 15:44:17 +00:00
title={intl.formatMessage(messages.title)}
2020-04-28 06:33:58 +01:00
value={titleValue}
onChange={onTitleChange}
disabled={isSubmitting}
placeholder={intl.formatMessage(messages.titlePlaceholder)}
2020-03-05 15:44:17 +00:00
/>
2020-04-23 07:13:29 +01:00
<Divider isInvisible />
2020-03-05 15:44:17 +00:00
2020-08-06 05:59:14 +01:00
{
memberCount >= 50 && !hasGroupSlug &&
<React.Fragment>
2020-08-06 05:59:14 +01:00
<Input
id='group-id'
title={intl.formatMessage(messages.idTitle)}
value={idValue}
onChange={onChangeGroupId}
disabled={isSubmitting}
/>
<Text className={[_s.mt5, _s.pl15]} size='small' color='secondary'>
{
!!idValue &&
<b>g/{idValue}&nbsp;&nbsp;</b>
}
{intl.formatMessage(messages.idDescription)}
</Text>
<Divider isInvisible />
</React.Fragment>
2020-08-06 05:59:14 +01:00
}
<Input
id='group-tags'
title={intl.formatMessage(messages.tagsTitle)}
value={tags}
onChange={onChangeGroupTags}
disabled={isSubmitting}
/>
<Text className={[_s.mt5, _s.pl15]} size='small' color='secondary'>
{intl.formatMessage(messages.tagsDescription)}
</Text>
<Divider isInvisible />
<div className={_s.default}>
<Text className={[_s.pl15, _s.mb10].join(' ')} size='small' weight='medium' color='secondary'>
{intl.formatMessage(messages.categoryTitle)}
</Text>
<Select
value={category}
onChange={onChangeGroupCategory}
options={categoriesOptions}
/>
<Text className={[_s.mt5, _s.pl15].join(' ')} size='small' color='secondary'>
{intl.formatMessage(messages.categoryDescription)}
</Text>
<Divider isInvisible />
</div>
2020-03-05 15:44:17 +00:00
<Textarea
title={intl.formatMessage(messages.description)}
2020-04-28 06:33:58 +01:00
value={descriptionValue}
onChange={onDescriptionChange}
placeholder={intl.formatMessage(messages.descriptionPlaceholder)}
disabled={isSubmitting}
2020-03-05 15:44:17 +00:00
/>
2020-04-23 07:13:29 +01:00
<Divider isInvisible />
2020-03-05 15:44:17 +00:00
<FileInput
2020-04-28 06:33:58 +01:00
disabled={isSubmitting}
id='group-cover-photo'
2020-03-05 15:44:17 +00:00
title={intl.formatMessage(coverImage === null ? messages.coverImage : messages.coverImageChange)}
onChange={this.handleCoverImageChange}
file={group ? group.get('cover_image_url') : undefined}
2020-03-05 15:44:17 +00:00
width='340px'
height='145px'
isBordered
2020-03-05 15:44:17 +00:00
/>
2020-08-06 05:59:14 +01:00
<Text className={[_s.mt5, _s.pl15].join(' ')} size='small' color='secondary'>
{intl.formatMessage(messages.coverImageDescription)}
</Text>
2020-03-05 15:44:17 +00:00
2020-04-23 07:13:29 +01:00
<Divider isInvisible />
2020-08-06 05:59:14 +01:00
<Switch
label={'Private'}
id='group-isprivate'
checked={isPrivate}
onChange={onChangeGroupIsPrivate}
/>
<Text className={_s.mt5} size='small' color='secondary'>
{intl.formatMessage(messages.isPrivateDescription)}
</Text>
2020-03-05 15:44:17 +00:00
2020-08-06 05:59:14 +01:00
<Divider isInvisible />
<Switch
label={'Visible'}
id='group-isvisible'
checked={isVisible}
onChange={onChangeGroupIsVisible}
/>
<Text className={_s.mt5} size='small' color='secondary'>
{intl.formatMessage(messages.isVisibleDescription)}
</Text>
<Divider isInvisible />
2020-04-28 06:33:58 +01:00
<Button
isDisabled={!titleValue || !descriptionValue && !isSubmitting}
onClick={this.handleSubmit}
>
<Text color='inherit' align='center'>
2020-03-06 15:38:22 +00:00
{intl.formatMessage(!!group ? messages.update : messages.create)}
2020-03-05 15:44:17 +00:00
</Text>
</Button>
2020-04-28 06:33:58 +01:00
</Form>
2020-02-29 15:42:47 +00:00
)
2019-07-17 19:22:19 +01:00
}
2019-07-02 08:10:25 +01:00
}