# Filter

Filters allow users to modify the data they see in elements like charts and tables. It constructs popover, that generates data-driven filter list.

# Usage

Use v-model to pass in your filters. Filters must follow a specific interface.

# Title

Use the title prop to change the default button text for your filter button.

# No Button Text

Use the hide-button-text prop to hide the button text.

# Select Filter

Select filters allow users to search for and select a single option from a list of options. Use props.options to be define the available options.

See the Select documentation for more information..

# MultiSelect Filter

MultiSelect filters allow users to search for and multiselect options from a list of options. It requires for props.options to be set with available options and value as array.

See MultiSelect documentation for more information.

Minimal setup:

# Error Messages & Validation

Using the listeners and error portions of the interface we can create filter validation and show errors. In this demo, an error is shown if more than 2 options are selected.

# Range Slider

The Range slider filter allows users to choose numeric ranges with a Range Slider. Use props to pass options to your Range Slider. props.max is required of Ranger Slider's.

# Range Select Filter

Range Select filters allow users to select a range of options from a list of options. It uses two Select components under the hood. Use props.options to be define the available options. For min and max selects options are the same, but they automatically adjust based of each others values.

# Range Input Filter

Range Input filters allow users to input a range of numbers. It uses two Input components under the hood. If no value should be used use undefined in value array. If placeholders are needed to change pass array of two strings to props.placeholders.

# Props

Name Type Default Description
v-model (value) object: CiFilterOpts required Filters data model, see details bellow
title string Filters Sets button text and popover header
hideButtonText boolean false Hides the button text
showButtonText boolean true Sets visibility of button text (DEPRECATED)

# Filter Events

Event Payload Description
@update The updated v-model data Emitted when apply button is pressed

# Interface

Ordered filter array should be passed into v-model. Each filter should implement following interface.

Property Type Description Required
id string Unique identified for filter. Required
title string Title to be passed in Form Field label prop of filter component. Required
type CiFilterType Filter input type to be used. Required
value any Current filter value. Type depends on model that returns given filter type. Required
defaultValue any Value to be considered as default. Default value will be applied when "Clear" button is clicked by user and that value will not be displayed as tag. Type depends on model that returns given filter type.
props object Object of props, that will be passed directly to v-bind attribute of underlying filter component. It is recommented to pass there only ones, that impacts content of the filter, not the behavior/appearence.
error string, boolean Error to be passed in Form Field error prop of filter component.
loading boolean Defines if content for given filter is still getting prepared by consuming app (e.g. server-side call)
listeners string, Function | Function[] Listener list that will get passed to v-on of underlying filter component.
Last Updated: 1/4/2024, 10:53:41 AM