9c4c325e5a
* 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
50 lines
1.2 KiB
TypeScript
50 lines
1.2 KiB
TypeScript
import { Form, Input, Select, Tabs } from 'antd'
|
|
import { TabPaneProps } from 'antd/lib/tabs'
|
|
import React from 'react'
|
|
import { useTranslation } from 'react-i18next'
|
|
import { InputColor } from '../../input/color'
|
|
|
|
export const DesignTab: React.FC<TabPaneProps> = (props) => {
|
|
const { t } = useTranslation()
|
|
|
|
return (
|
|
<Tabs.TabPane {...props}>
|
|
<Form.Item label={t('form:design.font')} name={[
|
|
'form', 'design', 'font',
|
|
]}>
|
|
<Input />
|
|
</Form.Item>
|
|
<Form.Item label={t('form:design.layouts')} name={[
|
|
'form', 'design', 'layout',
|
|
]}>
|
|
<Select
|
|
options={[
|
|
{
|
|
value: null,
|
|
label: t('form:design.layout.slider'),
|
|
},
|
|
{
|
|
value: 'card',
|
|
label: t('form:design.layout.card'),
|
|
},
|
|
]}
|
|
/>
|
|
</Form.Item>
|
|
|
|
{[
|
|
'background', 'question', 'answer', 'button', 'buttonActive', 'buttonText',
|
|
].map((name) => (
|
|
<Form.Item
|
|
key={name}
|
|
label={t(`form:design.color.${name}`)}
|
|
name={[
|
|
'form', 'design', 'colors', name,
|
|
]}
|
|
>
|
|
<InputColor />
|
|
</Form.Item>
|
|
))}
|
|
</Tabs.TabPane>
|
|
)
|
|
}
|