mirror of https://github.com/gabehf/Koito.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
90 lines
3.3 KiB
90 lines
3.3 KiB
import { useEffect, useState } from "react";
|
|
import { Modal } from "./Modal";
|
|
import { replaceImage, search, type SearchResponse } from "api/api";
|
|
import SearchResults from "../SearchResults";
|
|
import { AsyncButton } from "../AsyncButton";
|
|
|
|
interface Props {
|
|
type: string
|
|
id: number
|
|
musicbrainzId?: string
|
|
open: boolean
|
|
setOpen: Function
|
|
}
|
|
|
|
export default function ImageReplaceModal({ musicbrainzId, type, id, open, setOpen }: Props) {
|
|
const [query, setQuery] = useState('');
|
|
const [loading, setLoading] = useState(false)
|
|
const [suggestedImgLoading, setSuggestedImgLoading] = useState(true)
|
|
|
|
const doImageReplace = (url: string) => {
|
|
setLoading(true)
|
|
const formData = new FormData
|
|
formData.set(`${type.toLowerCase()}_id`, id.toString())
|
|
formData.set("image_url", url)
|
|
replaceImage(formData)
|
|
.then((r) => {
|
|
if (r.ok) {
|
|
window.location.reload()
|
|
} else {
|
|
console.log(r)
|
|
setLoading(false)
|
|
}
|
|
})
|
|
.catch((err) => console.log(err))
|
|
}
|
|
|
|
const closeModal = () => {
|
|
setOpen(false)
|
|
setQuery('')
|
|
}
|
|
|
|
return (
|
|
<Modal isOpen={open} onClose={closeModal}>
|
|
<h2>Replace Image</h2>
|
|
<div className="flex flex-col items-center">
|
|
<input
|
|
type="text"
|
|
autoFocus
|
|
// i find my stupid a(n) logic to be a little silly so im leaving it in even if its not optimal
|
|
placeholder={`Image URL`}
|
|
className="w-full mx-auto fg bg rounded p-2"
|
|
value={query}
|
|
onChange={(e) => setQuery(e.target.value)}
|
|
/>
|
|
{ query != "" ?
|
|
<div className="flex gap-2 mt-4">
|
|
<AsyncButton loading={loading} onClick={() => doImageReplace(query)}>Submit</AsyncButton>
|
|
</div> :
|
|
''}
|
|
{ type === "Album" && musicbrainzId ?
|
|
<>
|
|
<h3 className="mt-5">Suggested Image (Click to Apply)</h3>
|
|
<button
|
|
className="mt-4"
|
|
disabled={loading}
|
|
onClick={() => doImageReplace(`https://coverartarchive.org/release/${musicbrainzId}/front`)}
|
|
>
|
|
<div className={`relative`}>
|
|
{suggestedImgLoading && (
|
|
<div className="absolute inset-0 flex items-center justify-center">
|
|
<div
|
|
className="animate-spin rounded-full border-2 border-gray-300 border-t-transparent"
|
|
style={{ width: 20, height: 20 }}
|
|
/>
|
|
</div>
|
|
)}
|
|
<img
|
|
src={`https://coverartarchive.org/release/${musicbrainzId}/front`}
|
|
onLoad={() => setSuggestedImgLoading(false)}
|
|
onError={() => setSuggestedImgLoading(false)}
|
|
className={`block w-[130px] h-auto ${suggestedImgLoading ? 'opacity-0' : 'opacity-100'} transition-opacity duration-300`} />
|
|
</div>
|
|
</button>
|
|
</>
|
|
: ''
|
|
}
|
|
</div>
|
|
</Modal>
|
|
)
|
|
} |