npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@coveops/salesforce-console-result-link

v1.2.0

Published

The SalesforceConsoleResultLink bridges various use cases for the ResultLink within Salesforce and adds support for viewing external content in tabs within the Salesforce console and have the tab name reflect the name of the article.

Downloads

3

Readme

SalesforceConsoleResultLink

The SalesforceConsoleResultLink bridges various use cases for the ResultLink within Salesforce and adds support for viewing external content in tabs within the Salesforce console and have the tab name reflect the name of the article.

This component does not support Lazy loading, however, CoveoJSSearch.Lazy resource was removed from Coveo for Salesforce as of version 4.11 released in December 2020. See Coveo for Salesforce v4 Release Notes

Errors that arise due to the environment will be visible in the console and the code will fallback to the ResultLink.

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

  1. Install the component into your project.
npm i @coveops/salesforce-console-result-link
  1. Use the Component or extend it

Typescript:

import { SalesforceConsoleResultLink, ISalesforceConsoleResultLinkOptions } from '@coveops/salesforce-console-result-link';

Javascript

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

To open items in the primary console tab (default behavior and is equivalent to the above statement):

<div class="CoveoSalesforceConsoleResultLink" data-open-in-primary-tab="true"></div>

To open items in the sub console tab:

<div class="CoveoSalesforceConsoleResultLink" data-open-in-sub-tab="true"></div>

To open items in a new browser tab:

<div class="CoveoSalesforceConsoleResultLink" data-open-in-primary-tab="false"></div>

To replace the ResultLink in Quickview headers as well:

<a class="CoveoSalesforceConsoleResultLink" data-open-in-sub-tab="true" data-apply-to-quickviews="true"></a>

To replace the ResultLink in Quickview headers and not have Quickviews close when the link is clicked as well:

<a class="CoveoSalesforceConsoleResultLink" data-open-in-sub-tab="true" data-apply-to-quickviews="true" data-close-quickview-on-click="false"></a>

Options

| Field | Type | Default | Description | | --- | --- | --- | --- | | hrefTemplate | string | ${clickUri} | Specifies a template literal from which to generate the ResultLink href attribute value (see Template literals) | | titleTemplate | string | | Specifies a template literal from which to generate the ResultLink display title (see Template literals). | | tabLabelTemplate | string | ${raw.title} | | | openInPrimaryTab | boolean | true | Specifies whether the result link should open within the primary tabs of the Salesforce console. | | openInSubTab | boolean | false | Specifies whether the result link should open within the sub tabs of the Salesforce console within an open Salesforce record. | | alwaysOpenInNewWindow | boolean | true | Specifies whether the result link should open in a new browser tab. This option only applies if the environment isn't compatible with the workforceAPI or the openInPrimaryTab option is set to false. | | workspaceAPI | workspaceAPI | | The Salesforce workspaceAPI must be passed to the component at initialization. If it is not, the component will fallback to the ResultLink | | applyToQuickviews | boolean | false | Specifies whether the ResultLink in Quickview headers should be replaced with the SalesforceConsoleResultLink | | closeQuickviewOnClick | boolean | true | Specifies whether the Quickview should close when the link is clicked. Requires applyToQuickviews option to be true. |

Installation in Salesforce

In order to use this component in Salesforce, some extra steps are required.

  1. You must wrap the Coveo Lightning Component in an Aura component. See Wrapping the Lightning Coveo component to include Static Resources

This will permit you to copy the dist code from the component itself or a custom code bundle into a Static Resource and use it. See Creating a Static Resource

  1. Within the Aura component, you will need to add a declaration for the workspace API, as well as an initialization:
<lightning:workspaceAPI aura:id="workspaceAPI" />
<aura:handler name="init" value="{!this}" action="{!c.init}" />
  1. Add an Aura Controller to the component. If your wrapper was named SampleAgentPanel.cmp then the controller file is named SampleAgentPanelController.js and is part of the Aura component bundle.

Take note of the id you gave to the wrapped Coveo component in the first step, since you will need to reference is below.

<CoveoV2:AgentPanel
        aura:id="AgentInsightPanel"

Replace AgentInsightPanel in the code sample below with the corresponding ID.

({
    init: function (component, event, helper) {
        const coveoComponent = component.find('AgentInsightPanel');
        const coveoSearchUI = coveoComponent.get('v.searchUI');
        const workspaceAPI = component.find('workspaceAPI');

        coveoSearchUI.registerBeforeInit(function (cmp, rootInterface, Coveo) {
            coveoSearchUI.setSearchInterfaceOptions({
                SalesforceConsoleResultLink: {
                    workspaceAPI
                }
            });
        });
    }
})

You can use the templates found in the salesforce folder as a reference.

Extending

Extending the component can be done as follows:

import { SalesforceConsoleResultLink, ISalesforceConsoleResultLinkOptions } from "@coveops/salesforce-console-result-link";

export interface IExtendedSalesforceConsoleResultLinkOptions extends ISalesforceConsoleResultLinkOptions {}

export class ExtendedSalesforceConsoleResultLink extends SalesforceConsoleResultLink {}

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