2025-02-17 17:05:13 +08:00
|
|
|
'use client'
|
2025-04-27 09:56:48 +08:00
|
|
|
import BaseForm from '../components/base/form/form-scenarios/base'
|
2025-04-27 10:16:16 +08:00
|
|
|
import { BaseFieldType } from '../components/base/form/form-scenarios/base/types'
|
2025-02-17 17:05:13 +08:00
|
|
|
|
|
|
|
export default function Page() {
|
2025-04-16 14:16:56 +08:00
|
|
|
return (
|
|
|
|
<div className='flex h-screen w-full items-center justify-center p-20'>
|
2025-04-25 18:13:52 +08:00
|
|
|
<div className='w-[400px] rounded-lg border border-components-panel-border bg-components-panel-bg'>
|
2025-04-27 09:56:48 +08:00
|
|
|
<BaseForm
|
2025-04-25 18:13:52 +08:00
|
|
|
initialData={{
|
|
|
|
type: 'option_1',
|
|
|
|
variable: 'test',
|
|
|
|
label: 'Test',
|
2025-04-27 09:56:48 +08:00
|
|
|
maxLength: 48,
|
2025-04-25 18:13:52 +08:00
|
|
|
required: true,
|
|
|
|
}}
|
|
|
|
configurations={[
|
|
|
|
{
|
2025-04-27 10:16:16 +08:00
|
|
|
type: BaseFieldType.textInput,
|
2025-04-25 18:13:52 +08:00
|
|
|
variable: 'variable',
|
|
|
|
label: 'Variable',
|
|
|
|
required: true,
|
2025-04-27 09:56:48 +08:00
|
|
|
showConditions: [],
|
|
|
|
},
|
|
|
|
{
|
2025-04-27 10:16:16 +08:00
|
|
|
type: BaseFieldType.textInput,
|
2025-04-27 09:56:48 +08:00
|
|
|
variable: 'label',
|
|
|
|
label: 'Label',
|
|
|
|
required: true,
|
|
|
|
showConditions: [],
|
2025-04-25 18:13:52 +08:00
|
|
|
},
|
|
|
|
{
|
2025-04-27 10:16:16 +08:00
|
|
|
type: BaseFieldType.numberInput,
|
2025-04-27 09:56:48 +08:00
|
|
|
variable: 'maxLength',
|
2025-04-25 18:13:52 +08:00
|
|
|
label: 'Max Length',
|
|
|
|
required: true,
|
|
|
|
showConditions: [],
|
|
|
|
max: 100,
|
|
|
|
min: 1,
|
|
|
|
},
|
|
|
|
{
|
2025-04-27 10:16:16 +08:00
|
|
|
type: BaseFieldType.checkbox,
|
2025-04-25 18:13:52 +08:00
|
|
|
variable: 'required',
|
|
|
|
label: 'Required',
|
|
|
|
required: true,
|
|
|
|
showConditions: [],
|
|
|
|
},
|
|
|
|
{
|
2025-04-27 10:16:16 +08:00
|
|
|
type: BaseFieldType.select,
|
2025-04-25 18:13:52 +08:00
|
|
|
variable: 'type',
|
|
|
|
label: 'Type',
|
|
|
|
required: true,
|
|
|
|
showConditions: [],
|
|
|
|
options: [
|
|
|
|
{ label: 'Option 1', value: 'option_1' },
|
|
|
|
{ label: 'Option 2', value: 'option_2' },
|
|
|
|
{ label: 'Option 3', value: 'option_3' },
|
|
|
|
],
|
|
|
|
},
|
|
|
|
]}
|
|
|
|
onSubmit={(value) => {
|
|
|
|
console.log('onSubmit', value)
|
|
|
|
}}
|
2025-04-21 09:53:35 +08:00
|
|
|
/>
|
|
|
|
</div>
|
2025-04-16 14:16:56 +08:00
|
|
|
</div>
|
|
|
|
)
|
2025-02-17 17:05:13 +08:00
|
|
|
}
|