File size: 4,594 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 |
import { Card, FormLabel } from '@automattic/components';
import { useTranslate } from 'i18n-calypso';
import { useState } from 'react';
import FormButton from 'calypso/components/forms/form-button';
import FormButtonsBar from 'calypso/components/forms/form-buttons-bar';
import FormFieldset from 'calypso/components/forms/form-fieldset';
import FormLegend from 'calypso/components/forms/form-legend';
import FormRadio from 'calypso/components/forms/form-radio';
import FormSettingExplanation from 'calypso/components/forms/form-setting-explanation';
import FormTextInput from 'calypso/components/forms/form-text-input';
import FormTextarea from 'calypso/components/forms/form-textarea';
const INITIAL_UPDATE_FORM_STATE = {
description: '',
is_public: true,
is_immutable: false,
title: '',
};
const INITIAL_CREATE_FORM_STATE = {
...INITIAL_UPDATE_FORM_STATE,
slug: '',
};
export default function ListForm( { isCreateForm, isSubmissionDisabled, list = {}, onSubmit } ) {
const translate = useTranslate();
const [ formList, updateFormList ] = useState(
isCreateForm ? INITIAL_CREATE_FORM_STATE : { ...INITIAL_UPDATE_FORM_STATE, ...list }
);
// If list.is_immutable this list is permanent - render minimal form with no edit options
if ( list?.is_immutable ) {
return (
<Card>
<FormFieldset>
<FormLabel htmlFor="list-name">{ translate( 'Name' ) }</FormLabel>
<FormTextInput
data-key="title"
id="list-name"
name="list-name"
disabled
value={ formList.title }
/>
</FormFieldset>
<FormFieldset>
<FormLabel htmlFor="list-slug">{ translate( 'Slug' ) }</FormLabel>
<FormTextInput
data-key="slug"
id="list-slug"
name="list-slug"
disabled
value={ formList.slug }
/>
</FormFieldset>
</Card>
);
}
const onChange = ( event ) => {
const update = { [ event.target.dataset.key ]: event.target.value };
if ( 'is_public' in update ) {
update.is_public = update.is_public === 'public';
}
updateFormList( { ...formList, ...update } );
};
const isNameValid = typeof formList.title === 'string' && formList.title.length > 0;
const isSlugValid =
isCreateForm || ( typeof formList.slug === 'string' && formList.slug.length > 0 );
return (
<Card>
<FormFieldset>
<FormLabel htmlFor="list-name">{ translate( 'Name (Required)' ) }</FormLabel>
<FormTextInput
data-key="title"
id="list-name"
isValid={ isNameValid }
name="list-name"
onChange={ onChange }
value={ formList.title }
/>
<FormSettingExplanation>{ translate( 'The name of the list.' ) }</FormSettingExplanation>
</FormFieldset>
{ ! isCreateForm && (
<FormFieldset>
<FormLabel htmlFor="list-slug">{ translate( 'Slug' ) }</FormLabel>
<FormTextInput
data-key="slug"
// NOTE: Slug modification currently doesn't work in the API.
disabled
id="list-slug"
name="list-slug"
value={ formList.slug }
/>
<FormSettingExplanation>
{ translate( 'This is used to build the URL to the list.' ) }
</FormSettingExplanation>
</FormFieldset>
) }
<FormFieldset>
<FormLegend>{ translate( 'Visibility' ) }</FormLegend>
<FormLabel>
<FormRadio
checked={ formList.is_public }
data-key="is_public"
onChange={ onChange }
value="public"
label={ translate( 'Everyone can view this list' ) }
/>
</FormLabel>
<FormLabel>
<FormRadio
checked={ ! formList.is_public }
data-key="is_public"
onChange={ onChange }
value="private"
label={ translate( 'Only I can view this list' ) }
/>
</FormLabel>
<FormSettingExplanation>
{ translate(
"Don't worry, posts from private sites will only appear to those with access. " +
'Adding a private site to a public list will not make posts from that site accessible to everyone.'
) }
</FormSettingExplanation>
</FormFieldset>
<FormFieldset>
<FormLabel htmlFor="list-description">{ translate( 'Description' ) }</FormLabel>
<FormTextarea
data-key="description"
id="list-description"
name="list-description"
onChange={ onChange }
placeholder={ translate( "What's your list about?" ) }
value={ formList.description }
/>
</FormFieldset>
<FormButtonsBar>
<FormButton
primary
disabled={ isSubmissionDisabled || ! isNameValid || ! isSlugValid }
onClick={ () => onSubmit( formList ) }
>
{ translate( 'Save' ) }
</FormButton>
</FormButtonsBar>
</Card>
);
}
|