const label = props.label ?? "File"; const id = props.id ?? "file"; const fileAccept = props.fileAccept ?? ["images/*", "video/*", ".pdf"]; const noLabel = props.noLabel ?? false; const value = props.value ?? "---"; const [cid, filename, size, uploaded] = value.split("-"); const onChange = props.onChange ?? (() => { }); const validate = props.validate ?? (() => { }); const error = props.error ?? ""; const Container = styled.div` box-sizing: border-box; display: flex; flex-direction: column; align-items: flex-start; gap: 1em; padding: .5em; background: #FFFFFF; border: 1px solid #ECEEF0; box-shadow: 0px 1px 3px rgba(16, 24, 40, 0.1), 0px 1px 2px rgba(16, 24, 40, 0.06); border-radius: 8px; `; const Label = styled.label` font-style: normal; font-weight: 600; font-size: 0.95em; line-height: 1.25em; color: #344054; `; const Error = styled.span` display: inline-block; font-style: normal; font-weight: 400; font-size: 0.75em; line-height: 1.25em; color: #ff4d4f; height: 0; overflow: hidden; transition: height 0.3s ease-in-out; &.show { height: 1.25em; } `; const Input = styled.div` box-sizing: border-box; display: flex; flex-direction: row; align-items: center; padding: 0.5em 0.75em; gap: 0.5em; background: #ffffff; border: 1px solid #d0d5dd; box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05); border-radius: 4px; color: #101828; width: 100%; `; const FileDetails = styled.div` box-sizing: border-box; display: flex; flex-direction: column; align-items: flex-start; padding: .5em 1em .75em; gap: .75em; background: #fafafa; border: 1px solid #eceef0; border-radius: 8px; `; const Small = styled.span` font-style: normal; font-weight: 400; font-size: .75em; line-height: 1em; display: flex; align-items: flex-end; text-align: center; color: #7e868c; `; State.init({ uploading: false, }); const ipfsUrl = (cid) => `https://ipfs.near.social/ipfs/${cid}`; const formatBytes = () => { const size = Number(size); const unit = size < 1000 ? "byte" : size < 1000000 ? "kilobyte" : size < 1000000000 ? "megabyte" : "gigabyte"; const value = size < 1000 ? size : size < 1000000 ? size / 1000 : size < 1000000000 ? size / 1000000 : size / 1000000000; return value.toLocaleString("en-US", { unit, style: "unit", unitDisplay: "narrow" }); } return ( <Container> <Label>{label}</Label> {cid ? <FileDetails> <span> <svg width="14" height="18" viewBox="0 0 14 18" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M8.5 1.70215V4.80005C8.5 5.22009 8.5 5.43011 8.58175 5.59055C8.65365 5.73167 8.76839 5.8464 8.90951 5.91831C9.06994 6.00005 9.27996 6.00005 9.7 6.00005H12.7979M10 9.75H4M10 12.75H4M5.5 6.75H4M8.5 1.5H4.6C3.33988 1.5 2.70982 1.5 2.22852 1.74524C1.80516 1.96095 1.46095 2.30516 1.24524 2.72852C1 3.20982 1 3.83988 1 5.1V12.9C1 14.1601 1 14.7902 1.24524 15.2715C1.46095 15.6948 1.80516 16.039 2.22852 16.2548C2.70982 16.5 3.33988 16.5 4.6 16.5H9.4C10.6601 16.5 11.2902 16.5 11.7715 16.2548C12.1948 16.039 12.539 15.6948 12.7548 15.2715C13 14.7902 13 14.1601 13 12.9V6L8.5 1.5Z" stroke="#7E868C" stroke-width="1.66667" stroke-linecap="round" stroke-linejoin="round" /> </svg> <a href={ipfsUrl(cid)} download>{filename}</a> <Small>{formatBytes()}</Small> </span> <span>Uploaded {new Date(Number(uploaded)).toLocaleDateString()}</span> </FileDetails> : <></>} <Files multiple={false} accepts={["image/*", "video/*", ".pdf"]} minFileSize={1} clickable className="files-button" onChange={(files) => { if (!files || !files.length) return; const [body] = files; State.update({ uploading: true, cid: null }); asyncFetch( "https://ipfs.near.social/add", { method: "POST", headers: { Accept: "application/json" }, body, } ).then( ({ body: { cid } }) => { State.update({ cid, filename: body.name, uploading: false }); // props.update(cid); } ); }} > {state.uploading ? "Uploading" : state.cid ? "Replace" : buttonText} </Files> <Input type="text" placeholder={placeholder} value={value} onChange={({ target: { value } }) => onChange(value)} onBlur={() => validate()} /> <Error className={error ? "show" : ""}>{error}</Error> </Container> );