gradio/js/video/Video.stories.svelte
Hannah d548202d2b
Improve video trimming and error handling (#6566)
* amend trimming logic and return original file when error occurs

* add interactive story test

* add changeset

* add changeset

---------

Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
2023-12-04 13:38:55 -08:00

99 lines
2.0 KiB
Svelte

<script>
import { Meta, Template, Story } from "@storybook/addon-svelte-csf";
import Video from "./Index.svelte";
import { format } from "svelte-i18n";
import { get } from "svelte/store";
import { userEvent, within } from "@storybook/testing-library";
import { waitFor } from "@testing-library/dom";
</script>
<Meta title="Components/Video" component={Video} />
<div>
<Template let:args>
<Video i18n={get(format)} {...args} />
</Template>
</div>
<Story
name="Record from webcam"
args={{
format: "mp4",
label: "world video",
show_label: true,
interactive: true,
height: 400,
width: 400
}}
/>
<Story
name="Static video"
args={{
value: {
video: {
path: "https://gradio-static-files.s3.us-west-2.amazonaws.com/world.mp4",
url: "https://gradio-static-files.s3.us-west-2.amazonaws.com/world.mp4",
orig_name: "world.mp4"
}
},
label: "world video",
show_label: true,
interactive: false,
height: 200,
width: 400
}}
/>
<Story
name="Upload video"
args={{
label: "world video",
show_label: true,
interactive: true,
sources: ["upload", "webcam"],
width: 400,
height: 400,
value: null
}}
/>
<Story
name="Trim video"
args={{
value: {
video: {
path: "https://gradio-static-files.s3.us-west-2.amazonaws.com/world.mp4",
url: "https://gradio-static-files.s3.us-west-2.amazonaws.com/world.mp4",
orig_name: "world.mp4"
}
},
label: "world video",
show_label: true,
interactive: "true",
sources: ["upload"],
width: 400
}}
play={async ({ canvasElement }) => {
const canvas = within(canvasElement);
const trimButton = canvas.getByLabelText("Trim video to selection");
userEvent.click(trimButton);
await new Promise((r) => setTimeout(r, 4000));
const rightHandle = canvas.getByLabelText(
"end drag handle for trimming video"
);
userEvent.click(rightHandle);
for (let i = 0; i < 4; i++) {
await userEvent.keyboard("[ArrowRight]");
}
userEvent.click(canvas.getByText("Trim"));
}}
/>