community_icon_html = """"""
loading_icon_html = """"""
share_js = """async () => {
async function uploadFile(file){
const UPLOAD_URL = 'https://huggingface.co/uploads';
const response = await fetch(UPLOAD_URL, {
method: 'POST',
headers: {
'Content-Type': file.type,
'X-Requested-With': 'XMLHttpRequest',
},
body: file, /// <- File inherits from Blob
});
const url = await response.text();
return url;
}
async function getInputImgFile(imgEl){
const res = await fetch(imgEl.src);
const blob = await res.blob();
const imgId = Date.now() % 200;
const isPng = imgEl.src.startsWith(`data:image/png`);
if(isPng){
const fileName = `sd-perception-${{imgId}}.png`;
return new File([blob], fileName, { type: 'image/png' });
}else{
const fileName = `sd-perception-${{imgId}}.jpg`;
return new File([blob], fileName, { type: 'image/jpeg' });
}
}
const gradioEl = document.querySelector("gradio-app").shadowRoot || document.querySelector('body > gradio-app');
const generatedImages = gradioEl.querySelectorAll(".grid-wrap img")
const prompt = gradioEl.querySelector("#component-3 textarea").value
const shareBtnEl = gradioEl.querySelector('#share-btn');
const shareIconEl = gradioEl.querySelector('#share-btn-share-icon');
const loadingIconEl = gradioEl.querySelector('#share-btn-loading-icon');
shareBtnEl.style.pointerEvents = 'none';
shareIconEl.style.display = 'none';
loadingIconEl.style.removeProperty('display');
let urlOutputs = [];
for (let i = 0; i < generatedImages.length; i++) {
let imgEl = generatedImages[i];
let outputFile = await getInputImgFile(imgEl);
let urlOutputImg = await uploadFile(outputFile);
urlOutputs.push(urlOutputImg);
}
const imgTags = urlOutputs.map(url => `![Generated Image](${url})`).join('\n');
const descriptionMd = `### Prompt
${prompt}
#### Generated Images:
{imgTags}
`;
console.log(descriptionMd)
const params = new URLSearchParams({
title: prompt,
description: descriptionMd,
preview: true
});
const paramsStr = params.toString();
window.open(`https://huggingface.co/spaces/warp-ai/Wuerstchen/discussions/new?${paramsStr}`, '_blank');
shareBtnEl.style.removeProperty('pointer-events');
shareIconEl.style.removeProperty('display');
loadingIconEl.style.display = 'none';
}"""