cobalt/web/src/components/save/buttons/DownloadButton.svelte
2024-07-13 19:15:43 +06:00

188 lines
4.8 KiB
Svelte

<script lang="ts">
import "@fontsource-variable/noto-sans-mono";
import API from "$lib/api";
import { device } from "$lib/device";
import { t } from "$lib/i18n/translations";
import { createDialog } from "$lib/dialogs";
import type { DialogInfo } from "$lib/types/dialog";
export let url: string;
$: buttonText = ">>";
$: buttonAltText = $t('a11y.save.download');
$: isDisabled = false;
let defaultErrorPopup = {
id: "save-error",
type: "small",
title: "",
bodySubText: "",
buttons: [{
text: $t("general.gotit"),
color: "gray",
action: () => {},
}]
}
const changeDownloadButton = (state: string) => {
isDisabled = true;
switch (state) {
case "think":
buttonText = "...";
buttonAltText = $t('a11y.save.downloadThink');
break;
case "check":
buttonText = "..?";
buttonAltText = $t('a11y.save.downloadCheck');
break;
case "done":
buttonText = ">>>";
buttonAltText = $t('a11y.save.downloadDone');
break;
case "error":
buttonText = "!!";
buttonAltText = $t('a11y.save.downloadError');
break;
}
};
const restoreDownloadButton = () => {
setTimeout(() => {
buttonText = ">>";
isDisabled = false;
buttonAltText = $t('a11y.save.download');
}, 2500);
};
const downloadFile = (url: string) => {
if (device.is.iOS) {
return navigator?.share({ url }).catch(() => {});
} else {
return window.open(url, "_blank");
}
};
// alerts are temporary, we don't have an error popup yet >_<
export const download = async (link: string) => {
changeDownloadButton("think");
const response = await API.request(link);
if (!response) {
changeDownloadButton("error");
restoreDownloadButton();
return createDialog({
...defaultErrorPopup as DialogInfo,
bodyText: "couldn't access the api"
})
}
if (response.status === "error" || response.status === "rate-limit") {
changeDownloadButton("error");
restoreDownloadButton();
return createDialog({
...defaultErrorPopup as DialogInfo,
bodyText: response.text
})
}
if (response.status === "redirect") {
changeDownloadButton("done");
restoreDownloadButton();
return downloadFile(response.url);
}
if (response.status === "stream") {
changeDownloadButton("check");
const probeResult = await API.probeCobaltStream(response.url);
if (probeResult === 200) {
changeDownloadButton("done");
restoreDownloadButton();
return downloadFile(response.url);
} else {
changeDownloadButton("error");
restoreDownloadButton();
return createDialog({
...defaultErrorPopup as DialogInfo,
bodyText: "couldn't probe the stream"
})
}
}
};
</script>
<button
id="download-button"
disabled={isDisabled}
on:click={() => download(url)}
aria-label={buttonAltText}
>
<span id="download-state">{buttonText}</span>
</button>
<style>
#download-button {
display: flex;
align-items: center;
justify-content: center;
height: 100%;
min-width: 48px;
border-radius: 0;
padding: 0 12px;
background: none;
box-shadow: none;
transform: none;
border-left: 1.5px var(--input-border) solid;
border-top-right-radius: var(--border-radius);
border-bottom-right-radius: var(--border-radius);
}
#download-button:focus-visible {
box-shadow: 0 0 0 2px var(--blue) inset;
}
#download-state {
font-size: 24px;
font-family: "Noto Sans Mono Variable", "Noto Sans Mono",
"IBM Plex Mono", monospace;
font-weight: 400;
text-align: center;
text-indent: -5px;
letter-spacing: -0.22em;
margin-bottom: 0.1rem;
}
#download-button:disabled {
cursor: unset;
}
:global(#input-container.focused) #download-button {
border-left: 2px var(--secondary) solid;
}
@media (hover: hover) {
#download-button:hover {
background: var(--button-hover-transparent);
}
#download-button:disabled:hover {
background: none;
}
}
</style>