import { Text } from "preact-i18n"; import Modal from "../../../components/ui/Modal"; import { dispatch } from "../../../redux"; interface Props { onClose: () => void; link: string; } export function ExternalLinkModal({ onClose, link }: Props) { return ( } actions={[ { onClick: () => { window.open(link, "_blank"); onClose(); }, confirmation: true, contrast: true, accent: true, children: "Continue", }, { onClick: onClose, confirmation: false, children: "Cancel", }, { onClick: () => { try { const url = new URL(link); dispatch({ type: "TRUSTED_LINKS_ADD_DOMAIN", domain: url.hostname }); } catch(e) {} window.open(link, "_blank"); onClose(); }, plain: true, children: , } ]}>
{link}
); }