react-tour-highlight

0.0.1 • Public • Published

This component allows you to create a customizable guide.

It exports TourStep which provide a way to encapsulate any component into a simple step/highlight for your walkthrough.

TourStepaccept any component as a tooltippropertie but you can use TourTooltip as a default behaviour.

Your html will be keep the same. Nothing is inject.

Warning

You have to handle the state of the guide yourself. It is usefull if you want to create a complexe manager which show a step by step walkthrough between multiple pages.

It comes with a basic stylesheet to show you the possibilities but you'll have to create your own to create something attractive.

Demo

import React, { Component } from 'react';
import logo from './logo.svg';
import  { TourStep, TourTooltip } from 'react-tour-highlight';
 
class App extends Component {
  state = { step: 0 };
 
  goToNextStep() {
    this.setState({
      step: this.state.step + 1
    });
  }
 
  createTooltip() {
    return (
      <TourTooltip dir="top">
        <div className="tooltip-content">
          Tooltip content
        </div>
      </TourTooltip>
    );
  }
 
  render() {
    let { step } = this.state;
 
    return (
      <div className="App">
        <header className="App-header">
          <img src={logo} className="App-logo" alt="logo" />
          <h1 className="App-title">Welcome to React</h1>
        </header>
        <div className="App-intro">
          <TourStep
            active={step === 0}
            tooltip={this.createTooltip()}
            onClick={this.goToNextStep.bind(this)}
          >
            <div>
              To get started, edit <code>src/App.js</code> and save to reload.
            </div>
            <div>
              Step 0
            </div>
          </TourStep>
        </div>
        <TourStep
          active={step === 1}
          tooltip={this.createTooltip()}
          onClick={this.goToNextStep.bind(this)}
        >
          <section className="step-1" style={{height: 200, width: 150}}>
            Step 1
          </section>
        </TourStep>
 
        <TourStep
          active={step === 2}
          tooltip={this.createTooltip()}
          onClick={this.goToNextStep.bind(this)}
        >
          <section style={{height: 100, width: 300}}>
            Step 2
          </section>
        </TourStep>
 
        <TourStep
          active={step === 1}
          tooltip={this.createTooltip()}
          onClick={this.goToNextStep.bind(this)}
        >
          <section style={{height: 100, width: 300}}>
            Step 1
          </section>
        </TourStep>
      </div>
    );
  }
}
 

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.1
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.1
    2

Package Sidebar

Install

npm i react-tour-highlight

Weekly Downloads

2

Version

0.0.1

License

ISC

Unpacked Size

28.4 kB

Total Files

11

Last publish

Collaborators

  • karlito40