mirror of
https://github.com/gradio-app/gradio.git
synced 2025-03-31 12:20:26 +08:00
Adds change()
event to gr.Gallery
(#5780)
* add change event to gallery * revert * format * add changeset * lint * add tests * lint --------- Co-authored-by: gradio-pr-bot <gradio-pr-bot@users.noreply.github.com>
This commit is contained in:
parent
5d5ddcfa9b
commit
ed0f9a21b0
6
.changeset/forty-hornets-share.md
Normal file
6
.changeset/forty-hornets-share.md
Normal file
@ -0,0 +1,6 @@
|
||||
---
|
||||
"@gradio/gallery": minor
|
||||
"gradio": minor
|
||||
---
|
||||
|
||||
feat:Adds `change()` event to `gr.Gallery`
|
@ -15,6 +15,7 @@ from gradio import utils
|
||||
from gradio.components.base import IOComponent, _Keywords
|
||||
from gradio.deprecation import warn_deprecation, warn_style_method_deprecation
|
||||
from gradio.events import (
|
||||
Changeable,
|
||||
EventListenerMethod,
|
||||
Selectable,
|
||||
)
|
||||
@ -23,7 +24,7 @@ set_documentation_group("component")
|
||||
|
||||
|
||||
@document()
|
||||
class Gallery(IOComponent, GallerySerializable, Selectable):
|
||||
class Gallery(IOComponent, GallerySerializable, Changeable, Selectable):
|
||||
"""
|
||||
Used to display a list of images as a gallery that can be scrolled through.
|
||||
Preprocessing: this component does *not* accept input.
|
||||
|
72
js/gallery/Gallery.test.ts
Normal file
72
js/gallery/Gallery.test.ts
Normal file
@ -0,0 +1,72 @@
|
||||
import { test, describe, assert, afterEach, vi } from "vitest";
|
||||
import { cleanup, render } from "@gradio/tootils";
|
||||
import { setupi18n } from "../app/src/i18n";
|
||||
|
||||
import Gallery from "./static";
|
||||
import type { LoadingStatus } from "@gradio/statustracker";
|
||||
|
||||
const loading_status: LoadingStatus = {
|
||||
eta: 0,
|
||||
queue_position: 1,
|
||||
queue_size: 1,
|
||||
status: "complete" as LoadingStatus["status"],
|
||||
scroll_to_output: false,
|
||||
visible: true,
|
||||
fn_index: 0,
|
||||
show_progress: "full"
|
||||
};
|
||||
|
||||
describe("Gallery", () => {
|
||||
afterEach(() => {
|
||||
cleanup();
|
||||
vi.useRealTimers();
|
||||
});
|
||||
beforeEach(() => {
|
||||
setupi18n();
|
||||
});
|
||||
test("renders the image provided", async () => {
|
||||
const { getByTestId } = await render(Gallery, {
|
||||
show_label: true,
|
||||
label: "Gallery",
|
||||
loading_status: loading_status,
|
||||
preview: true,
|
||||
root: "",
|
||||
root_url: "",
|
||||
value: [
|
||||
"https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg"
|
||||
]
|
||||
});
|
||||
let item = getByTestId("detailed-image") as HTMLImageElement;
|
||||
assert.equal(
|
||||
item.src,
|
||||
"https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg"
|
||||
);
|
||||
});
|
||||
|
||||
test("triggers the change event if and only if the images change", async () => {
|
||||
const { listen, component } = await render(Gallery, {
|
||||
show_label: true,
|
||||
label: "Gallery",
|
||||
loading_status: loading_status,
|
||||
preview: true,
|
||||
root: "",
|
||||
root_url: "",
|
||||
value: [
|
||||
"https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg"
|
||||
]
|
||||
});
|
||||
const change_event = listen("change");
|
||||
|
||||
await component.$set({
|
||||
value: [
|
||||
"https://gradio-static-files.s3.us-west-2.amazonaws.com/header-image.jpg"
|
||||
]
|
||||
});
|
||||
assert.equal(change_event.callCount, 0);
|
||||
|
||||
await component.$set({
|
||||
value: ["https://gradio-static-files.s3.us-west-2.amazonaws.com/lion.jpg"]
|
||||
});
|
||||
assert.equal(change_event.callCount, 1);
|
||||
});
|
||||
});
|
@ -13,7 +13,8 @@
|
||||
"@gradio/image": "workspace:^",
|
||||
"@gradio/statustracker": "workspace:^",
|
||||
"@gradio/upload": "workspace:^",
|
||||
"@gradio/utils": "workspace:^"
|
||||
"@gradio/utils": "workspace:^",
|
||||
"dequal": "^2.0.2"
|
||||
},
|
||||
"main_changeset": true,
|
||||
"exports": {
|
||||
|
@ -2,7 +2,7 @@
|
||||
import { BlockLabel, Empty, ShareButton } from "@gradio/atoms";
|
||||
import { ModifyUpload } from "@gradio/upload";
|
||||
import type { SelectData } from "@gradio/utils";
|
||||
|
||||
import { dequal } from "dequal";
|
||||
import { createEventDispatcher } from "svelte";
|
||||
import { tick } from "svelte";
|
||||
import { _ } from "svelte-i18n";
|
||||
@ -30,6 +30,7 @@
|
||||
export let show_download_button = false;
|
||||
|
||||
const dispatch = createEventDispatcher<{
|
||||
change: undefined;
|
||||
select: SelectData;
|
||||
}>();
|
||||
|
||||
@ -53,7 +54,7 @@
|
||||
let selected_image = preview && value?.length ? 0 : null;
|
||||
let old_selected_image: number | null = selected_image;
|
||||
|
||||
$: if (prevValue !== value) {
|
||||
$: if (!dequal(prevValue, value)) {
|
||||
// When value is falsy (clear button or first load),
|
||||
// preview determines the selected image
|
||||
if (was_reset) {
|
||||
@ -69,6 +70,7 @@
|
||||
? selected_image
|
||||
: null;
|
||||
}
|
||||
dispatch("change");
|
||||
prevValue = value;
|
||||
}
|
||||
|
||||
@ -160,10 +162,12 @@
|
||||
container_width / 2 +
|
||||
container_element.scrollLeft;
|
||||
|
||||
container_element?.scrollTo({
|
||||
left: pos < 0 ? 0 : pos,
|
||||
behavior: "smooth"
|
||||
});
|
||||
if (container_element && typeof container_element.scrollTo === "function") {
|
||||
container_element.scrollTo({
|
||||
left: pos < 0 ? 0 : pos,
|
||||
behavior: "smooth"
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
let client_height = 0;
|
||||
|
@ -29,6 +29,7 @@
|
||||
export let show_share_button = false;
|
||||
export let show_download_button = false;
|
||||
export let gradio: Gradio<{
|
||||
change: typeof value;
|
||||
select: SelectData;
|
||||
share: ShareData;
|
||||
error: string;
|
||||
@ -49,6 +50,7 @@
|
||||
>
|
||||
<StatusTracker {...loading_status} />
|
||||
<Gallery
|
||||
on:change={() => gradio.dispatch("change", value)}
|
||||
on:select={(e) => gradio.dispatch("select", e.detail)}
|
||||
on:share={(e) => gradio.dispatch("share", e.detail)}
|
||||
on:error={(e) => gradio.dispatch("error", e.detail)}
|
||||
|
3
pnpm-lock.yaml
generated
3
pnpm-lock.yaml
generated
@ -828,6 +828,9 @@ importers:
|
||||
'@gradio/utils':
|
||||
specifier: workspace:^
|
||||
version: link:../utils
|
||||
dequal:
|
||||
specifier: ^2.0.2
|
||||
version: 2.0.2
|
||||
|
||||
js/group: {}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user