2.1.0 • Published 2 years ago

edc-popover-js v2.1.0

Weekly downloads
2
License
MIT
Repository
github
Last release
2 years ago

edc-popover-js

Build Status npm version

edc-popover-js is a javascript library for displaying the edc contextual help content.

The project is part of easy doc contents (edc).

edc is a simple yet powerful tool for agile-like documentation management.

Learn more at https://www.easydoccontents.com.

Dependencies

Peer dependencies: for a ready-to-use solution for the icons:

How to use

Import

You can import this module with npm by running:

npm install edc-popover-js --save

Or with yarn:

yarn add edc-popover-js

Then import the style files:

import 'edc-popover-js/dist/edc-popover.css';

For the default icons, you'll need to import font-awesome

$ npm i --save @fortawesome/fontawesome-free

yarn

$ yarn add @fortawesome/fontawesome-free

Then import the styles in your application:

import '@fortawesome/fontawesome-free/css/all.min.css';

Or you can use another library for the icons - see below for the available options.

Setup

Provide a edc configuration object with the static Popover.config(myEdcConfig) method.

The configuration object has the following properties:

AttributeTypeDescriptionMandatory / default value
pluginIdstringThe identifier of the target plugin documentation exportyes
helpPathstringThe path to edc-help-ng applicationhelp
docPathstringThe path to exported documentationdoc
i18nPathstringThe path to translation json filesdoc/i18n
optionsIEdcPopoverOptionsOptions for the popoverno

Example :

const edcConfig = {
    pluginId: 'edc',
    docPath: '/doc',
    helpPath: 'https://demo.easydoccontents.com/help',
    i18nPath: './doc/i18n',
    /* you can define global options here options: { placement: 'left', ..... }
    {
      placement: 'bottom'
     }
     */
};
EdcPopover.config(edcConfig);

Creating popovers

Instantiating a group of popovers

Add the class edc-help class to every parent element of a edc help popover.

Note that the mandatory data-main-key and data-sub-key attributes need to be defined for each element.

<div class="edc-help" data-main-key="one.main.key" data-sub-key="one.sub.key"></div>
...

<div class="edc-help" data-main-key="one.main.key" data-sub-key="another.sub.key"></div>

Calling the Popover.createAll() will create a popover for each element with this class.

Popover.createAll();

If you want to use another class, pass it as a first argument.

Popover.createAll('specific-class-name');

You can also specify popover properties for the whole group as a second argument.

// These options will override the ones defined with the configuration for those popovers
const options = {
	trigger: 'mouseenter'
};
Popover.createAll('specific-class-name', { options });

Instantiating one popover passing the reference of the element

Considering you have defined in the dom the following elements

<div id="popover1"
 data-main-key="one.main.key"
 data-sub-key="first.sub.key"
 data-lang="it"
 data-options='{ "trigger": "mouseenter" }'>
</div>
<div id="popover2"></div>

You can create the popover passing the reference of one specific element

const popover1 = document.getElementById('popover1');
Popover.create(popover1);

const props = {
	mainKey: 'help.center',
    subKey: 'settings',
	options: {
    	animation: 'shift-away'
    }
};
// Popover properties passed as second arguments - they will override any property defined  in the html
Popover.create(document.getElementById('popover2'), props);

Inputs and options

Mandatory inputs

Mandatory inputs:

PropTypeDescription
mainKeystringThe main key of the contextual help
subKeystringThe sub key of the contextual help

Optional inputs

Optional inputs for the component:

Input NameReturn typeDescriptionDefault value
pluginIdstringA different pluginId from the one defined in the main serviceundefined
langstringThe language to use, for labels and contents, identified by the 2 letters from the ISO639-1 standard. Will use documentation's default if no value is providedundefined
optionsEdcPopoverOptionsOptions for this popover - will overwrite global optionsundefined

Available options (EdcPopoverOptions):

PropertyTypeDescriptionDefault
iconPopoverIconIcon settings, see IconPopoverIcon
failBehaviorFailBehaviorIcon and popover behavior on error, see Fail BehaviorFailBehavior
placementpopper.js PlacementPopover positioning relatively to the iconbottom
hideOnClickbooleanIf true, any click outside of the popover will close it (inside too if interactive is false)true
interactivebooleanDetermine if we can interact with the popover contenttrue
triggerstringEvent that will trigger the popover: click mouseenter focusclick
customClassstringclass name that will be added to the main popover containerundefined
darkbooleanDark modefalse
themestringPopover's theme nameundefined
displayPopoverbooleanShow the popover / Go directly to the web help viewer on clicktrue
displaySeparatorbooleanShow / Hide the separator between header and bodytrue
displayTitlebooleanShow / Hide the header containing the titletrue
displayArticlesbooleanShow / Hide the articles sectiontrue
displayRelatedTopicsbooleanShow / Hide the related Topics (aka Links) sectiontrue
displayTooltipbooleanShow / Hide the icon tooltiptrue
delaynumber | [number, number]Delay in milliseconds before showing the popover - if array, delay for opening and closing respectivelyundefined
animationAnimationAnimation when opening / closing the popoverundefined
appendTo'parent' | Element | (() => Element)The element to which append the popover to(() => documentation.body)

Icon

PopoverIcon contains the options for the icon.

PropertyTypeDescriptionDefault
classstringClass name for the icon. Font awesome icon classes are handled natively'fa fa-question-circle-o'
urlstringImage url, size is determined by height, and width propertiesundefined
heightnumberImage height in pixels (for url images only)18
widthnumberImage width in pixels (for url images only). Will take height value if none is provided18

If class property is provided, it will overwrite the default class 'fa fa-question-circle-o'. If url is defined, it will override the class property, even if class is defined.

####Fail Behavior If the help content failed to be loaded - or any other error occurred, the icon and the popover will look for the FailBehavior options to define their style and content.

There are separate behaviors for the help icon, and the popover itself.

For the help icon when an error occurs, it adds the following css selector.

BehaviorDescriptionCSS selector
SHOWNThe help icon is shown as usual (default).edc-help-icon
DISABLEDThe help icon is greyed out.edc-icon-disabled
HIDDENThe help icon is completely hidden (but stays in DOM to avoid breaking the UI).edc-icon-hidden
ERRORThe help icon is replaced by an exclamation point.edc-icon-error

Default values are in file style.less

For the popover when an error occurs:

  • ERROR_SHOWN An error message is shown in the popover
  • FRIENDLY_MSG A friendly and translated message is shown in the popover
  • NO_POPOVER No popover appears when the help icon is triggered

By default, the icon is SHOWN and the popover is set to FRIENDLY_MSG.

Customization

CSS

Global

When dark-mode is enabled, the CSS class edc-on-dark is applied to the help icon.

Popover

You can customize the popover with CSS classes as described below :

CSS Classes

For more control, the customClass option will add the given class name to the popover container .edc-popover-container. You can then override the main classes.

For example, if you'd like to change the background color of the popover

.my-custom-class {
    background-color: lightgreen;
}
/* or the title font-size */
.my-custom-class .edc-popover-title {
    font-size: 18px;
}

Providing your own translations for the popover labels

You can set additional translations (or replace the existing ones) by adding i18n json files to the documentation folder.

Please note that one file is required per language (see file example below), and should be named following the ISO639-1 two letters standards (ie en.json, it.json...).

By default, edc-popover-js will be looking for the files in yourDocPath/popover/i18n/ (*.json), but you can change this path by modifying getI18nPath() in your PopoverConfigurationHandler.

edc-popover-js comes with English and French translations, and supports up to 36 languages. For the full list, please refer to LANGUAGE_CODES.

JSON file structure

Here is the en.json file used by default:

{
  "labels": {
  "articles": "Need more...",
  "links": "Related topics",
  "iconAlt": "Help",
  "comingSoon": "Contextual help is coming soon.",
  "errorTitle":  "Error",
  "errors": {
    "failedData": "An error occurred when fetching data !\nCheck the brick keys provided to the EdcHelp component."
  },
  "content": null,
  "url": "",
  "exportId": ""
  }
}

Storybook

edc-popover-js uses Storybook for isolated UI components and features testing:

Install dependencies and run storybook, with npm

npm install
npm run storybook

Or with yarn

yarn install
yarn storybook
2.1.0

2 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.1.0-beta-1

4 years ago

1.1.0-beta-2

4 years ago

1.1.0-beta-0

4 years ago

1.0.2

4 years ago

1.0.1

4 years ago

1.0.0

4 years ago

1.0.0-beta

4 years ago