mirror of
https://github.com/maelgangloff/domain-watchdog.git
synced 2025-12-18 02:05:36 +00:00
67 lines
2.2 KiB
TypeScript
67 lines
2.2 KiB
TypeScript
import {Button, Drawer, Form, Typography} from "antd";
|
|
import {t} from "ttag";
|
|
import {WatchlistForm} from "./WatchlistForm";
|
|
import React, {useState} from "react";
|
|
import {Watchlist} from "../../../pages/tracking/WatchlistPage";
|
|
import {EditOutlined} from "@ant-design/icons";
|
|
import {Connector} from "../../../utils/api/connectors";
|
|
|
|
export function UpdateWatchlistButton({watchlist, onUpdateWatchlist, connectors}: {
|
|
watchlist: Watchlist,
|
|
onUpdateWatchlist: (values: { domains: string[], emailTriggers: string[], token: string }) => Promise<void>,
|
|
connectors: (Connector & { id: string })[]
|
|
}) {
|
|
|
|
const [form] = Form.useForm()
|
|
const [open, setOpen] = useState(false)
|
|
const [loading, setLoading] = useState(false)
|
|
|
|
|
|
const showDrawer = () => {
|
|
setOpen(true)
|
|
}
|
|
|
|
const onClose = () => {
|
|
setOpen(false)
|
|
setLoading(false)
|
|
}
|
|
|
|
return <>
|
|
<Typography.Link>
|
|
<EditOutlined title={t`Edit the Watchlist`} onClick={() => {
|
|
showDrawer()
|
|
form.setFields([
|
|
{name: 'token', value: watchlist.token},
|
|
{name: 'name', value: watchlist.name},
|
|
{name: 'connector', value: watchlist.connector?.id},
|
|
{name: 'domains', value: watchlist.domains.map(d => d.ldhName)},
|
|
{name: 'emailTriggers', value: watchlist.triggers?.map(t => t.event)},
|
|
])
|
|
}}/>
|
|
</Typography.Link>
|
|
<Drawer
|
|
title={t`Update a Watchlist`}
|
|
width='80%'
|
|
onClose={onClose}
|
|
open={open}
|
|
loading={loading}
|
|
styles={{
|
|
body: {
|
|
paddingBottom: 80,
|
|
}
|
|
}}
|
|
extra={<Button onClick={onClose}>{t`Cancel`}</Button>}
|
|
>
|
|
<WatchlistForm
|
|
form={form}
|
|
onFinish={values => {
|
|
setLoading(true)
|
|
onUpdateWatchlist(values).then(onClose).catch(() => setLoading(false))
|
|
}}
|
|
connectors={connectors}
|
|
isCreation={false}
|
|
/>
|
|
</Drawer>
|
|
</>
|
|
|
|
} |