38 lines
1.7 KiB
Python
38 lines
1.7 KiB
Python
from typing import Any
|
|
|
|
from ..defaults import DEFAULT_PROP, DEFAULT_PROPS, resolve_defaults
|
|
from ..events import GenericEventArguments, Handler, ValueChangeEventArguments
|
|
from .choice_element import ChoiceElement
|
|
from .mixins.disableable_element import DisableableElement
|
|
|
|
|
|
class Toggle(ChoiceElement, DisableableElement):
|
|
|
|
@resolve_defaults
|
|
def __init__(self,
|
|
options: list | dict, *,
|
|
value: Any = DEFAULT_PROPS['model-value'] | None,
|
|
on_change: Handler[ValueChangeEventArguments] | None = None,
|
|
clearable: bool = DEFAULT_PROP | False,
|
|
) -> None:
|
|
"""Toggle
|
|
|
|
This element is based on Quasar's `QBtnToggle <https://quasar.dev/vue-components/button-toggle>`_ component.
|
|
|
|
The options can be specified as a list of values, or as a dictionary mapping values to labels.
|
|
After manipulating the options, call `update()` to update the options in the UI.
|
|
|
|
:param options: a list ['value1', ...] or dictionary `{'value1':'label1', ...}` specifying the options
|
|
:param value: the initial value
|
|
:param on_change: callback to execute when selection changes
|
|
:param clearable: whether the toggle can be cleared by clicking the selected option
|
|
"""
|
|
super().__init__(tag='q-btn-toggle', options=options, value=value, on_change=on_change)
|
|
self._props.set_bool('clearable', clearable)
|
|
|
|
def _event_args_to_value(self, e: GenericEventArguments) -> Any:
|
|
return self._values[e.args] if e.args is not None else None
|
|
|
|
def _value_to_model_value(self, value: Any) -> Any:
|
|
return self._values.index(value) if value in self._values else None
|