1.2.0 • Published 3 years ago

@coveops/enhanced-pipeline-context v1.2.0

Weekly downloads
34
License
Apache-2.0
Repository
-
Last release
3 years ago

EnhancedPipelineContext

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.

This component is used to pass values inside the Coveo QueryBuilder's context. It accepts a context value in a dictionary format, for example, passing:

context: { 
  data: 12345
}

Will allow you to access context.data from the Coveo Cloud Platform.

Getting Started

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

Typescript:

import { EnhancedPipelineContext, IEnhancedPipelineContextOptions } from '@coveops/enhanced-pipeline-context';

Javascript

const EnhancedPipelineContext = require('@coveops/enhanced-pipeline-context').EnhancedPipelineContext;
  1. You can also expose the component alongside other components being built in your project.
export * from '@coveops/enhanced-pipeline-context'
  1. Or for quick testing, you can add the script from unpkg
<script src="https://unpkg.com/@coveops/enhanced-pipeline-context@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="CoveoEnhancedPipelineContext"></div>

Extending

Extending the component can be done as follows:

import { EnhancedPipelineContext, IEnhancedPipelineContextOptions } from "@coveops/enhanced-pipeline-context";

export interface IExtendedEnhancedPipelineContextOptions extends IEnhancedPipelineContextOptions {}

export class ExtendedEnhancedPipelineContext extends EnhancedPipelineContext {}

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