gradio/js/model3D/shared/Model3DUpload.svelte
Freddy Boulton 2afca65419
Add max_file_size parameter to launch() that limits the size of files that can be uploaded in the Gradio app (#7909)
* File size limits

* Implementation

* add changeset

* Fix tests

* python client support

* lint

* fix test

* lint

* add changeset

* Set at the blocks level

* add changeset

* type check

* format

* lint

* lint

* Delete files as soon as they're encountered

* fix tests

* type hint 🙄

* Fix tests

* Fix below limit test

* add changeset

* Fix tests

* Add client file

* revert loop code

* Add to guides

* Pass in via gradio component

* add changeset

* Update loading status

* Make errors closeable

* add changeset

* Add code

* Lint

* Changelog highlight

* Fix i18n in storybook

* Address comments

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2024-04-19 15:38:53 -04:00

146 lines
3.2 KiB
Svelte

<script lang="ts">
import { createEventDispatcher, tick } from "svelte";
import { Upload, ModifyUpload } from "@gradio/upload";
import type { FileData } from "@gradio/client";
import { BlockLabel } from "@gradio/atoms";
import { File } from "@gradio/icons";
import type { I18nFormatter } from "@gradio/utils";
import type Canvas3DGS from "./Canvas3DGS.svelte";
import type Canvas3D from "./Canvas3D.svelte";
export let value: null | FileData;
export let clear_color: [number, number, number, number] = [0, 0, 0, 0];
export let label = "";
export let show_label: boolean;
export let root: string;
export let i18n: I18nFormatter;
export let zoom_speed = 1;
export let pan_speed = 1;
export let max_file_size: number | null = null;
// alpha, beta, radius
export let camera_position: [number | null, number | null, number | null] = [
null,
null,
null
];
async function handle_upload({
detail
}: CustomEvent<FileData>): Promise<void> {
value = detail;
await tick();
dispatch("change", value);
dispatch("load", value);
}
async function handle_clear(): Promise<void> {
value = null;
await tick();
dispatch("clear");
dispatch("change");
}
let use_3dgs = false;
let Canvas3DGSComponent: typeof Canvas3DGS;
let Canvas3DComponent: typeof Canvas3D;
async function loadCanvas3D(): Promise<typeof Canvas3D> {
const module = await import("./Canvas3D.svelte");
return module.default;
}
async function loadCanvas3DGS(): Promise<typeof Canvas3DGS> {
const module = await import("./Canvas3DGS.svelte");
return module.default;
}
$: if (value) {
use_3dgs = value.path.endsWith(".splat") || value.path.endsWith(".ply");
if (use_3dgs) {
loadCanvas3DGS().then((component) => {
Canvas3DGSComponent = component;
});
} else {
loadCanvas3D().then((component) => {
Canvas3DComponent = component;
});
}
}
let canvas3d: Canvas3D | undefined;
async function handle_undo(): Promise<void> {
canvas3d?.reset_camera_position(camera_position, zoom_speed, pan_speed);
}
const dispatch = createEventDispatcher<{
change: FileData | null;
clear: undefined;
drag: boolean;
load: FileData;
}>();
let dragging = false;
$: dispatch("drag", dragging);
</script>
<BlockLabel {show_label} Icon={File} label={label || "3D Model"} />
{#if value === null}
<Upload
on:load={handle_upload}
{root}
{max_file_size}
filetype={[".stl", ".obj", ".gltf", ".glb", "model/obj", ".splat", ".ply"]}
bind:dragging
on:error
>
<slot />
</Upload>
{:else}
<div class="input-model">
<ModifyUpload
undoable={!use_3dgs}
on:clear={handle_clear}
{i18n}
on:undo={handle_undo}
absolute
/>
{#if use_3dgs}
<svelte:component
this={Canvas3DGSComponent}
{value}
{zoom_speed}
{pan_speed}
/>
{:else}
<svelte:component
this={Canvas3DComponent}
bind:this={canvas3d}
{value}
{clear_color}
{camera_position}
{zoom_speed}
{pan_speed}
/>
{/if}
</div>
{/if}
<style>
.input-model {
display: flex;
position: relative;
justify-content: center;
align-items: center;
width: var(--size-full);
height: var(--size-full);
}
.input-model :global(canvas) {
width: var(--size-full);
height: var(--size-full);
object-fit: contain;
overflow: hidden;
}
</style>