| Server IP : 38.190.208.107 / Your IP : 216.73.217.21 Web Server : nginx/1.28.1 System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64 User : root ( 0) PHP Version : 8.2.28 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /www/wwwroot/wp.9/wp-content/themes/blocksy/static/js/options/options/ |
Upload File : |
import { createElement } from '@wordpress/element'
import _ from 'underscore'
import { __ } from 'ct-i18n'
import classNames from 'classnames'
import { clamp, round } from './ct-slider'
import { getNumericKeyboardEvents } from '../helpers/getNumericKeyboardEvents'
const TimerNumberInput = ({
value,
option,
option: {
attr,
step = 1,
blockDecimal = true,
decimalPlaces = 1,
markAsAutoFor,
},
device,
onChange,
liftedOptionStateDescriptor,
}) => {
const { liftedOptionState, setLiftedOptionState } =
liftedOptionStateDescriptor
const parsedValue =
markAsAutoFor && markAsAutoFor.indexOf(device) > -1 ? 'auto' : value
const min = !option.min && option.min !== 0 ? -Infinity : option.min
const max = !option.max && option.max !== 0 ? Infinity : option.max
return (
<input
type="number"
value={
liftedOptionState && liftedOptionState.isEmptyInput
? ''
: parsedValue
}
onBlur={(e) => {
if (e?.nativeEvent?.relatedTarget?.matches('.ct-revert')) {
return
}
setLiftedOptionState({
isEmptyInput: false,
})
if (parseFloat(parsedValue)) {
onChange(round(clamp(min, max, parsedValue), decimalPlaces))
}
}}
onChange={({ target: { value } }) => {
if (value.toString().trim() === '') {
setLiftedOptionState({
isEmptyInput: true,
})
return
}
setLiftedOptionState({
isEmptyInput: false,
})
_.isNumber(parseFloat(value))
? onChange(round(value, decimalPlaces))
: parseFloat(value)
? onChange(
round(
Math.min(parseFloat(value), max),
decimalPlaces
)
)
: onChange(round(value, decimalPlaces))
}}
{...getNumericKeyboardEvents({
blockDecimal,
value: parsedValue,
onChange: (value) => {
onChange(round(clamp(min, max, value), decimalPlaces))
},
})}
/>
)
}
const TimerOption = ({ onChange, value, liftedOptionStateDescriptor }) => {
if (typeof value !== 'object') {
value = {
days: value,
hours: 0,
minutes: 0,
}
}
const { days, hours, minutes } = value
return (
<ul className={classNames('ct-option-time-picker', {})}>
<li>
<TimerNumberInput
liftedOptionStateDescriptor={liftedOptionStateDescriptor}
option={{
min: 0,
max: 100,
}}
value={days}
onChange={(val) => {
onChange({
...value,
days: val,
})
}}
/>
<div className="ct-option-description">
{__('Days', 'blocksy')}
</div>
</li>
<li>
<TimerNumberInput
liftedOptionStateDescriptor={liftedOptionStateDescriptor}
option={{
min: 0,
max: 24,
}}
value={hours}
onChange={(val) => {
onChange({
...value,
hours: val,
})
}}
/>
<div className="ct-option-description">
{__('Hours', 'blocksy')}
</div>
</li>
<li>
<TimerNumberInput
liftedOptionStateDescriptor={liftedOptionStateDescriptor}
option={{
min: 0,
max: 59,
}}
value={minutes}
onChange={(val) => {
onChange({
...value,
minutes: val,
})
}}
/>
<div className="ct-option-description">
{__('Minutes', 'blocksy')}
</div>
</li>
</ul>
)
}
TimerOption.supportedPurposes = ['default', 'gutenberg']
export default TimerOption