carbon-components-svelte/src/Checkbox/Checkbox.svelte
2020-11-04 06:04:25 -08:00

98 lines
2.1 KiB
Svelte

<script>
/**
* @event {boolean} check
*/
/** Specify whether the checkbox is checked */
export let checked = false;
/** Specify whether the checkbox is indeterminate */
export let indeterminate = false;
/** Set to `true` to display the skeleton state */
export let skeleton = false;
/** Set to `true` for the checkbox to be read-only */
export let readonly = false;
/** Set to `true` to disable the checkbox */
export let disabled = false;
/** Specify the label text */
export let labelText = "";
/** Set to `true` to visually hide the label text */
export let hideLabel = false;
/** Set a name for the input element */
export let name = "";
/**
* Specify the title attribute for the label element
* @type {string}
*/
export let title = undefined;
/**
* Set an id for the input label
* @type {string}
*/
export let id = "ccs-" + Math.random().toString(36);
/**
* Obtain a reference to the input HTML element
* @type {null | HTMLInputElement}
*/
export let ref = null;
import { createEventDispatcher } from "svelte";
import CheckboxSkeleton from "./CheckboxSkeleton.svelte";
const dispatch = createEventDispatcher();
$: dispatch("check", checked);
</script>
{#if skeleton}
<CheckboxSkeleton
{...$$restProps}
on:click
on:mouseover
on:mouseenter
on:mouseleave
/>
{:else}
<div
class:bx--form-item="{true}"
class:bx--checkbox-wrapper="{true}"
{...$$restProps}
on:click
on:mouseover
on:mouseenter
on:mouseleave
>
<input
bind:this="{ref}"
type="checkbox"
checked="{checked}"
disabled="{disabled}"
id="{id}"
indeterminate="{indeterminate}"
name="{name}"
readonly="{readonly}"
class:bx--checkbox="{true}"
on:change
on:change="{() => {
checked = !checked;
}}"
/>
<label for="{id}" title="{title}" class:bx--checkbox-label="{true}">
<span
class:bx--checkbox-label-text="{true}"
class:bx--visually-hidden="{hideLabel}"
>
{labelText}
</span>
</label>
</div>
{/if}