1
0
ohmyform/ui/components/form/admin/hooks.tab.tsx
Michael Schramm 9c4c325e5a
Switch to single branch (#221)
* remove submodules
* add api and ui files
* update github actions
* use sparse checkout
* update node setup
* update checkout
* update docker
* change permissions
* update mariadb health check
* update changelog
2023-12-02 19:22:40 +01:00

99 lines
3.4 KiB
TypeScript

import { DeleteOutlined, PlusOutlined } from '@ant-design/icons/lib'
import { Button, Card, Checkbox, Form, Input, Popconfirm, Space, Tabs } from 'antd'
import { TabPaneProps } from 'antd/lib/tabs'
import React from 'react'
import { useTranslation } from 'react-i18next'
interface Props extends TabPaneProps {}
export const HooksTab: React.FC<Props> = (props) => {
const { t } = useTranslation()
return (
<Tabs.TabPane {...props}>
<Form.List name={['form', 'hooks']}>
{(hooks, { add, remove }) => {
return (
<div>
<Form.Item wrapperCol={{ span: 24 }}>
<Space
style={{
width: '100%',
justifyContent: 'flex-end',
}}
>
<Button
type="dashed"
onClick={() => {
const defaults = {
id: `NEW-${Date.now()}`,
enabled: false,
url: '',
}
add(defaults)
}}
>
<PlusOutlined /> {t('form:hooks.add')}
</Button>
</Space>
</Form.Item>
{hooks.map((hook, index) => (
<div key={hook.key}>
<Form.Item wrapperCol={{ span: 24 }}>
<Card
title={
<div>
<Form.Item
name={[hook.name, 'enabled']}
valuePropName={'checked'}
noStyle
>
<Checkbox />
</Form.Item>
&nbsp;{t('form:hooks.enabled')}
</div>
}
type={'inner'}
extra={
<div>
<Popconfirm
placement={'left'}
title={t('form:hooks.confirmDelete')}
okText={t('form:hooks.deleteNow')}
okButtonProps={{ danger: true }}
onConfirm={() => {
remove(index)
}}
>
<Button danger>
<DeleteOutlined />
</Button>
</Popconfirm>
</div>
}
actions={[<DeleteOutlined key={'delete'} onClick={() => remove(index)} />]}
>
<Form.Item
label={t('form:hooks.url')}
name={[hook.name, 'url']}
rules={[
{ required: true, message: t('validation:urlRequired') },
{ type: 'url', message: t('validation:invalidUrl') },
]}
labelCol={{ span: 6 }}
>
<Input />
</Form.Item>
</Card>
</Form.Item>
</div>
))}
</div>
)
}}
</Form.List>
</Tabs.TabPane>
)
}