File size: 3,917 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 |
import { useQuery, useSuspenseQuery, useMutation } from '@tanstack/react-query';
import {
Card,
CardBody,
__experimentalHStack as HStack,
__experimentalVStack as VStack,
Button,
} from '@wordpress/components';
import { useDispatch } from '@wordpress/data';
import { DataForm } from '@wordpress/dataviews';
import { __, sprintf } from '@wordpress/i18n';
import { store as noticesStore } from '@wordpress/notices';
import { useState } from 'react';
import { getPHPVersions } from 'calypso/data/php-versions';
import { siteBySlugQuery } from '../../app/queries/site';
import { sitePHPVersionQuery, sitePHPVersionMutation } from '../../app/queries/site-php-version';
import PageLayout from '../../components/page-layout';
import RequiredSelect from '../../components/required-select';
import { HostingFeatures } from '../../data/constants';
import { hasHostingFeature, hasPlanFeature } from '../../utils/site-features';
import HostingFeatureGatedWithCallout from '../hosting-feature-gated-with-callout';
import SettingsPageHeader from '../settings-page-header';
import type { Field } from '@wordpress/dataviews';
export default function PHPVersionSettings( { siteSlug }: { siteSlug: string } ) {
const { data: site } = useSuspenseQuery( siteBySlugQuery( siteSlug ) );
const { data: currentVersion } = useQuery( {
...sitePHPVersionQuery( site.ID ),
enabled: hasHostingFeature( site, HostingFeatures.PHP ),
} );
const mutation = useMutation( sitePHPVersionMutation( site.ID ) );
const { createSuccessNotice, createErrorNotice } = useDispatch( noticesStore );
const [ formData, setFormData ] = useState< { version: string } >( {
version: currentVersion ?? '',
} );
const { phpVersions } = getPHPVersions();
const fields: Field< { version: string } >[] = [
{
id: 'version',
label: __( 'PHP version' ),
Edit: RequiredSelect, // TODO: use DataForm's validation when available. See: DOTCOM-13298
elements: phpVersions.filter( ( option ) => {
// Show disabled PHP version only if the site is still using it.
if ( option.disabled && option.value !== currentVersion ) {
return false;
}
return true;
} ),
},
];
const form = {
type: 'regular' as const,
fields: [ 'version' ],
};
const isDirty = formData.version !== currentVersion;
const { isPending } = mutation;
const handleSubmit = ( e: React.FormEvent ) => {
e.preventDefault();
mutation.mutate( formData.version, {
onSuccess: () => {
createSuccessNotice( __( 'PHP version saved.' ), { type: 'snackbar' } );
},
onError: () => {
createErrorNotice( __( 'Failed to save PHP version.' ), {
type: 'snackbar',
} );
},
} );
};
const description = hasPlanFeature( site, HostingFeatures.PHP )
? undefined
: sprintf(
/* translators: %s: plan name. Eg. 'Personal' */
__( 'Sites on the %s plan run on our recommended PHP version.' ),
site?.plan?.product_name_short
);
return (
<PageLayout
size="small"
header={ <SettingsPageHeader title="PHP" description={ description } /> }
>
<HostingFeatureGatedWithCallout
site={ site }
feature={ HostingFeatures.PHP }
tracksFeatureId="settings-php"
>
<Card>
<CardBody>
<form onSubmit={ handleSubmit }>
<VStack spacing={ 4 }>
<DataForm< { version: string } >
data={ formData }
fields={ fields }
form={ form }
onChange={ ( edits: { version?: string } ) => {
setFormData( ( data ) => ( { ...data, ...edits } ) );
} }
/>
<HStack justify="flex-start">
<Button
variant="primary"
type="submit"
isBusy={ isPending }
disabled={ isPending || ! isDirty }
>
{ __( 'Save' ) }
</Button>
</HStack>
</VStack>
</form>
</CardBody>
</Card>
</HostingFeatureGatedWithCallout>
</PageLayout>
);
}
|