Allow selects to support no placeholder option
This commit is contained in:
parent
4b51381c88
commit
b0f31aaf15
|
@ -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} />
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue