@looker/filter-components v1.2.2
Filter Components
Getting Started
- Install
@looker/filter-components:
npm install @looker/filter-components
# Using Yarn
yarn add @looker/filter-componentsYou'll also need to satisfy peer dependencies - React & Styled Components:
# Using npm
npm install react react-dom styled-components
# Using Yarn
yarn add react react-dom styled-componentsFinally, if you're using Typescript you'll want to add the associated types for the dependencies (note @looker/filter-components is built in Typescript and therefore has built-in types).
# Using npm
npm install --save-dev @types/react @types/react-dom @types/styled-components
# Using Yarn
yarn add --dev @types/react @types/react-dom @types/styled-components- In your React app, add a
ComponentsProvider*, and render filters inside with theDashboardFiltercomponent. If using a language other than English, import the locale module and spread that onto theComponentsProvider.
The following is an example of a component in a that displays a list of dashboard filters:
import {
ComponentsProvider,
DashboardFilter,
// Optional locale module (Korea)
koKR,
} from '@looker/filter-components';
export const FiltersSection = ({ filters, filterValues, updateFilters }) => {
return (
<ComponentsProvider {...koKR}>
{filters.map(filter => (
<DashboardFilter
key={filter.id}
filter={filter}
expression={filterValues[filter.name]}
onChange={expression => updateFilters(filter.name, expression)}
/>
))}
</ComponentsProvider>
);
};* ComponentsProvider is the provider for @looker/components, re-exported in this package. The @looker/components library provides the lower-level components used to build the filter components. If you are already using it in your app, you don't need to add another ComponentsProvider.
Components
DashboardFilter
This component takes a filter, onChange and optional expression (for external control). Internally, this component includes the Filter component, the useSuggestable and useExpressionState hooks, and a Field wrapper to display the label.
<DashboardFilter filter={dashboardFilter} onChange={handleChange} />Filter
For a more custom implementation, the underlying Filter component is also exported. It takes field and type from the dashboard filter. It also requires the current expression and an onChange handler for updates to the expression (see useExpressionState hook), as well as suggestions/ enumerations and an onInputChange handler for some filters (see useSuggestable hook).
const { id, name = '', type, field, ui_config } = dashboardFilter
const stateProps = useExpressionState({
filter,
// These props will likely come from higher up in your application
expression: props.expression
onChange: props.onChange,
})
const { errorMessage, suggestableProps } = useSuggestable({
filter,
sdk,
})
return (
<Filter
name={name}
type={type}
field={field}
config={ui_config}
{...suggestableProps}
{...stateProps}
/>
)Utilities
useSuggestable
Takes filter and sdk – an SDK 4.0 instance – and returns the appropriate props for the various suggestion modes, calling the Looker API model_fieldname_suggestions request method as necessary. See Filter example above.
useExpressionState
Takes a filter and an onChange callback, as well as on optional expression for external control. See Filter example above.
summary
The summary function returns a localized summary of a filter expression, given the expression's type, the expression itself, and the user attributes and field, if applicable.
summary('number', '[0,20],>30');
// 'is in range [0, 20] or is > 30'2 years ago
2 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 years ago