react-code-dataset
/
wp-calypso
/client
/blocks
/plugins-scheduled-updates
/schedule-form-frequency.tsx
| import { | |
| __experimentalText as Text, | |
| Flex, | |
| FlexItem, | |
| RadioControl, | |
| SelectControl, | |
| } from '@wordpress/components'; | |
| import { Icon, info } from '@wordpress/icons'; | |
| import clsx from 'clsx'; | |
| import { useTranslate } from 'i18n-calypso'; | |
| import { useEffect, useState } from 'react'; | |
| import { useLocalizedMoment } from 'calypso/components/localized-moment'; | |
| import { useDateTimeFormat } from '../plugin-scheduled-updates-common/hooks/use-date-time-format'; | |
| import { useSiteSlug } from './hooks/use-site-slug'; | |
| import { ScheduleFormTime } from './schedule-form-time'; | |
| import { DAILY_OPTION, DAY_OPTIONS, DEFAULT_HOUR, WEEKLY_OPTION } from './schedule-form.const'; | |
| import { prepareTimestamp } from './schedule-form.helper'; | |
| type Frequency = 'daily' | 'weekly'; | |
| interface Props { | |
| className?: string; | |
| initTimestamp?: number; | |
| initFrequency: Frequency; | |
| error?: string; | |
| showError?: boolean; | |
| onTouch?: ( touched: boolean ) => void; | |
| onChange?: ( frequency: Frequency, timestamp: number ) => void; | |
| } | |
| export function ScheduleFormFrequency( props: Props ) { | |
| const siteSlug = useSiteSlug(); | |
| const moment = useLocalizedMoment(); | |
| const translate = useTranslate(); | |
| const { | |
| className = '', | |
| initTimestamp, | |
| initFrequency = 'daily', | |
| error, | |
| showError, | |
| onChange, | |
| onTouch, | |
| } = props; | |
| const { isAmPmPhpTimeFormat } = useDateTimeFormat( siteSlug ); | |
| const isAmPmFormat = isAmPmPhpTimeFormat(); | |
| const initDate = initTimestamp | |
| ? moment( initTimestamp ) | |
| : moment( new Date() ).hour( DEFAULT_HOUR ); | |
| const [ frequency, setFrequency ] = useState< 'daily' | 'weekly' >( initFrequency ); | |
| const [ day, setDay ] = useState< string >( initDate.weekday().toString() ); | |
| const [ hour, setHour ] = useState< string >( initDate.format( 'h' ) ); // 'h' is for 12-hour format | |
| const [ period, setPeriod ] = useState< string >( initDate.format( 'a' ) ); // 'a' is for am/pm | |
| const [ timestamp, setTimestamp ] = useState( prepareTimestamp( frequency, day, hour, period ) ); | |
| const [ fieldTouched, setFieldTouched ] = useState( false ); | |
| useEffect( | |
| () => setTimestamp( prepareTimestamp( frequency, day, hour, period ) ), | |
| [ frequency, day, hour, period ] | |
| ); | |
| useEffect( () => onTouch?.( fieldTouched ), [ fieldTouched ] ); | |
| useEffect( () => onChange?.( frequency, timestamp ), [ frequency, timestamp ] ); | |
| return ( | |
| <div className={ `form-field form-field--frequency ${ className }` }> | |
| <label htmlFor="frequency">{ translate( 'Select frequency' ) }</label> | |
| <Flex direction={ [ 'column', 'row' ] }> | |
| <FlexItem className={ clsx( 'radio-option', { selected: frequency === 'daily' } ) }> | |
| <Flex className="form-field--frequency-container" gap={ 6 }> | |
| <FlexItem> | |
| <RadioControl | |
| name="frequency" | |
| options={ [ DAILY_OPTION ] } | |
| selected={ frequency } | |
| onChange={ ( f ) => setFrequency( f as 'daily' ) } | |
| onBlur={ () => setFieldTouched( true ) } | |
| ></RadioControl> | |
| </FlexItem> | |
| <FlexItem> | |
| <ScheduleFormTime | |
| hour={ hour } | |
| period={ period } | |
| isAmPmFormat={ isAmPmFormat } | |
| onTouch={ ( touched ) => setFieldTouched( touched ) } | |
| onChange={ ( hour, period ) => { | |
| setHour( hour ); | |
| setPeriod( period ); | |
| } } | |
| /> | |
| </FlexItem> | |
| </Flex> | |
| </FlexItem> | |
| <FlexItem className={ clsx( 'radio-option', { selected: frequency === 'weekly' } ) }> | |
| <Flex | |
| className="form-field--frequency-container" | |
| gap={ 6 } | |
| direction={ [ 'column', 'row' ] } | |
| > | |
| <FlexItem> | |
| <RadioControl | |
| name="frequency" | |
| options={ [ WEEKLY_OPTION ] } | |
| selected={ frequency } | |
| onChange={ ( f ) => setFrequency( f as 'weekly' ) } | |
| onBlur={ () => setFieldTouched( true ) } | |
| ></RadioControl> | |
| </FlexItem> | |
| <FlexItem> | |
| <Flex direction={ [ 'column', 'row' ] } gap={ 5 }> | |
| <FlexItem> | |
| <SelectControl | |
| __next40pxDefaultSize | |
| name="day" | |
| value={ day } | |
| options={ DAY_OPTIONS } | |
| onChange={ setDay } | |
| /> | |
| </FlexItem> | |
| <FlexItem> | |
| <ScheduleFormTime | |
| hour={ hour } | |
| period={ period } | |
| isAmPmFormat={ isAmPmFormat } | |
| onTouch={ ( touched ) => setFieldTouched( touched ) } | |
| onChange={ ( hour, period ) => { | |
| setHour( hour ); | |
| setPeriod( period ); | |
| } } | |
| /> | |
| </FlexItem> | |
| </Flex> | |
| </FlexItem> | |
| </Flex> | |
| </FlexItem> | |
| </Flex> | |
| { ( ( showError && error ) || ( fieldTouched && error ) ) && ( | |
| <Text className="validation-msg"> | |
| <Icon className="icon-info" icon={ info } size={ 16 } /> | |
| { error } | |
| </Text> | |
| ) } | |
| </div> | |
| ); | |
| } | |