1.0.0 • Published 3 years ago
@coveops/x-of-y-results v1.0.0
XOfYResults
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/x-of-y-results- Use the Component or extend it
Typescript:
import { XOfYResults, IXOfYResultsOptions } from '@coveops/x-of-y-results';Javascript
const XOfYResults = require('@coveops/x-of-y-results').XOfYResults;- You can also expose the component alongside other components being built in your project.
export * from '@coveops/x-of-y-results'- Or for quick testing, you can add the script from unpkg
<script src="https://unpkg.com/@coveops/x-of-y-results@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="CoveoXOfYResults"></div>Extending
Extending the component can be done as follows:
import { XOfYResults, IXOfYResultsOptions } from "@coveops/x-of-y-results";
export interface IExtendedXOfYResultsOptions extends IXOfYResultsOptions {}
export class ExtendedXOfYResults extends XOfYResults {}Contribute
- Clone the project
- Copy
.env.distto.envand update the COVEO_ORG_ID and COVEO_TOKEN fields in the.envfile 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
1.0.0
3 years ago