@coveops/dual-field-facet-slider
v1.1.5
Published
Slider that works with 2 fields from the coveo index
Downloads
9
Maintainers
Keywords
Readme
DualFieldFacetSlider
Slider that works with 2 fields from the coveo index
Disclaimer: This component was built by the community at large and is not an official Coveo JSUI Component. Use this component at your own risk.
Getting Started
- Install the component into your project.
npm i @coveops/dual-field-dynamic-slider
- Use the Component or extend it
Typescript:
import { DualFieldFacetSlider, IDualFieldFacetSliderOptions } from '@coveops/dual-field-dynamic-slider';
Javascript
const DualFieldFacetSlider = require('@coveops/dual-field-dynamic-slider').DualFieldFacetSlider;
- You can also expose the component alongside other components being built in your project.
export * from '@coveops/dual-field-dynamic-slider'
- Or for quick testing, you can add the script from unpkg
<script src="https://unpkg.com/@coveops/dual-field-dynamic-slider@latest/dist/index.min.js"></script>
Disclaimer: Unpkg should be used for testing but not for production.
- Include the component in your template as follows:
Place the component in your markup:
<div class="CoveoDualFieldFacetSlider"></div>
Extending
Extending the component can be done as follows:
import { DualFieldFacetSlider, IDualFieldFacetSliderOptions } from "@coveops/dual-field-dynamic-slider";
export interface IExtendedDualFieldFacetSliderOptions extends IDualFieldFacetSliderOptions {}
export class ExtendedDualFieldFacetSlider extends DualFieldFacetSlider {}
Contribute
- Clone the project
- Copy
.env.dist
to.env
and update the COVEO_ORG_ID and COVEO_TOKEN fields in the.env
file to use your Coveo credentials and SERVER_PORT to configure the port of the sandbox - it will use 8080 by default. - Build the code base:
npm run build
- Serve the sandbox for live development
npm run serve