Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 | 15x 15x 15x 15x 15x 15x 15x 15x 15x 15x 2x 2x 2x 15x 12x 12x 12x 12x 12x 15x 6x 6x 6x 6x 6x 15x 3x 3x 3x 3x 15x 1x 1x 15x 1x 1x | import { useState } from "react"; import { useParams } from "react-router-dom"; import { UseFormRegister, UseFormGetFieldState, UseFormGetValues, FieldValues, } from "react-hook-form"; import { nanoid } from "nanoid"; import { Row, Col, Modal } from "@canonical/react-components"; import { useVerified } from "../../hooks"; import type { Data } from "../../types"; type Props = { data: Data; register: UseFormRegister<FieldValues>; getFieldState: UseFormGetFieldState<FieldValues>; getValues: UseFormGetValues<FieldValues>; }; function PrimaryDomainInput({ data, register, getFieldState, getValues, }: Props) { const { snapName } = useParams(); const id = nanoid(); const fieldState = getFieldState("primary_website"); const [showVerifyModal, setShowVerifyModal] = useState(false); const { isLoading, status, data: verifiedData } = useVerified(snapName); const domain = getValues("primary_website"); const defaultDomain = data.primary_website; const verificationToken = `SNAPCRAFT_IO_VERIFICATION=${window.DNS_VERIFICATION_TOKEN}`; const noPathDomains = [ "github.com", "gitlab.com", "bitbucket.org", "launchpad.net", "sourceforge.net", ]; const formatUrl = (url: string) => { const urlWithoutProtocol = url.split("://")[1]; Iif (urlWithoutProtocol.charAt(urlWithoutProtocol.length - 1) === "/") { return urlWithoutProtocol.slice(0, -1); } return urlWithoutProtocol; }; const domainChanged = () => { Iif (!getValues("primary_website")) { return false; } const initialUrl = new URL(defaultDomain); try { const newUrl = new URL(getValues("primary_website")); return initialUrl.hostname !== newUrl.hostname; } catch (e) { return false; } }; const pathChanged = () => { Iif (!getValues("primary_website")) { return false; } const initialUrl = new URL(defaultDomain); try { const newUrl = new URL(getValues("primary_website")); return initialUrl.pathname !== newUrl.pathname; } catch (e) { return false; } }; const domainInNoPathList = () => { Iif (!getValues("primary_website")) { return false; } try { const newUrl = new URL(getValues("primary_website")); return noPathDomains.includes(newUrl.hostname); } catch (e) { return false; } }; const getHostname = (url: string | undefined) => { Iif (!url) { return ""; } else { return new URL(url).hostname; } }; return ( <> <Row className={`p-form__group ${ fieldState.invalid && "p-form-validation is-error" }`} > <Col size={2}> <label htmlFor={id} className="p-form__label"> Primary website: </label> </Col> <Col size={5}> <div className="p-form__control"> <input type="url" id={id} className="p-form-validation__input" {...register("primary_website")} /> </div> </Col> <Col size={5}> {!isLoading && status === "success" && data && ( <> {verifiedData.primary_domain && ( <> {fieldState.isDirty && ( <> {!domainChanged() && pathChanged() && domainInNoPathList() && ( <> Unable to verify{" "} <strong>{getHostname(data.primary_website)}</strong>{" "} with a path </> )} {!domainChanged() && pathChanged() && !domainInNoPathList() && ( <button type="button" className="p-button--base has-icon" onClick={() => { setShowVerifyModal(true); }} disabled={fieldState.isDirty} > <span>Verified ownership</span> <i className="p-icon--chevron-right"></i> </button> )} {!domainChanged() && !pathChanged() && ( <button type="button" className="p-button--base has-icon" onClick={() => { setShowVerifyModal(true); }} disabled={fieldState.isDirty} > <span>Verified ownership</span> <i className="p-icon--chevron-right"></i> </button> )} {domainChanged() && !domainInNoPathList() && ( <> Please save your changes to verify{" "} {getValues("primary_website")} </> )} </> )} {!fieldState.isDirty && ( <button type="button" className="p-button--base has-icon" onClick={() => { setShowVerifyModal(true); }} disabled={fieldState.isDirty} > <span>Verified ownership</span> <i className="p-icon--chevron-right"></i> </button> )} </> )} {defaultDomain && getValues("primary_website") && !verifiedData.primary_domain && ( <button type="button" className="p-button has-icon" onClick={() => { setShowVerifyModal(true); }} disabled={fieldState.isDirty} > <span>Verify ownership</span> <i className="p-icon--chevron-right"></i> </button> )} </> )} </Col> </Row> {showVerifyModal && ( <Modal title="Verify ownership" close={() => { setShowVerifyModal(false); }} > <p> To verify ownership of <strong>{formatUrl(domain)}</strong> copy and paste the text below as a TXT Record in your DNS Records. Please allow for up to 24 hours for verification. </p> <div style={{ display: "flex" }}> <label className="u-off-screen" htmlFor="verification-token"> DNS verification token </label> <input type="text" readOnly value={verificationToken} name="verification-token" id="verification-token" /> <button type="button" onClick={() => { navigator.clipboard.writeText(verificationToken); }} > <i className="p-icon--copy">Copy token</i> </button> </div> </Modal> )} </> ); } export default PrimaryDomainInput; |