2021-07-02 08:28:18 +00:00
|
|
|
/**
|
|
|
|
* Utility to generate a series of onboarding popups. It is used to give users a short description
|
|
|
|
* of some elements of the UI. The first step is to create the list of messages following the
|
|
|
|
* `IOnBoardingMsg` interface. Then you have to attach each message to its corresponding element of
|
|
|
|
* the UI using the `attachOnBoardingMsg' dom method:
|
|
|
|
*
|
|
|
|
* Usage:
|
|
|
|
*
|
|
|
|
* // create the list of message
|
2021-07-19 08:49:44 +00:00
|
|
|
* const messages = [{id: 'add-new-btn', placement: 'right', buildDom: () => ... },
|
2021-07-02 08:28:18 +00:00
|
|
|
* {id: 'share-btn', buildDom: () => ... ];
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* // attach each message to the corresponding element
|
2021-07-19 08:49:44 +00:00
|
|
|
* dom('div', 'Add New', ..., dom.cls('tour-add-new-btn'));
|
2021-07-02 08:28:18 +00:00
|
|
|
*
|
|
|
|
* // start
|
|
|
|
* startOnBoarding(message, onFinishCB);
|
|
|
|
*
|
|
|
|
* Note:
|
|
|
|
* - this module does UI only, saving which user has already seen the popups has to be handled by
|
|
|
|
* the caller. Pass an `onFinishCB` to handle when a user dimiss the popups.
|
|
|
|
*/
|
|
|
|
|
2021-07-30 15:16:33 +00:00
|
|
|
import { Disposable, dom, DomElementArg, Holder, makeTestId, styled, svg } from "grainjs";
|
2021-07-19 08:49:44 +00:00
|
|
|
import { createPopper, Placement } from '@popperjs/core';
|
|
|
|
import { FocusLayer } from 'app/client/lib/FocusLayer';
|
|
|
|
import * as Mousetrap from 'app/client/lib/Mousetrap';
|
|
|
|
import { bigBasicButton, bigPrimaryButton } from "app/client/ui2018/buttons";
|
2022-09-06 01:51:57 +00:00
|
|
|
import { theme, vars } from "app/client/ui2018/cssVars";
|
2021-07-19 08:49:44 +00:00
|
|
|
import range = require("lodash/range");
|
2021-07-23 16:24:17 +00:00
|
|
|
import {IGristUrlState} from "app/common/gristUrls";
|
|
|
|
import {urlState} from "app/client/models/gristUrlState";
|
|
|
|
import {delay} from "app/common/delay";
|
|
|
|
import {reportError} from "app/client/models/errors";
|
2021-07-30 11:55:23 +00:00
|
|
|
import {cssBigIcon, cssCloseButton} from "./ExampleCard";
|
2021-07-02 08:28:18 +00:00
|
|
|
|
|
|
|
const testId = makeTestId('test-onboarding-');
|
|
|
|
|
|
|
|
// Describes an onboarding popup. Each popup is uniquely identified by its id.
|
|
|
|
export interface IOnBoardingMsg {
|
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
// A CSS selector pointing to the reference element
|
|
|
|
selector: string,
|
2021-07-02 08:28:18 +00:00
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
// Title
|
|
|
|
title: DomElementArg,
|
2021-07-02 08:28:18 +00:00
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
// Body
|
|
|
|
body?: DomElementArg,
|
2021-07-02 08:28:18 +00:00
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
// If true show the message as a modal centered on the screen.
|
|
|
|
showHasModal?: boolean,
|
2021-07-02 08:28:18 +00:00
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
// The popper placement.
|
|
|
|
placement?: Placement,
|
2021-07-02 08:28:18 +00:00
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
// Adjusts the popup offset so that it is positioned relative to the content of the reference
|
|
|
|
// element. This is useful when the reference element has padding and no border (ie: such as
|
|
|
|
// icons). In which case, and when set to true, it will fill the gap between popups and the UI
|
|
|
|
// part it's pointing at. If `cropPadding` is falsy otherwise, the popup might look a bit distant.
|
|
|
|
cropPadding?: boolean,
|
2021-07-02 08:28:18 +00:00
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
// The popper offset.
|
|
|
|
offset?: [number, number],
|
2021-07-02 08:28:18 +00:00
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
// Skip the message
|
|
|
|
skip?: boolean;
|
2021-07-23 16:24:17 +00:00
|
|
|
|
|
|
|
// If present, will be passed to urlState().pushUrl() to navigate to the location defined by that state
|
|
|
|
urlState?: IGristUrlState;
|
2021-07-19 08:49:44 +00:00
|
|
|
}
|
2021-07-02 08:28:18 +00:00
|
|
|
|
2021-07-30 15:16:33 +00:00
|
|
|
// There should only be one tour at a time. Use a holder to dispose the previous tour when
|
|
|
|
// starting a new one.
|
|
|
|
const tourSingleton = Holder.create<OnBoardingPopupsCtl>(null);
|
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
export function startOnBoarding(messages: IOnBoardingMsg[], onFinishCB: () => void) {
|
2021-07-30 15:16:33 +00:00
|
|
|
const ctl = OnBoardingPopupsCtl.create(tourSingleton, messages, onFinishCB);
|
2021-07-23 16:24:17 +00:00
|
|
|
ctl.start().catch(reportError);
|
2021-07-02 08:28:18 +00:00
|
|
|
}
|
|
|
|
|
2022-03-21 03:41:59 +00:00
|
|
|
// Returns whether some tour is currently active.
|
|
|
|
export function isTourActive(): boolean {
|
|
|
|
return !tourSingleton.isEmpty();
|
|
|
|
}
|
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
class OnBoardingError extends Error {
|
|
|
|
public name = 'OnBoardingError';
|
|
|
|
constructor(message: string) {
|
|
|
|
super(message);
|
|
|
|
}
|
|
|
|
}
|
2021-07-02 08:28:18 +00:00
|
|
|
|
2021-07-30 11:55:23 +00:00
|
|
|
/**
|
|
|
|
* Current index in the list of messages.
|
|
|
|
* This allows closing the tour and reopening where you left off.
|
|
|
|
* Since it's a single global value, mixing unrelated tours
|
|
|
|
* (e.g. the generic welcome tour and a specific document tour)
|
|
|
|
* in a single page load won't work well.
|
|
|
|
*/
|
|
|
|
let ctlIndex = 0;
|
|
|
|
|
2021-07-02 08:28:18 +00:00
|
|
|
class OnBoardingPopupsCtl extends Disposable {
|
|
|
|
private _openPopupCtl: {close: () => void}|undefined;
|
|
|
|
private _overlay: HTMLElement;
|
|
|
|
private _arrowEl = buildArrow();
|
|
|
|
|
|
|
|
constructor(private _messages: IOnBoardingMsg[], private _onFinishCB: () => void) {
|
|
|
|
super();
|
|
|
|
if (this._messages.length === 0) {
|
2021-07-19 08:49:44 +00:00
|
|
|
throw new OnBoardingError('messages should not be an empty list');
|
2021-07-02 08:28:18 +00:00
|
|
|
}
|
2021-07-30 11:55:23 +00:00
|
|
|
|
|
|
|
// In case we're reopening after deleting some rows of GristDocTour,
|
|
|
|
// ensure ctlIndex is still within bounds
|
|
|
|
ctlIndex = Math.min(ctlIndex, this._messages.length - 1);
|
|
|
|
|
2021-07-02 08:28:18 +00:00
|
|
|
this.onDispose(() => {
|
|
|
|
this._openPopupCtl?.close();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2021-07-23 16:24:17 +00:00
|
|
|
public async start() {
|
2021-07-02 08:28:18 +00:00
|
|
|
this._showOverlay();
|
2021-07-30 11:55:23 +00:00
|
|
|
await this._move(0);
|
2021-07-19 08:49:44 +00:00
|
|
|
Mousetrap.setPaused(true);
|
|
|
|
this.onDispose(() => {
|
|
|
|
Mousetrap.setPaused(false);
|
|
|
|
});
|
2021-07-02 08:28:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private _finish() {
|
|
|
|
this._onFinishCB();
|
|
|
|
this.dispose();
|
|
|
|
}
|
|
|
|
|
2021-07-30 11:55:23 +00:00
|
|
|
private async _move(movement: number, maybeClose = false) {
|
|
|
|
const newIndex = ctlIndex + movement;
|
|
|
|
const entry = this._messages[newIndex];
|
|
|
|
if (!entry) {
|
|
|
|
if (maybeClose) {
|
|
|
|
// User finished the tour, close and restart from the beginning if they reopen
|
|
|
|
ctlIndex = 0;
|
|
|
|
this._finish();
|
|
|
|
}
|
|
|
|
return; // gone out of bounds, probably by keyboard shortcut
|
|
|
|
}
|
|
|
|
ctlIndex = newIndex;
|
|
|
|
if (entry.skip) {
|
|
|
|
// movement = 0 when starting a tour, make sure we don't get stuck in a loop
|
|
|
|
await this._move(movement || +1);
|
|
|
|
return;
|
|
|
|
}
|
2021-07-02 08:28:18 +00:00
|
|
|
|
|
|
|
// close opened popup if any
|
|
|
|
this._openPopupCtl?.close();
|
|
|
|
|
2021-07-23 16:24:17 +00:00
|
|
|
if (entry.urlState) {
|
|
|
|
await urlState().pushUrl(entry.urlState);
|
|
|
|
await delay(100); // make sure cursor is in correct place
|
|
|
|
}
|
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
if (entry.showHasModal) {
|
|
|
|
this._showHasModal();
|
|
|
|
} else {
|
2021-07-30 11:55:23 +00:00
|
|
|
await this._showHasPopup(movement);
|
2021-07-19 08:49:44 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-30 11:55:23 +00:00
|
|
|
private async _showHasPopup(movement: number) {
|
2021-07-19 08:49:44 +00:00
|
|
|
const content = this._buildPopupContent();
|
2021-07-30 11:55:23 +00:00
|
|
|
const entry = this._messages[ctlIndex];
|
2021-07-19 08:49:44 +00:00
|
|
|
const elem = document.querySelector<HTMLElement>(entry.selector);
|
|
|
|
const {placement} = entry;
|
|
|
|
|
|
|
|
// The element the popup refers to is not present. To the user we show nothing and simply skip
|
|
|
|
// it to the next.
|
|
|
|
if (!elem) {
|
|
|
|
console.warn(`On boarding tour: element ${entry.selector} not found!`);
|
2021-07-30 11:55:23 +00:00
|
|
|
// movement = 0 when starting a tour, make sure we don't get stuck in a loop
|
|
|
|
return this._move(movement || +1);
|
2021-07-19 08:49:44 +00:00
|
|
|
}
|
|
|
|
|
2021-07-02 08:28:18 +00:00
|
|
|
// Cleanup
|
|
|
|
function close() {
|
|
|
|
popper.destroy();
|
|
|
|
dom.domDispose(content);
|
|
|
|
content.remove();
|
|
|
|
}
|
|
|
|
|
2021-07-19 08:49:44 +00:00
|
|
|
this._openPopupCtl = {close};
|
2021-07-02 08:28:18 +00:00
|
|
|
document.body.appendChild(content);
|
2021-07-19 08:49:44 +00:00
|
|
|
this._addFocusLayer(content);
|
2021-07-02 08:28:18 +00:00
|
|
|
|
|
|
|
// Create a popper for positioning the popup content relative to the reference element
|
2021-07-19 08:49:44 +00:00
|
|
|
const adjacentPadding = entry.cropPadding ? this._getAdjacentPadding(elem, placement) : 0;
|
2021-07-02 08:28:18 +00:00
|
|
|
const popper = createPopper(elem, content, {
|
2021-07-19 08:49:44 +00:00
|
|
|
placement,
|
2021-07-02 08:28:18 +00:00
|
|
|
modifiers: [{
|
|
|
|
name: 'arrow',
|
|
|
|
options: {
|
|
|
|
element: this._arrowEl,
|
|
|
|
},
|
|
|
|
}, {
|
|
|
|
name: 'offset',
|
|
|
|
options: {
|
2021-07-19 08:49:44 +00:00
|
|
|
offset: [0, 12 - adjacentPadding],
|
2021-07-02 08:28:18 +00:00
|
|
|
}
|
|
|
|
}],
|
|
|
|
});
|
2021-07-19 08:49:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private _addFocusLayer(container: HTMLElement) {
|
|
|
|
dom.autoDisposeElem(container, new FocusLayer({
|
|
|
|
defaultFocusElem: container,
|
|
|
|
allowFocus: (elem) => (elem !== document.body)
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
|
|
|
// Get the padding length for the side that will be next to the popup.
|
|
|
|
private _getAdjacentPadding(elem: HTMLElement, placement?: Placement) {
|
|
|
|
if (placement) {
|
|
|
|
let padding = '';
|
|
|
|
if (placement.includes('bottom')) {
|
|
|
|
padding = getComputedStyle(elem).paddingBottom;
|
|
|
|
}
|
|
|
|
else if (placement.includes('top')) {
|
|
|
|
padding = getComputedStyle(elem).paddingTop;
|
|
|
|
}
|
|
|
|
else if (placement.includes('left')) {
|
|
|
|
padding = getComputedStyle(elem).paddingLeft;
|
|
|
|
}
|
|
|
|
else if (placement.includes('right')) {
|
|
|
|
padding = getComputedStyle(elem).paddingRight;
|
|
|
|
}
|
|
|
|
// Note: getComputedStyle return value in pixel, hence no need to handle other unit. See here
|
|
|
|
// for reference:
|
|
|
|
// https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle#notes.
|
|
|
|
if (padding && padding.endsWith('px')) {
|
|
|
|
return Number(padding.slice(0, padding.length - 2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private _showHasModal() {
|
|
|
|
const content = this._buildPopupContent();
|
|
|
|
dom.update(this._overlay, content);
|
|
|
|
this._addFocusLayer(content);
|
|
|
|
|
|
|
|
function close() {
|
|
|
|
content.remove();
|
|
|
|
dom.domDispose(content);
|
|
|
|
}
|
|
|
|
|
2021-07-02 08:28:18 +00:00
|
|
|
this._openPopupCtl = {close};
|
|
|
|
}
|
|
|
|
|
|
|
|
private _buildPopupContent() {
|
2021-07-30 11:55:23 +00:00
|
|
|
return Container(
|
|
|
|
{tabindex: '-1'},
|
|
|
|
this._arrowEl,
|
|
|
|
ContentWrapper(
|
|
|
|
cssCloseButton(cssBigIcon('CrossBig'),
|
|
|
|
dom.on('click', () => this._finish()),
|
|
|
|
testId('close'),
|
|
|
|
),
|
|
|
|
cssTitle(this._messages[ctlIndex].title),
|
|
|
|
cssBody(this._messages[ctlIndex].body),
|
|
|
|
this._buildFooter(),
|
|
|
|
testId('popup'),
|
|
|
|
),
|
|
|
|
dom.onKeyDown({
|
|
|
|
Escape: () => this._finish(),
|
|
|
|
ArrowLeft: () => this._move(-1),
|
|
|
|
ArrowRight: () => this._move(+1),
|
|
|
|
Enter: () => this._move(+1, true),
|
|
|
|
}),
|
|
|
|
);
|
2021-07-02 08:28:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private _buildFooter() {
|
|
|
|
const nSteps = this._messages.length;
|
2021-07-30 11:55:23 +00:00
|
|
|
const isLastStep = ctlIndex === nSteps - 1;
|
|
|
|
const isFirstStep = ctlIndex === 0;
|
2021-07-02 08:28:18 +00:00
|
|
|
return Footer(
|
|
|
|
ProgressBar(
|
2021-07-30 11:55:23 +00:00
|
|
|
range(nSteps).map((i) => Dot(Dot.cls('-done', i > ctlIndex))),
|
2021-07-02 08:28:18 +00:00
|
|
|
),
|
|
|
|
Buttons(
|
|
|
|
bigBasicButton(
|
2021-07-30 11:55:23 +00:00
|
|
|
'Previous', testId('previous'),
|
|
|
|
dom.on('click', () => this._move(-1)),
|
|
|
|
dom.prop('disabled', isFirstStep),
|
|
|
|
{style: `margin-right: 8px; visibility: ${isFirstStep ? 'hidden' : 'visible'}`},
|
2021-07-02 08:28:18 +00:00
|
|
|
),
|
|
|
|
bigPrimaryButton(
|
2021-07-30 11:55:23 +00:00
|
|
|
isLastStep ? 'Finish' : 'Next', testId('next'),
|
|
|
|
dom.on('click', () => this._move(+1, true)),
|
2021-07-02 08:28:18 +00:00
|
|
|
),
|
|
|
|
)
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private _showOverlay() {
|
|
|
|
document.body.appendChild(this._overlay = Overlay());
|
|
|
|
this.onDispose(() => {
|
|
|
|
document.body.removeChild(this._overlay);
|
|
|
|
dom.domDispose(this._overlay);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function buildArrow() {
|
|
|
|
return ArrowContainer(
|
2021-07-19 08:49:44 +00:00
|
|
|
svg('svg', { style: 'width: 13px; height: 34px;' },
|
|
|
|
svg('path', {'d': 'M 2 19 h 13 v 18 Z'}))
|
2021-07-02 08:28:18 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
const Container = styled('div', `
|
2021-07-19 08:49:44 +00:00
|
|
|
align-self: center;
|
2022-09-06 01:51:57 +00:00
|
|
|
border: 2px solid ${theme.accentBorder};
|
2021-07-02 08:28:18 +00:00
|
|
|
border-radius: 3px;
|
|
|
|
z-index: 1000;
|
|
|
|
max-width: 490px;
|
|
|
|
position: relative;
|
2022-09-06 01:51:57 +00:00
|
|
|
background-color: ${theme.popupBg};
|
|
|
|
box-shadow: 0 2px 18px 0 ${theme.popupInnerShadow}, 0 0 1px 0 ${theme.popupOuterShadow};
|
2021-07-19 08:49:44 +00:00
|
|
|
outline: unset;
|
2021-07-02 08:28:18 +00:00
|
|
|
`);
|
|
|
|
|
|
|
|
function sideSelectorChunk(side: 'top'|'bottom'|'left'|'right') {
|
|
|
|
return `.${Container.className}[data-popper-placement^=${side}]`;
|
|
|
|
}
|
|
|
|
|
|
|
|
const ArrowContainer = styled('div', `
|
|
|
|
position: absolute;
|
|
|
|
|
|
|
|
& path {
|
2022-09-06 01:51:57 +00:00
|
|
|
stroke: ${theme.accentBorder};
|
2021-07-02 08:28:18 +00:00
|
|
|
stroke-width: 2px;
|
2022-09-06 01:51:57 +00:00
|
|
|
fill: ${theme.popupBg};
|
2021-07-02 08:28:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
${sideSelectorChunk('top')} > & {
|
|
|
|
bottom: -26px;
|
|
|
|
}
|
|
|
|
|
|
|
|
${sideSelectorChunk('bottom')} > & {
|
2021-07-19 08:49:44 +00:00
|
|
|
top: -23px;
|
2021-07-02 08:28:18 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
${sideSelectorChunk('right')} > & {
|
|
|
|
left: -12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
${sideSelectorChunk('left')} > & {
|
|
|
|
right: -12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
${sideSelectorChunk('top')} svg {
|
|
|
|
transform: rotate(-90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
${sideSelectorChunk('bottom')} svg {
|
|
|
|
transform: rotate(90deg);
|
|
|
|
}
|
|
|
|
|
|
|
|
${sideSelectorChunk('left')} svg {
|
|
|
|
transform: scalex(-1);
|
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
const ContentWrapper = styled('div', `
|
|
|
|
position: relative;
|
|
|
|
padding: 32px;
|
2022-09-06 01:51:57 +00:00
|
|
|
background-color: ${theme.popupBg};
|
2021-07-02 08:28:18 +00:00
|
|
|
`);
|
|
|
|
|
|
|
|
const Footer = styled('div', `
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
margin-top: 32px;
|
|
|
|
justify-content: space-between;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const ProgressBar = styled('div', `
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const Buttons = styled('div', `
|
|
|
|
display: flex;
|
|
|
|
flex-directions: row;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const Dot = styled('div', `
|
|
|
|
width: 6px;
|
|
|
|
height: 6px;
|
|
|
|
border-radius: 3px;
|
|
|
|
margin-right: 12px;
|
|
|
|
align-self: center;
|
2022-09-06 01:51:57 +00:00
|
|
|
background-color: ${theme.progressBarFg};
|
2021-07-02 08:28:18 +00:00
|
|
|
&-done {
|
2022-09-06 01:51:57 +00:00
|
|
|
background-color: ${theme.progressBarBg};
|
2021-07-02 08:28:18 +00:00
|
|
|
}
|
|
|
|
`);
|
|
|
|
|
|
|
|
const Overlay = styled('div', `
|
|
|
|
position: fixed;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2021-07-19 08:49:44 +00:00
|
|
|
justify-content: center;
|
2021-07-02 08:28:18 +00:00
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 999;
|
|
|
|
overflow-y: auto;
|
|
|
|
`);
|
2021-07-19 08:49:44 +00:00
|
|
|
|
|
|
|
const cssTitle = styled('div', `
|
|
|
|
font-size: ${vars.xxxlargeFontSize};
|
|
|
|
font-weight: ${vars.headerControlTextWeight};
|
2022-09-06 01:51:57 +00:00
|
|
|
color: ${theme.text};
|
2021-07-19 08:49:44 +00:00
|
|
|
margin: 0 0 16px 0;
|
|
|
|
line-height: 32px;
|
|
|
|
`);
|
|
|
|
|
|
|
|
const cssBody = styled('div', `
|
2022-09-06 01:51:57 +00:00
|
|
|
color: ${theme.text};
|
2021-07-19 08:49:44 +00:00
|
|
|
`);
|