lion/packages/tooltip/stories/index.stories.mdx
2020-05-18 16:04:07 +02:00

274 lines
8.2 KiB
Text

import { Story, Meta, html, object, withKnobs } from '@open-wc/demoing-storybook';
import { css } from '@lion/core';
import { tooltipDemoStyles } from './tooltipDemoStyles.js';
import { LionTooltip } from '../src/LionTooltip.js';
import '../lion-tooltip.js';
<Meta
title="Overlays/Tooltip"
parameters={{
component: 'lion-tooltip',
options: {
selectedPanel: 'storybookjs/knobs/panel'
}
}}
decorators={[withKnobs]}
/>
# Tooltip
`lion-tooltip` is a component used for basic popups on hover.
Its purpose is to show content appearing when the user hovers over an invoker element with the cursor or with the keyboard, or if th
e invoker element is focused.
<Story name="Default">
{html`
<style>${tooltipDemoStyles}</style>
<lion-tooltip>
<button slot="invoker" class="demo-tooltip-invoker">Hover me</button>
<div slot="content" class="demo-tooltip-content">This is a tooltip</div>
</lion-tooltip>
`}
</Story>
```html
<lion-tooltip>
<button slot="invoker">Hover me</button>
<div slot="content">This is a tooltip<div>
</lion-tooltip>
```
## Features
- Show content when hovering the invoker
- Show content when the invoker is focused
- Uses Popper.js under the hood, to have the content pop up relative to the invoker
- Use `.config` to override the overlay configuration
- Config has `popperConfig` property that has a one to one relation with Popper.js configuration API.
- Comes with a default `lion-tooltip-arrow` for an arrow.
## How to use
### Installation
```sh
npm i --save @lion/tooltip
```
```js
import '@lion/tooltip/lion-tooltip.js';
```
## Examples
### Placements
You can easily change the placement of the content node relative to the invoker.
<Story name="Placements">
{html`
<style>
${tooltipDemoStyles}
</style>
<div class="demo-box-placements">
<lion-tooltip .config=${{ popperConfig: { placement: 'top' } }} has-arrow>
<button slot="invoker">Top</button>
<div slot="content" class="demo-tooltip-content">Its top placement</div>
</lion-tooltip>
<lion-tooltip .config=${{ popperConfig: { placement: 'right' } }} has-arrow>
<button slot="invoker">Right</button>
<div slot="content" class="demo-tooltip-content">Its right placement</div>
</lion-tooltip>
<lion-tooltip .config=${{ popperConfig: { placement: 'bottom' } }} has-arrow>
<button slot="invoker">Bottom</button>
<div slot="content" class="demo-tooltip-content">Its bottom placement</div>
</lion-tooltip>
<lion-tooltip .config=${{ popperConfig: { placement: 'left' } }} has-arrow>
<button slot="invoker">Left</button>
<div slot="content" class="demo-tooltip-content">Its left placement</div>
</lion-tooltip>
</div>
`}
</Story>
```html
<lion-tooltip .config=${{ popperConfig: { placement: 'top' } }} has-arrow>
<button slot="invoker">Top</button>
<div slot="content">Its top placement</div>
</lion-tooltip>
```
### Override Popper configuration
You can override the Popper configuration, the API is one to one with Popper's API, and includes modifiers.
<Story name="Override Popper config">
{html`
<style>${tooltipDemoStyles}</style>
<lion-tooltip .config=${{
popperConfig: object('Popper Configuration', {
placement: 'bottom-start',
positionFixed: true,
modifiers: {
keepTogether: {
enabled: true,
},
preventOverflow: {
enabled: false,
boundariesElement: 'viewport',
padding: 16,
},
flip: {
enabled: true,
boundariesElement: 'viewport',
padding: 4,
},
offset: {
enabled: true,
offset: `0, 4px`,
},
},
})}}>
<button slot="invoker" class="demo-tooltip-invoker">Hover me</button>
<div slot="content" class="demo-tooltip-content">This is a tooltip</div>
</lion-tooltip>
`}
</Story>
```js
<lion-tooltip .config=${{
popperConfig: {
placement: 'bottom-start',
positionFixed: true,
modifiers: {
keepTogether: {
enabled: true,
},
preventOverflow: {
enabled: false /* disables shifting/sliding behavior on secondary axis */,
boundariesElement: 'viewport',
padding: 16 /* when enabled, this is the viewport-margin for shifting/sliding */,
},
flip: {
enabled: true,
boundariesElement: 'viewport',
padding: 4 /* viewport-margin for flipping on primary axis */,
},
offset: {
enabled: true,
offset: `0, 4px` /* horizontal and vertical margin (distance between popper and referenceElement) */,
},
},
}
}}>
<button slot="invoker">Hover me</button>
<div slot="content">This is a tooltip</div>
</lion-tooltip>
```
Modifier explanations:
- keepTogether: prevents detachment of content element from reference element, which could happen if the invoker is not in the viewport anymore. If this is disabled, the content will always be in view.
- preventOverflow: enables shifting and sliding behavior on the secondary axis (e.g. if top placement, this is horizontal shifting and sliding). The padding property defines the margin with the boundariesElement, which is usually the viewport.
- flip: enables flipping behavior on the primary axis (e.g. if top placement, flipping to bottom if there is not enough space on the top). The padding property defines the margin with the boundariesElement, which is usually the viewport.
- offset: enables an offset between the content node and the invoker node. First argument is horizontal marign, second argument is vertical margin.
### Arrow
By default, the arrow is disabled for our tooltip. Via the `has-arrow` property it can be enabled.
> As a Subclasser, you can decide to turn the arrow on by default if this fits in your Design System
<Story name="Arrow">
{html`
<style>${tooltipDemoStyles}</style>
<lion-tooltip has-arrow>
<button slot="invoker" class="demo-tooltip-invoker">Hover me</button>
<div slot="content" class="demo-tooltip-content">This is a tooltip</div>
</lion-tooltip>
`}
</Story>
```html
<lion-tooltip has-arrow>
<button slot="invoker">Hover me</button>
<div slot="content">This is a tooltip</div>
</lion-tooltip>
```
#### Use a custom arrow
If you plan on providing a custom arrow, you can extend the `lion-tooltip`.
All you need to do is override the `_arrowTemplate` method to pass your own SVG, and extend the styles to pass the proper dimensions of your arrow.
The rest of the work is done by Popper.js (for positioning) and the `lion-tooltip-arrow` (arrow dimensions, rotation, etc.).
<Story name="Custom arrow">
{() => {
if (!customElements.get('custom-tooltip')) {
customElements.define('custom-tooltip', class extends LionTooltip {
static get styles() {
return [super.styles, css`
:host {
--tooltip-arrow-width: 20px;
--tooltip-arrow-height: 8px;
}
`];
}
constructor() {
super();
this.hasArrow = true;
}
_arrowTemplate() {
return html`
<svg viewBox="0 0 20 8">
<path d="M 0,0 h 20 L 10,8 z"></path>
</svg>
`;
}
});
}
return html`
<style>${tooltipDemoStyles}</style>
<custom-tooltip>
<button slot="invoker" class="demo-tooltip-invoker">Hover me</button>
<div slot="content" class="demo-tooltip-content">This is a tooltip</div>
</custom-tooltip>
`;
}}
</Story>
```js
import { html, css } from '@lion/core';
import { LionTooltipArrow } from '@lion/tooltip';
class CustomTooltip extends LionTooltip {
static get styles() {
return [super.styles, css`
:host {
--tooltip-arrow-width: 20px;
--tooltip-arrow-height: 8px;
}
`];
}
constructor() {
super();
this.hasArrow = true;
}
_arrowTemplate() {
return html`
<svg viewBox="0 0 20 8">
<path d="M 0,0 h 20 L 10,8 z"></path>
</svg>
`;
}
}
customElements.define('custom-tooltip', CustomTooltip);
```
```html
<custom-tooltip>
<button slot="invoker">Hover me</button>
<div slot="content">This is a tooltip</div>
</custom-tooltip>
```