Socket
Socket
Sign inDemoInstall

@coveops/context-dropdown

Package Overview
Dependencies
54
Maintainers
23
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @coveops/context-dropdown

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.


Version published
Weekly downloads
109
decreased by-8.4%
Maintainers
23
Created
Weekly downloads
 

Readme

Source

ContextDropdown

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.

Allows a user to select a context value via a dropdown to pass to Coveo for relevance tuning.

Getting Started

  1. Install the component into your project.
npm i @coveops/context-dropdown
  1. Use the Component or extend it

Typescript:

import { ContextDropdown, IContextDropdownOptions } from '@coveops/context-dropdown';

Javascript

const ContextDropdown = require('@coveops/context-dropdown').ContextDropdown;
  1. You can also expose the component alongside other components being built in your project.
export * from '@coveops/context-dropdown'
  1. Or for quick testing, you can add the script from unpkg
<script src="https://unpkg.com/@coveops/context-dropdown@latest/dist/index.min.js"></script>

Disclaimer: Unpkg should be used for testing but not for production.

  1. Include the component in your template as follows:

Place the component in your markup:

<div class="CoveoContextDropdown"></div>

Options

The following options can be configured:

OptionRequiredTypeDefaultNotes
contextKeyYesstringThe name of the context field to pass the value to.
valuesYesIOption[] or IGroupedOption[]An array of objects formatted to be an option or group depending on the isGrouped value
isGroupedNobooleanfalseWhether the values passed represent options divided into groups
initialChoiceNostringAn initial option to be automatically selected by the dropdown
triggerSearchNobooleanfalseWhether to trigger a search query when the value is changed. Note: Setting this to true will incur a query every time a user changes the value of this component and will impact your QPM. Please ensure there is no impact on your QPM or make necessary adjustments before setting this value to true.

Examples found in /pages/index.html

Extending

Extending the component can be done as follows:

import { ContextDropdown, IContextDropdownOptions } from "@coveops/context-dropdown";

export interface IExtendedContextDropdownOptions extends IContextDropdownOptions {}

export class ExtendedContextDropdown extends ContextDropdown {}

Contribute

  1. Clone the project
  2. 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.
  3. Build the code base: npm run build
  4. Serve the sandbox for live development npm run serve

FAQs

Last updated on 09 Dec 2021

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc