mirror of
https://github.com/gradio-app/gradio.git
synced 2025-01-06 10:25:17 +08:00
67ddd40b4b
* Fix vite.config.js detecting the development mode * Fix the imports of @gradio/theme in js/app/src/lite/index.ts * [WIP] Install Pydantic V1 and mock the RootModel class * Remove Wasm WebSocket implementations * Move ASGI-HTTP conversion logic from the worker to the worker-proxy so we have fine controls on the ASGI connection at the worker-proxy level for the HTTP stream connection impl in the future * Fix asgi-types.ts * Create `WasmWorkerEventSource` and inject the `EventSource` creation in @gradio/client * Mock Pydantic V2's BaseModel * Fix Pydantic V1 installation * Make <ImageUploader /> and <ImagePreview /> Wasm-compatible * Create `getHeaderValue()` * Create `<DownloadLink />` for Wasm-compatible download and fix `<ImagePreview />` to use it * Make `gr.Video()` Wasm-compatible avoiding unnecessary execution of ffprobe * Move `<DownloadLink />` to @gradio/wasm and use it in `<VideoPreview />` too * Fix `<DownloadLink />` making `href` optional and adding `rel="noopener noreferrer"` * Make the download button of `<StaticAudio>` and `<Code />` Wasm-compatible * Make the download button of `<FilePreview />` Wasm-compatible * Improve the RootModel mock class for `.model_dump()` and `.model_json_schame()` to work * Make `<UploadProgress />` Wasm-compatible * Fix `WorkerProxy.httpRequest()` to use `decodeURIComponent()` to process `path` and `query_string` * Fix `<InteractiveAudio />` to make its upload feature Wasm-compatible * [WIP] Revert "Make `<UploadProgress />` Wasm-compatible" This reverts commit f96b4b7d5e92bb488cfe1939d25063366f714178. * Fix Image styles * Fix `<AudioPlayer />`'s `create_waveform()` to be Wasm-compatible * add changeset * formatting * Fix js/image/shared/Image.svelte to render <img> immediately * Fix js/image/shared/Image.svelte to avoid race condition * Fix js/image/shared/Image.svelte * Fix js/image/shared/Image.svelte * Fix js/image/shared/Image.svelte removing unnecessary styles * Fix js/video/shared/Video.svelte to use the passed immediately without waiting for the async resolution --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com> Co-authored-by: aliabd <ali.si3luwa@gmail.com> Co-authored-by: Abubakar Abid <abubakar@huggingface.co>
100 lines
2.3 KiB
Svelte
100 lines
2.3 KiB
Svelte
<script lang="ts">
|
|
import { createEventDispatcher, afterUpdate, tick } from "svelte";
|
|
import { BlockLabel, Empty, IconButton, ShareButton } from "@gradio/atoms";
|
|
import type { FileData } from "@gradio/client";
|
|
import { Video, Download } from "@gradio/icons";
|
|
import { uploadToHuggingFace } from "@gradio/utils";
|
|
import { DownloadLink } from "@gradio/wasm/svelte";
|
|
|
|
import Player from "./Player.svelte";
|
|
import type { I18nFormatter } from "js/app/src/gradio_helper";
|
|
|
|
export let value: FileData | null = null;
|
|
export let subtitle: FileData | null = null;
|
|
export let label: string | undefined = undefined;
|
|
export let show_label = true;
|
|
export let autoplay: boolean;
|
|
export let show_share_button = true;
|
|
export let show_download_button = true;
|
|
export let i18n: I18nFormatter;
|
|
|
|
let old_value: FileData | null = null;
|
|
let old_subtitle: FileData | null = null;
|
|
|
|
const dispatch = createEventDispatcher<{
|
|
change: FileData;
|
|
play: undefined;
|
|
pause: undefined;
|
|
end: undefined;
|
|
stop: undefined;
|
|
}>();
|
|
|
|
$: value && dispatch("change", value);
|
|
|
|
afterUpdate(async () => {
|
|
// needed to bust subtitle caching issues on Chrome
|
|
if (
|
|
value !== old_value &&
|
|
subtitle !== old_subtitle &&
|
|
old_subtitle !== null
|
|
) {
|
|
old_value = value;
|
|
value = null;
|
|
await tick();
|
|
value = old_value;
|
|
}
|
|
old_value = value;
|
|
old_subtitle = subtitle;
|
|
});
|
|
</script>
|
|
|
|
<BlockLabel {show_label} Icon={Video} label={label || "Video"} />
|
|
{#if value === null || value.url === undefined}
|
|
<Empty unpadded_box={true} size="large"><Video /></Empty>
|
|
{:else}
|
|
{#key value.url}
|
|
<Player
|
|
src={value.url}
|
|
subtitle={subtitle?.url}
|
|
{autoplay}
|
|
on:play
|
|
on:pause
|
|
on:stop
|
|
on:end
|
|
mirror={false}
|
|
{label}
|
|
interactive={false}
|
|
/>
|
|
{/key}
|
|
<div class="icon-buttons" data-testid="download-div">
|
|
{#if show_download_button}
|
|
<DownloadLink href={value.url} download={value.orig_name || value.path}>
|
|
<IconButton Icon={Download} label="Download" />
|
|
</DownloadLink>
|
|
{/if}
|
|
{#if show_share_button}
|
|
<ShareButton
|
|
{i18n}
|
|
on:error
|
|
on:share
|
|
{value}
|
|
formatter={async (value) => {
|
|
if (!value) return "";
|
|
let url = await uploadToHuggingFace(value.data, "url");
|
|
return url;
|
|
}}
|
|
/>
|
|
{/if}
|
|
</div>
|
|
{/if}
|
|
|
|
<style>
|
|
.icon-buttons {
|
|
display: flex;
|
|
position: absolute;
|
|
top: 6px;
|
|
right: 6px;
|
|
gap: var(--size-1);
|
|
}
|
|
</style>
|