1
0
Fork 0
mirror of synced 2024-07-11 09:15:48 +12:00

Allow selects to support no placeholder option

This commit is contained in:
Andrew Kingston 2021-04-16 09:01:21 +01:00
parent 7d91794a53
commit 966d842d7c
2 changed files with 4 additions and 5 deletions

View file

@ -4,7 +4,7 @@
export let value = null
export let fieldId = null
export let placeholder = null
export let placeholder = "Choose an option"
export let disabled = false
export let error = null
export let options = []
@ -13,13 +13,12 @@
const dispatch = createEventDispatcher()
let open = false
$: placeholderText = placeholder || "Choose an option"
$: isNull = value == null || value === ""
$: selectedOption = options.find(option => getOptionValue(option) === value)
$: selectedLabel = selectedOption
? getOptionLabel(selectedOption)
: placeholderText
$: fieldText = isNull ? placeholderText : selectedLabel
$: fieldText = isNull ? placeholder || "Choose an option" : selectedLabel
const selectOption = value => {
dispatch("change", value)
@ -37,6 +36,6 @@
{getOptionLabel}
{getOptionValue}
isPlaceholder={isNull}
placeholderOption={placeholderText}
placeholderOption={placeholder}
isOptionSelected={option => option === value}
onSelectOption={selectOption} />

View file

@ -8,7 +8,7 @@
export let disabled = false
export let labelPosition = "above"
export let error = null
export let placeholder = null
export let placeholder = "Choose an option"
export let options = []
export let getOptionLabel = option => option
export let getOptionValue = option => option