| <script lang="ts"> |
| import type { SelectData } from "@gradio/utils"; |
| |
| let { |
| value, |
| color = undefined, |
| selectable = false, |
| show_heading = true, |
| onselect |
| }: { |
| value: { |
| label?: string; |
| confidences?: { label: string; confidence: number }[]; |
| }; |
| color?: string | undefined; |
| selectable?: boolean; |
| show_heading?: boolean; |
| onselect?: (detail: SelectData) => void; |
| } = $props(); |
| |
| function get_aria_referenceable_id(elem_id: string): string { |
| |
| |
| |
| return elem_id.replace(/\s/g, "-"); |
| } |
| </script> |
|
|
| <div class="container"> |
| {#if show_heading || !value.confidences} |
| <h2 |
| class="output-class" |
| data-testid="label-output-value" |
| class:no-confidence={!("confidences" in value)} |
| style:background-color={color || "transparent"} |
| > |
| {value.label} |
| </h2> |
| {/if} |
|
|
| {#if typeof value === "object" && value.confidences} |
| {#each value.confidences as confidence_set, i} |
| <button |
| class="confidence-set group" |
| data-testid={`${confidence_set.label}-confidence-set`} |
| class:selectable |
| onclick={() => { |
| onselect?.({ index: i, value: confidence_set.label }); |
| }} |
| > |
| <div class="inner-wrap"> |
| <meter |
| aria-labelledby={get_aria_referenceable_id( |
| `meter-text-${confidence_set.label}` |
| )} |
| aria-label={confidence_set.label} |
| aria-valuenow={Math.round(confidence_set.confidence * 100)} |
| aria-valuemin="0" |
| aria-valuemax="100" |
| class="bar" |
| min="0" |
| max="1" |
| value={confidence_set.confidence} |
| style="width: {confidence_set.confidence * |
| 100}%; background: var(--stat-background-fill); |
| " |
| /> |
|
|
| <dl class="label"> |
| <dt |
| id={get_aria_referenceable_id( |
| `meter-text-${confidence_set.label}` |
| )} |
| class="text" |
| > |
| {confidence_set.label} |
| </dt> |
| <div class="line" /> |
| <dd class="confidence"> |
| {Math.round(confidence_set.confidence * 100)}% |
| </dd> |
| </dl> |
| </div> |
| </button> |
| {/each} |
| {/if} |
| </div> |
|
|
| <style> |
| .container { |
| padding: var(--block-padding); |
| } |
| .output-class { |
| display: flex; |
| justify-content: center; |
| align-items: center; |
| padding: var(--size-6) var(--size-4); |
| color: var(--body-text-color); |
| font-weight: var(--weight-bold); |
| font-size: var(--text-xxl); |
| } |
| |
| .confidence-set { |
| display: flex; |
| justify-content: space-between; |
| align-items: flex-start; |
| margin-bottom: var(--size-2); |
| color: var(--body-text-color); |
| line-height: var(--line-none); |
| font-family: var(--font-mono); |
| width: 100%; |
| } |
| |
| .confidence-set:last-child { |
| margin-bottom: 0; |
| } |
| |
| .inner-wrap { |
| flex: 1 1 0%; |
| display: flex; |
| flex-direction: column; |
| } |
| |
| .bar { |
| appearance: none; |
| -webkit-appearance: none; |
| -moz-appearance: none; |
| align-self: flex-start; |
| margin-bottom: var(--size-1); |
| border-radius: var(--radius-md); |
| background: var(--stat-background-fill); |
| height: var(--size-1); |
| border: none; |
| } |
| |
| .bar::-moz-meter-bar { |
| border-radius: var(--radius-md); |
| background: var(--stat-background-fill); |
| } |
| |
| .bar::-webkit-meter-bar { |
| border-radius: var(--radius-md); |
| background: var(--stat-background-fill); |
| border: none; |
| } |
| |
| .bar::-webkit-meter-optimum-value, |
| .bar::-webkit-meter-suboptimum-value, |
| .bar::-webkit-meter-even-less-good-value { |
| border-radius: var(--radius-md); |
| background: var(--stat-background-fill); |
| } |
| |
| .bar::-ms-fill { |
| border-radius: var(--radius-md); |
| background: var(--stat-background-fill); |
| border: none; |
| } |
| |
| .label { |
| display: flex; |
| align-items: baseline; |
| } |
| |
| .label > * + * { |
| margin-left: var(--size-2); |
| } |
| |
| .confidence-set:hover .label { |
| color: var(--color-accent); |
| } |
| |
| .confidence-set:focus .label { |
| color: var(--color-accent); |
| } |
| |
| .text { |
| line-height: var(--line-md); |
| text-align: left; |
| } |
| |
| .line { |
| flex: 1 1 0%; |
| border: 1px dashed var(--border-color-primary); |
| padding-right: var(--size-4); |
| padding-left: var(--size-4); |
| } |
| |
| .confidence { |
| margin-left: auto; |
| text-align: right; |
| } |
| </style> |
|
|