\n We would like to use cookies and identify general user data to give\n you a better experience on our website.Using cookies and identifying\n data such as IP address and the type and version of your browser help\n us improve our website's navigation and provide more personalized\n services to you. To find out more, see our Privacy Policy\n
\n \n );\n }\n}\n\nexport default function GdprBanner(): JSX.Element {\n const gdprBannerMount = document.getElementById(\"gdprBannerMount\");\n return <>{ReactDOM.render(, gdprBannerMount)}>;\n}\n","/**\n * This modal is kept for legacy purposes, any new modals should use the ModalReact component.\n */\n\nimport React, { Component, ReactNode } from \"react\";\nimport { Modal as BootstrapModal } from \"bootstrap.native\";\n\nexport interface Props {\n onClose?: EventListenerOrEventListenerObject;\n title?: string;\n titleIcon?: string;\n children?: ReactNode;\n primaryButtonText?: string;\n primaryButtonClick?: (\n event: React.MouseEvent\n ) => void;\n className?: string;\n isOpen: boolean;\n customFooter?: JSX.Element;\n modalBodyClassName?: string;\n primaryButtonClassName?: string;\n hideFooter?: boolean;\n}\n\ninterface State {\n renderModal: boolean;\n}\n\nexport default class Modal extends Component {\n private modal?: BootstrapModal;\n\n private element: React.RefObject;\n\n public constructor(props: Props) {\n super(props);\n\n this.element = React.createRef();\n this.openModal = this.openModal.bind(this);\n this.closeModal = this.closeModal.bind(this);\n\n const { isOpen } = this.props;\n\n this.state = {\n renderModal: isOpen,\n };\n }\n\n public componentDidMount() {\n const { onClose, isOpen } = this.props;\n\n if (!this.element.current) return;\n\n this.modal = new BootstrapModal(this.element.current);\n\n if (isOpen) {\n this.modal.show();\n }\n\n if (onClose)\n this.element.current.addEventListener(\"hidden.bs.modal\", onClose);\n\n this.element.current.addEventListener(\"show.bs.modal\", this.openModal);\n this.element.current.addEventListener(\"hidden.bs.modal\", this.closeModal);\n }\n\n public componentDidUpdate(prevProps: Props) {\n const { isOpen } = this.props;\n\n if (isOpen !== prevProps.isOpen && this.modal) {\n this.modal[isOpen ? \"show\" : \"hide\"]();\n }\n }\n\n public componentWillUnmount() {\n if (!this.element.current) return;\n\n this.element.current.removeEventListener(\"show.bs.modal\", this.openModal);\n this.element.current.removeEventListener(\n \"hidden.bs.modal\",\n this.closeModal\n );\n }\n\n openModal() {\n this.setState({ renderModal: true });\n }\n\n closeModal() {\n this.setState({ renderModal: false });\n }\n\n public render() {\n const {\n title,\n children,\n primaryButtonText,\n // eslint-disable-next-line @typescript-eslint/no-empty-function\n primaryButtonClick = () => {},\n className = \"\",\n customFooter,\n modalBodyClassName = \"\",\n primaryButtonClassName,\n hideFooter,\n } = this.props;\n\n const { renderModal } = this.state;\n\n return (\n