121 lines
4.5 KiB
TypeScript
121 lines
4.5 KiB
TypeScript
import React, { useState } from 'react';
|
|
import { defineMessages, FormattedMessage, useIntl } from 'react-intl';
|
|
|
|
import { useGroup, useUpdateGroup } from 'soapbox/api/hooks';
|
|
import { Button, Column, Form, FormActions, FormGroup, Icon, Input, Spinner, Textarea } from 'soapbox/components/ui';
|
|
import { useAppSelector, useInstance } from 'soapbox/hooks';
|
|
import { useImageField, useTextField } from 'soapbox/hooks/forms';
|
|
import toast from 'soapbox/toast';
|
|
import { isDefaultAvatar, isDefaultHeader } from 'soapbox/utils/accounts';
|
|
|
|
import AvatarPicker from '../edit-profile/components/avatar-picker';
|
|
import HeaderPicker from '../edit-profile/components/header-picker';
|
|
|
|
const nonDefaultAvatar = (url: string | undefined) => url && isDefaultAvatar(url) ? undefined : url;
|
|
const nonDefaultHeader = (url: string | undefined) => url && isDefaultHeader(url) ? undefined : url;
|
|
|
|
const messages = defineMessages({
|
|
heading: { id: 'navigation_bar.edit_group', defaultMessage: 'Edit Group' },
|
|
groupNamePlaceholder: { id: 'manage_group.fields.name_placeholder', defaultMessage: 'Group Name' },
|
|
groupDescriptionPlaceholder: { id: 'manage_group.fields.description_placeholder', defaultMessage: 'Description' },
|
|
groupSaved: { id: 'group.update.success', defaultMessage: 'Group successfully saved' },
|
|
});
|
|
|
|
interface IEditGroup {
|
|
params: {
|
|
groupId: string;
|
|
};
|
|
}
|
|
|
|
const EditGroup: React.FC<IEditGroup> = ({ params: { groupId } }) => {
|
|
const intl = useIntl();
|
|
const instance = useInstance();
|
|
|
|
const { group, isLoading } = useGroup(groupId);
|
|
const { updateGroup } = useUpdateGroup(groupId);
|
|
|
|
const [isSubmitting, setIsSubmitting] = useState(false);
|
|
|
|
const avatar = useImageField({ maxPixels: 400 * 400, preview: nonDefaultAvatar(group?.avatar) });
|
|
const header = useImageField({ maxPixels: 1920 * 1080, preview: nonDefaultHeader(group?.header) });
|
|
|
|
const displayName = useTextField(group?.display_name);
|
|
const note = useTextField(group?.note_plain);
|
|
|
|
const maxName = Number(instance.configuration.groups.max_characters_name);
|
|
const maxNote = Number(instance.configuration.groups.max_characters_description);
|
|
|
|
const attachmentTypes = useAppSelector(state => state.instance.configuration.media_attachments.supported_mime_types)
|
|
?.filter((type) => type.startsWith('image/'))
|
|
.join(',');
|
|
|
|
async function handleSubmit() {
|
|
setIsSubmitting(true);
|
|
|
|
await updateGroup({
|
|
display_name: displayName.value,
|
|
note: note.value,
|
|
avatar: avatar.file === null ? '' : avatar.file,
|
|
header: header.file === null ? '' : header.file,
|
|
}, {
|
|
onSuccess() {
|
|
toast.success(intl.formatMessage(messages.groupSaved));
|
|
},
|
|
onError(error) {
|
|
const message = (error.response?.data as any)?.error;
|
|
|
|
if (error.response?.status === 422 && typeof message !== 'undefined') {
|
|
toast.error(message);
|
|
}
|
|
},
|
|
});
|
|
|
|
setIsSubmitting(false);
|
|
}
|
|
|
|
if (isLoading) {
|
|
return <Spinner />;
|
|
}
|
|
|
|
return (
|
|
<Column label={intl.formatMessage(messages.heading)}>
|
|
<Form onSubmit={handleSubmit}>
|
|
<div className='relative mb-12 flex'>
|
|
<HeaderPicker accept={attachmentTypes} disabled={isSubmitting} {...header} />
|
|
<AvatarPicker accept={attachmentTypes} disabled={isSubmitting} {...avatar} />
|
|
</div>
|
|
<FormGroup
|
|
labelText={<FormattedMessage id='manage_group.fields.name_label_optional' defaultMessage='Group name' />}
|
|
hintText={<FormattedMessage id='manage_group.fields.cannot_change_hint' defaultMessage='This cannot be changed after the group is created.' />}
|
|
>
|
|
<Input
|
|
type='text'
|
|
placeholder={intl.formatMessage(messages.groupNamePlaceholder)}
|
|
maxLength={maxName}
|
|
{...displayName}
|
|
append={<Icon className='h-5 w-5 text-gray-600' src={require('@tabler/icons/outline/lock.svg')} />}
|
|
disabled
|
|
/>
|
|
</FormGroup>
|
|
<FormGroup
|
|
labelText={<FormattedMessage id='manage_group.fields.description_label' defaultMessage='Description' />}
|
|
>
|
|
<Textarea
|
|
autoComplete='off'
|
|
placeholder={intl.formatMessage(messages.groupDescriptionPlaceholder)}
|
|
maxLength={maxNote}
|
|
{...note}
|
|
/>
|
|
</FormGroup>
|
|
|
|
<FormActions>
|
|
<Button theme='primary' type='submit' disabled={isSubmitting} block>
|
|
<FormattedMessage id='edit_profile.save' defaultMessage='Save' />
|
|
</Button>
|
|
</FormActions>
|
|
</Form>
|
|
</Column>
|
|
);
|
|
};
|
|
|
|
export default EditGroup;
|