File size: 3,708 Bytes
0bd62e5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 |
<script lang="ts">
import type { SelectData } from "@gradio/utils";
import { createEventDispatcher } from "svelte";
export let value: {
label?: string;
confidences?: { label: string; confidence: number }[];
};
const dispatch = createEventDispatcher<{ select: SelectData }>();
export let color: string | undefined = undefined;
export let selectable = false;
function get_aria_referenceable_id(elem_id: string): string {
// `aria-labelledby` interprets the value as a space-separated id reference list,
// so each single id should not contain any spaces.
// Ref: https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/Attributes/aria-labelledby#benefits_and_drawbacks
return elem_id.replace(/\s/g, "-");
}
</script>
<div class="container">
<h2
class="output-class"
data-testid="label-output-value"
class:no-confidence={!("confidences" in value)}
style:background-color={color || "transparent"}
>
{value.label}
</h2>
{#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
on:click={() => {
dispatch("select", { 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;
align-self: flex-start;
margin-bottom: var(--size-1);
border-radius: var(--radius-md);
background: var(--stat-background-fill);
height: var(--size-1);
}
.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>
|