carbon-components-svelte/src/Select/SelectItem.svelte
Eric Liu dfd53ce09b
Refactor onDestroy to use onMount return function (#914)
* refactor(select-item): replace onDestroy with onMount return function

* refactor(date-picker): replace onDestroy with onMount return function

* refactor(switch): replace onDestroy with onMount return function

* refactor(composed-modal): replace onDestroy with onMount return function
2021-11-17 13:20:26 -08:00

39 lines
823 B
Svelte

<script>
/** Specify the option value */
export let value = "";
/** Specify the option text */
export let text = "";
/** Set to `true` to hide the option */
export let hidden = false;
/** Set to `true` to disable the option */
export let disabled = false;
import { getContext, onMount } from "svelte";
const ctx = getContext("Select") || getContext("TimePickerSelect");
let selected = false;
const unsubscribe = ctx.selectedValue.subscribe((currentValue) => {
selected = currentValue === value;
});
onMount(() => {
return () => unsubscribe();
});
</script>
<option
value="{value}"
disabled="{disabled}"
hidden="{hidden}"
selected="{selected}"
class:bx--select-option="{true}"
class="{$$restProps.class}"
style="{$$restProps.style}"
>
{text || value}
</option>