🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis
Socket
Book a DemoInstallSign in
Socket

uxcore-user-guide

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

uxcore-user-guide

uxcore-user-guide component for uxcore.

latest
Source
npmnpm
Version
0.2.0
Version published
Maintainers
1
Created
Source

uxcore-user-guide

React user guide

NPM version build status Test Coverage Dependency Status devDependency Status NPM downloads

Sauce Test Status

Development

git clone https://github.com/uxcore/uxcore-user-guide
cd uxcore-user-guide
npm install
npm run server

if you'd like to save your install time,you can use uxcore-tools globally.

npm install uxcore-tools -g
git clone https://github.com/uxcore/uxcore-user-guide
cd uxcore-user-guide
npm install
npm run dep
npm run start

Test Case

npm run test

Coverage

npm run coverage

Demo

http://uxcore.alibaba.net/components/uxcore-user-guide?type=others

Contribute

Yes please! See the CONTRIBUTING for details.

使用方法

一个产品或者页面中可能有多个引导,需要给每个引导做一个key

const blokingUserGuide = UserGuideFactory.getWithKey('1', {
  // 可以自定义参数
  isBlocking: true,
  assistType: 'SKIP',
  onComplete() {
    /** 引导结束,执行业务逻辑 **/
  },
});
const UserGuide = UserGuideFactory.getWithKey('2', {
  // 可以自定义参数
  isBlocking: false,
  assistType: 'NO_REMIND',
  onAssistClick(step) {
    // 点击 了解更多 / 不再提醒 时的回调函数
    console.log(step);
    // 可以调用 stop 关闭当前引导。
    UserGuide.stop();
    /** 业务逻辑,例如存储不再提醒,下次不要让用户查看相关提醒了。 **/
  },
});

config 种含有的参数包括

参数名类型默认值备注
localestring'zh-cn'语言
prefixClsstring'kuma-user-guide'class 前缀
iconstring / React 组件undefined传递 string 时,以 uxcore-icon 的名字进行渲染;如果为 falsy 的值,则不会渲染;其他直接渲染,不包含外边框。
classNamestring''定制类名
isBlockingbooleantrue是否阻塞UI
assistTypestringundefined辅助按钮 / 链接,可选值包括 'SKIP': 跳过; 'LEARN_MORE': 了解更多; 'NO_REMIND': 不再提醒
onAssistClickfunctionundefined了解更多 / 不再提醒 点击时的回调函数
onCompletefunctionundefined结束时的回调

然后给这个引导添加步骤,每个步骤可以有4种选择

  • 使用React HOC
const Step1 = UserGuide.addUserGuide({
  dom: 'button',
  step: 1,
  icon: 'shanchu',
  hint: '我是第一步提示',
  type: 'ReactComponent',
});
  • 使用DOM
const Step1 = UserGuide.addUserGuide({
  dom: document.getElementById('app'),
  step: 2,
  hint: '我是第二步提示',
  type: 'HTMLElement',
});
  • 使用一个函数返回DOM
const Step1 = UserGuide.addUserGuide({
  getDom() { return document.getElementById('app'); },
  step: 3,
  hint: '我是第三步提示',
  type: 'HTMLElementMaker',
});
  • 使用图片
UserGuide.addUserGuide({
  step: 4,
  hint: '我是第四步的提示,我也没有对应的DOM',
  type: 'Image',
  top: 1800,
  left: 1000,
  image: 'https://img.alicdn.com/tfs/TB1TRNAllfH8KJjy1XbXXbLdXXa-240-240.png',
  imageHeight: 120,
  imageWidth: 120,
});

需要开始引导时,需要

UserGuide.start();

start 可以传递参数:

参数名类型默认值备注
designModeboolfalse是否设计模式,如果是true,会展示所有的步骤,以供调试及预览使用。

需要关闭时,可以调用

UserGuide.stop();

stop 可以传递参数

参数名类型默认值备注
callOnCompletebooltrue关闭时是否调用onComplete

Keywords

react

FAQs

Package last updated on 08 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts