, context) {\n super(props, context)\n this.services = ApplicationServices.get()\n }\n\n protected async load() {\n let result = await this.services.backendApiClient.get(\n `/configurations/custom_domains?id=${this.services.activeProject.id}`\n )\n return {\n certificateExpiration:\n result && result._certificateExpiration && result._certificateExpiration.length > 0\n ? new Date(Date.parse(result._certificateExpiration))\n : null,\n domains: result?.domains || [],\n enterNameVisible: false,\n }\n }\n\n protected async forceVerification() {\n await withProgressBar({\n estimatedMs: 30_000,\n callback: async () => {\n await this.services.backendApiClient.post(\n `/ssl?project_id=${this.services.activeProject.id}&async=${false}`,\n {}\n )\n await this.reload()\n },\n })\n }\n\n renderReady() {\n const columns = [\n {\n title: \"Domain\",\n dataIndex: \"name\",\n key: \"name\",\n render: name => {\n return (\n <>\n \n {name}\n \n \n Please, make sure that CNAME of the domain points to {CNAME} \n
\n \n >\n )\n },\n },\n {\n width: \"340px\",\n title: \"Status\",\n dataIndex: \"status\",\n key: \"status\",\n render: status => {\n let displayStatus\n let icon\n let color\n if (status == \"ok\" || status == \"cname_ok\") {\n icon = \n displayStatus = \"VERIFIED\"\n color = \"success\"\n } else if (status == \"cname_failed\") {\n icon = \n displayStatus = \"FAILED\"\n color = \"error\"\n } else {\n icon = \n displayStatus = \"PENDING\"\n color = undefined\n }\n let tag = (\n \n {displayStatus}\n \n )\n let description = undefined\n if (status == \"ok\" || status == \"cname_ok\") {\n description =\n status == \"verified\" ? undefined : (\n CNAME is verified.
\n )\n } else if (status == \"cname_failed\") {\n description = (\n \n We're failed to validate CNAME record. Please, check your DNS settings and wait or request{\" \"}\n
this.forceVerification()}>force verification . Please note, due to nature of DNS\n protocol changes might take up to 24 hours to populate accross internet\n
\n )\n } else {\n description = (\n \n )\n }\n return (\n <>\n {tag}\n {description}\n >\n )\n },\n },\n {\n width: \"140px\",\n title: \"Action\",\n dataIndex: \"action\",\n key: \"action\",\n render: (_, domain: Domain) => {\n return (\n }\n shape=\"round\"\n onClick={() => {\n Modal.confirm({\n title: \"Please confirm deletion of the domain\",\n icon: ,\n content: \"Are you sure you want to delete \" + name + \" domain?\",\n okText: \"Delete\",\n cancelText: \"Cancel\",\n onOk: () => {\n this.reload(async () => {\n let newDomains: Domain[] = this.state.domains.filter(element => element.name != domain.name)\n await this.services.backendApiClient.post(\n `/configurations/custom_domains?id=${this.services.activeProject.id}`,\n { domains: newDomains }\n )\n message.success(\"Domain deleted!\")\n return {\n domains: newDomains,\n }\n })\n },\n onCancel: () => {},\n })\n }}\n >\n Delete\n \n )\n },\n },\n ]\n return (\n <>\n \n }\n onClick={() => {\n this.setState({ enterNameVisible: true })\n this.forceUpdate()\n }}\n >\n Add New Domain\n \n
\n {\n return { ...domain, key: domain.name }\n })}\n />\n {this.state.enterNameVisible ? (\n this.setState({ enterNameVisible: false })}\n onReady={text => {\n this.reload(async () => {\n let newDomains: Domain[] = [...this.state.domains, { name: text, status: \"pending\" }]\n await this.services.backendApiClient.post(\n `/configurations/custom_domains?id=${this.services.activeProject.id}`,\n { domains: newDomains }\n )\n await this.services.backendApiClient.post(\n `/ssl?project_id=${this.services.activeProject.id}&async=${true}`,\n {}\n )\n message.success(\"New domain added!\")\n return {\n domains: newDomains,\n }\n })\n }}\n />\n ) : (\n <>>\n )}\n >\n )\n }\n}\n\nfunction EnterNameModal({ onClose, onReady }: { onReady: (value: string) => void; onClose: () => void }) {\n let [form] = Form.useForm()\n let ok = () => {\n form.validateFields().then(values => {\n onReady(values[\"domain\"])\n onClose()\n })\n }\n return (\n \n Cancel\n ,\n \n Add\n ,\n ]}\n >\n \n } placeholder=\"Domain name\" />\n \n \n \n )\n}\n"],"sourceRoot":""}