mirror of
https://github.com/gradio-app/gradio.git
synced 2024-12-03 01:50:59 +08:00
2afca65419
* 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>
234 lines
5.5 KiB
Svelte
234 lines
5.5 KiB
Svelte
<script context="module">
|
|
let _id = 0;
|
|
</script>
|
|
|
|
<script lang="ts">
|
|
import type { Gradio } from "@gradio/utils";
|
|
import { Block, BlockTitle } from "@gradio/atoms";
|
|
import { StatusTracker } from "@gradio/statustracker";
|
|
import type { LoadingStatus } from "@gradio/statustracker";
|
|
import { afterUpdate } from "svelte";
|
|
|
|
export let gradio: Gradio<{
|
|
change: never;
|
|
input: never;
|
|
release: number;
|
|
clear_status: LoadingStatus;
|
|
}>;
|
|
export let elem_id = "";
|
|
export let elem_classes: string[] = [];
|
|
export let visible = true;
|
|
export let value = 0;
|
|
export let label = gradio.i18n("slider.slider");
|
|
export let info: string | undefined = undefined;
|
|
export let container = true;
|
|
export let scale: number | null = null;
|
|
export let min_width: number | undefined = undefined;
|
|
export let minimum: number;
|
|
export let maximum = 100;
|
|
export let step: number;
|
|
export let show_label: boolean;
|
|
export let interactive: boolean;
|
|
export let loading_status: LoadingStatus;
|
|
export let value_is_output = false;
|
|
|
|
let rangeInput: HTMLInputElement;
|
|
let numberInput: HTMLInputElement;
|
|
|
|
const id = `range_id_${_id++}`;
|
|
|
|
function handle_change(): void {
|
|
gradio.dispatch("change");
|
|
if (!value_is_output) {
|
|
gradio.dispatch("input");
|
|
}
|
|
}
|
|
afterUpdate(() => {
|
|
value_is_output = false;
|
|
setSlider();
|
|
});
|
|
|
|
function handle_release(e: MouseEvent): void {
|
|
gradio.dispatch("release", value);
|
|
}
|
|
function clamp(): void {
|
|
gradio.dispatch("release", value);
|
|
value = Math.min(Math.max(value, minimum), maximum);
|
|
}
|
|
|
|
function setSlider(): void {
|
|
setSliderRange();
|
|
rangeInput.addEventListener("input", setSliderRange);
|
|
numberInput.addEventListener("input", setSliderRange);
|
|
}
|
|
function setSliderRange(): void {
|
|
const dividend = Number(rangeInput.value) - Number(rangeInput.min);
|
|
const divisor = Number(rangeInput.max) - Number(rangeInput.min);
|
|
const h = divisor === 0 ? 0 : dividend / divisor;
|
|
rangeInput.style.backgroundSize = h * 100 + "% 100%";
|
|
}
|
|
|
|
$: disabled = !interactive;
|
|
|
|
// When the value changes, dispatch the change event via handle_change()
|
|
// See the docs for an explanation: https://svelte.dev/docs/svelte-components#script-3-$-marks-a-statement-as-reactive
|
|
$: value, handle_change();
|
|
</script>
|
|
|
|
<Block {visible} {elem_id} {elem_classes} {container} {scale} {min_width}>
|
|
<StatusTracker
|
|
autoscroll={gradio.autoscroll}
|
|
i18n={gradio.i18n}
|
|
{...loading_status}
|
|
on:clear_status={() => gradio.dispatch("clear_status", loading_status)}
|
|
/>
|
|
|
|
<div class="wrap">
|
|
<div class="head">
|
|
<label for={id}>
|
|
<BlockTitle {show_label} {info}>{label}</BlockTitle>
|
|
</label>
|
|
|
|
<input
|
|
aria-label={`number input for ${label}`}
|
|
data-testid="number-input"
|
|
type="number"
|
|
bind:value
|
|
bind:this={numberInput}
|
|
min={minimum}
|
|
max={maximum}
|
|
on:blur={clamp}
|
|
{step}
|
|
{disabled}
|
|
on:pointerup={handle_release}
|
|
/>
|
|
</div>
|
|
</div>
|
|
|
|
<input
|
|
type="range"
|
|
{id}
|
|
name="cowbell"
|
|
bind:value
|
|
bind:this={rangeInput}
|
|
min={minimum}
|
|
max={maximum}
|
|
{step}
|
|
{disabled}
|
|
on:pointerup={handle_release}
|
|
aria-label={`range slider for ${label}`}
|
|
/>
|
|
</Block>
|
|
|
|
<style>
|
|
.wrap {
|
|
display: flex;
|
|
flex-direction: column;
|
|
width: 100%;
|
|
}
|
|
|
|
.head {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
input[type="number"] {
|
|
display: block;
|
|
position: relative;
|
|
outline: none !important;
|
|
box-shadow: var(--input-shadow);
|
|
border: var(--input-border-width) solid var(--input-border-color);
|
|
border-radius: var(--input-radius);
|
|
background: var(--input-background-fill);
|
|
padding: var(--size-2) var(--size-2);
|
|
height: var(--size-6);
|
|
color: var(--body-text-color);
|
|
font-size: var(--input-text-size);
|
|
line-height: var(--line-sm);
|
|
text-align: center;
|
|
}
|
|
|
|
input:disabled {
|
|
-webkit-text-fill-color: var(--body-text-color);
|
|
-webkit-opacity: 1;
|
|
opacity: 1;
|
|
}
|
|
|
|
input[type="number"]:focus {
|
|
box-shadow: var(--input-shadow-focus);
|
|
border-color: var(--input-border-color-focus);
|
|
}
|
|
|
|
input::placeholder {
|
|
color: var(--input-placeholder-color);
|
|
}
|
|
|
|
input[disabled] {
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
input[type="range"] {
|
|
-webkit-appearance: none;
|
|
appearance: none;
|
|
width: 100%;
|
|
accent-color: var(--slider-color);
|
|
height: 4px;
|
|
background: var(--neutral-200);
|
|
border-radius: 5px;
|
|
background-image: linear-gradient(var(--slider-color), var(--slider-color));
|
|
background-size: 0% 100%;
|
|
background-repeat: no-repeat;
|
|
}
|
|
|
|
input[type="range"]::-webkit-slider-thumb {
|
|
-webkit-appearance: none;
|
|
box-shadow: var(--input-shadow);
|
|
border: solid 0.5px #ddd;
|
|
height: 20px;
|
|
width: 20px;
|
|
border-radius: 50%;
|
|
background-color: white;
|
|
cursor: pointer;
|
|
margin-top: -2px;
|
|
transition: background-color 0.1s ease;
|
|
}
|
|
|
|
input[type="range"]::-webkit-slider-thumb:hover {
|
|
background: var(--neutral-50);
|
|
}
|
|
|
|
input[type="range"][disabled] {
|
|
background: var(--body-text-color-subdued);
|
|
}
|
|
|
|
input[type="range"][disabled]::-webkit-slider-thumb {
|
|
cursor: not-allowed;
|
|
background-color: var(--body-text-color-subdued);
|
|
}
|
|
|
|
input[type="range"][disabled]::-moz-range-track {
|
|
cursor: not-allowed;
|
|
background-color: var(--body-text-color-subdued);
|
|
}
|
|
|
|
input[type="range"][disabled]::-webkit-slider-thumb:hover {
|
|
background-color: var(--body-text-color-subdued);
|
|
}
|
|
|
|
input[type="range"][disabled]::-moz-range-track:hover {
|
|
background-color: var(--body-text-color-subdued);
|
|
}
|
|
|
|
input[type="range"]::-webkit-slider-runnable-track {
|
|
-webkit-appearance: none;
|
|
box-shadow: none;
|
|
border: none;
|
|
background: transparent;
|
|
height: 400%;
|
|
}
|
|
|
|
input[type="range"]::-moz-range-track {
|
|
height: 12px;
|
|
}
|
|
</style>
|