react-code-dataset
/
wp-calypso
/client
/my-sites
/site-settings
/composing
/default-post-format.jsx
| import { FormLabel } from '@automattic/components'; | |
| import { useTranslate } from 'i18n-calypso'; | |
| import PropTypes from 'prop-types'; | |
| import { useSelector } from 'react-redux'; | |
| import FormFieldset from 'calypso/components/forms/form-fieldset'; | |
| import FormSelect from 'calypso/components/forms/form-select'; | |
| import usePostFormatsQuery from 'calypso/data/post-formats/use-post-formats-query'; | |
| import { getSelectedSiteId } from 'calypso/state/ui/selectors'; | |
| const DefaultPostFormat = ( { | |
| fields, | |
| onChangeField, | |
| eventTracker, | |
| isRequestingSettings, | |
| isSavingSettings, | |
| } ) => { | |
| const siteId = useSelector( getSelectedSiteId ); | |
| const { data } = usePostFormatsQuery( siteId ); | |
| const translate = useTranslate(); | |
| return ( | |
| <FormFieldset> | |
| <FormLabel htmlFor="default_post_format">{ translate( 'Default post format' ) }</FormLabel> | |
| <FormSelect | |
| name="default_post_format" | |
| id="default_post_format" | |
| value={ fields.default_post_format } | |
| onChange={ onChangeField( 'default_post_format' ) } | |
| disabled={ isRequestingSettings || isSavingSettings } | |
| onClick={ eventTracker( 'Selected Default Post Format' ) } | |
| > | |
| <option value="0">{ translate( 'Standard', { context: 'Post format' } ) }</option> | |
| { data && | |
| Object.values( data.formats ?? {} ).map( ( label, slug ) => ( | |
| <option key={ slug } value={ slug }> | |
| { label } | |
| </option> | |
| ) ) } | |
| </FormSelect> | |
| </FormFieldset> | |
| ); | |
| }; | |
| DefaultPostFormat.defaultProps = { | |
| isSavingSettings: false, | |
| isRequestingSettings: true, | |
| fields: {}, | |
| }; | |
| DefaultPostFormat.propTypes = { | |
| onChangeField: PropTypes.func.isRequired, | |
| eventTracker: PropTypes.func.isRequired, | |
| isSavingSettings: PropTypes.bool, | |
| isRequestingSettings: PropTypes.bool, | |
| fields: PropTypes.object, | |
| }; | |
| export default DefaultPostFormat; | |