mirror of
https://github.com/langgenius/dify.git
synced 2026-02-16 07:54:40 +08:00
194 lines
7.2 KiB
TypeScript
194 lines
7.2 KiB
TypeScript
import type { FC } from 'react'
|
|
import React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import type { ScheduleTriggerNodeType } from './types'
|
|
import Field from '@/app/components/workflow/nodes/_base/components/field'
|
|
import type { NodePanelProps } from '@/app/components/workflow/types'
|
|
import ModeToggle from './components/mode-toggle'
|
|
import FrequencySelector from './components/frequency-selector'
|
|
import WeekdaySelector from './components/weekday-selector'
|
|
import TimePicker from '@/app/components/base/date-and-time-picker/time-picker'
|
|
import DatePicker from '@/app/components/base/date-and-time-picker/date-picker'
|
|
import dayjs from 'dayjs'
|
|
import NextExecutionTimes from './components/next-execution-times'
|
|
import ExecuteNowButton from './components/execute-now-button'
|
|
import RecurConfig from './components/recur-config'
|
|
import MonthlyDaysSelector from './components/monthly-days-selector'
|
|
import Input from '@/app/components/base/input'
|
|
import useConfig from './use-config'
|
|
|
|
const i18nPrefix = 'workflow.nodes.triggerSchedule'
|
|
|
|
const Panel: FC<NodePanelProps<ScheduleTriggerNodeType>> = ({
|
|
id,
|
|
data,
|
|
}) => {
|
|
const { t } = useTranslation()
|
|
const {
|
|
inputs,
|
|
setInputs,
|
|
handleModeChange,
|
|
handleFrequencyChange,
|
|
handleCronExpressionChange,
|
|
handleWeekdaysChange,
|
|
handleTimeChange,
|
|
handleRecurEveryChange,
|
|
handleRecurUnitChange,
|
|
} = useConfig(id, data)
|
|
|
|
const handleExecuteNow = () => {
|
|
// TODO: Implement execute now functionality
|
|
console.log('Execute now clicked')
|
|
}
|
|
|
|
return (
|
|
<div className='mt-2'>
|
|
<div className='space-y-4 px-4 pb-3 pt-2'>
|
|
<Field
|
|
title={t(`${i18nPrefix}.title`)}
|
|
operations={
|
|
<ModeToggle
|
|
mode={inputs.mode}
|
|
onChange={handleModeChange}
|
|
/>
|
|
}
|
|
>
|
|
<div className="space-y-3">
|
|
|
|
{inputs.mode === 'visual' && (
|
|
<div className="space-y-3">
|
|
<div className="grid grid-cols-3 gap-3">
|
|
<div>
|
|
<label className="mb-2 block text-xs font-medium text-gray-500">
|
|
{t('workflow.nodes.triggerSchedule.frequencyLabel')}
|
|
</label>
|
|
<FrequencySelector
|
|
frequency={inputs.frequency}
|
|
onChange={handleFrequencyChange}
|
|
/>
|
|
</div>
|
|
<div className="col-span-2">
|
|
<label className="mb-2 block text-xs font-medium text-gray-500">
|
|
{inputs.frequency === 'hourly' || inputs.frequency === 'once'
|
|
? t('workflow.nodes.triggerSchedule.startTime')
|
|
: t('workflow.nodes.triggerSchedule.time')
|
|
}
|
|
</label>
|
|
{inputs.frequency === 'hourly' || inputs.frequency === 'once' ? (
|
|
<DatePicker
|
|
notClearable={true}
|
|
value={inputs.visual_config?.datetime ? dayjs(inputs.visual_config.datetime) : dayjs()}
|
|
onChange={(date) => {
|
|
const newInputs = {
|
|
...inputs,
|
|
visual_config: {
|
|
...inputs.visual_config,
|
|
datetime: date ? date.toISOString() : undefined,
|
|
},
|
|
}
|
|
setInputs(newInputs)
|
|
}}
|
|
onClear={() => {
|
|
const newInputs = {
|
|
...inputs,
|
|
visual_config: {
|
|
...inputs.visual_config,
|
|
datetime: undefined,
|
|
},
|
|
}
|
|
setInputs(newInputs)
|
|
}}
|
|
placeholder={t('workflow.nodes.triggerSchedule.selectDateTime')}
|
|
needTimePicker={true}
|
|
/>
|
|
) : (
|
|
<TimePicker
|
|
notClearable={true}
|
|
value={inputs.visual_config?.time
|
|
? dayjs(`1/1/2000 ${inputs.visual_config.time}`)
|
|
: dayjs('1/1/2000 11:30 AM')
|
|
}
|
|
onChange={(time) => {
|
|
if (time) {
|
|
const timeString = time.format('h:mm A')
|
|
handleTimeChange(timeString)
|
|
}
|
|
}}
|
|
onClear={() => {
|
|
handleTimeChange('11:30 AM')
|
|
}}
|
|
placeholder={t('workflow.nodes.triggerSchedule.selectTime')}
|
|
/>
|
|
)}
|
|
</div>
|
|
</div>
|
|
|
|
{inputs.frequency === 'weekly' && (
|
|
<WeekdaySelector
|
|
selectedDays={inputs.visual_config?.weekdays || []}
|
|
onChange={handleWeekdaysChange}
|
|
/>
|
|
)}
|
|
|
|
{inputs.frequency === 'hourly' && (
|
|
<RecurConfig
|
|
recurEvery={inputs.visual_config?.recur_every}
|
|
recurUnit={inputs.visual_config?.recur_unit}
|
|
onRecurEveryChange={handleRecurEveryChange}
|
|
onRecurUnitChange={handleRecurUnitChange}
|
|
/>
|
|
)}
|
|
|
|
{inputs.frequency === 'monthly' && (
|
|
<MonthlyDaysSelector
|
|
selectedDay={inputs.visual_config?.monthly_day || 1}
|
|
onChange={(day) => {
|
|
const newInputs = {
|
|
...inputs,
|
|
visual_config: {
|
|
...inputs.visual_config,
|
|
monthly_day: day,
|
|
},
|
|
}
|
|
setInputs(newInputs)
|
|
}}
|
|
/>
|
|
)}
|
|
</div>
|
|
)}
|
|
|
|
{inputs.mode === 'cron' && (
|
|
<div className="space-y-2">
|
|
<div>
|
|
<label className="mb-2 block text-xs font-medium text-gray-500">
|
|
{t('workflow.nodes.triggerSchedule.cronExpression')}
|
|
</label>
|
|
<Input
|
|
value={inputs.cron_expression || ''}
|
|
onChange={e => handleCronExpressionChange(e.target.value)}
|
|
placeholder="0 0 * * *"
|
|
className="font-mono"
|
|
/>
|
|
</div>
|
|
<div className="text-xs text-gray-500">
|
|
Enter cron expression (minute hour day month weekday)
|
|
</div>
|
|
</div>
|
|
)}
|
|
</div>
|
|
</Field>
|
|
|
|
<div className="border-t border-divider-subtle"></div>
|
|
|
|
<NextExecutionTimes data={inputs} />
|
|
|
|
<div className="pt-2">
|
|
<ExecuteNowButton onClick={handleExecuteNow} />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default React.memo(Panel)
|