mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-17 17:55:42 +00:00
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
|
|
import type {FormInstance} from 'antd'
|
||
|
|
import {Alert, Form, Input} from 'antd'
|
||
|
|
import React from 'react'
|
||
|
|
import type {Connector} from '../../../utils/api/connectors'
|
||
|
|
import {ConnectorProvider} from '../../../utils/api/connectors'
|
||
|
|
import {t} from 'ttag'
|
||
|
|
import {DefaultConnectorFormItems} from "../../../utils/providers/forms"
|
||
|
|
import {providersConfig} from "../index"
|
||
|
|
|
||
|
|
const formItemLayoutWithOutLabel = {
|
||
|
|
wrapperCol: {
|
||
|
|
xs: {span: 24, offset: 0},
|
||
|
|
sm: {span: 20, offset: 4}
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
export function NamecomConnectorForm({form, onCreate}: { form: FormInstance, onCreate: (values: Connector) => void }) {
|
||
|
|
|
||
|
|
return (
|
||
|
|
<Form
|
||
|
|
{...formItemLayoutWithOutLabel}
|
||
|
|
form={form}
|
||
|
|
layout='horizontal'
|
||
|
|
labelCol={{span: 6}}
|
||
|
|
wrapperCol={{span: 14}}
|
||
|
|
onFinish={onCreate}
|
||
|
|
>
|
||
|
|
<Form.Item name='provider' hidden>
|
||
|
|
<Input value={ConnectorProvider["Name.com"]}/>
|
||
|
|
</Form.Item>
|
||
|
|
<Alert
|
||
|
|
message={t`This provider does not provide a list of supported TLD. Please double check if the domain you want to register is supported.`}
|
||
|
|
type='warning'
|
||
|
|
style={{marginBottom: '2em'}}
|
||
|
|
/>
|
||
|
|
<Form.Item
|
||
|
|
label={t`Username`}
|
||
|
|
name={['authData', 'username']}
|
||
|
|
>
|
||
|
|
<Input autoComplete='off'/>
|
||
|
|
</Form.Item>
|
||
|
|
<Form.Item
|
||
|
|
label={t`API key`}
|
||
|
|
name={['authData', 'token']}
|
||
|
|
>
|
||
|
|
<Input autoComplete='off'/>
|
||
|
|
</Form.Item>
|
||
|
|
<DefaultConnectorFormItems tosLink={providersConfig()[ConnectorProvider["Name.com"]].tosLink}/>
|
||
|
|
</Form>
|
||
|
|
)
|
||
|
|
}
|