npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@uiw/react-steps

v4.22.3

Published

Steps component

Downloads

1,026

Readme

Steps 步骤条

Buy me a coffee Open in unpkg NPM Downloads npm version

引导用户按照流程完成任务的导航条。当任务复杂或者存在先后关系时,将其分解成一系列步骤,从而简化任务。

import { Steps } from 'uiw';
// or
import Steps from '@uiw/react-steps';

基本用法

简单的步骤条。

import React from 'react';
import { Steps } from 'uiw';

export default function Demo() {
  return (
    <Steps current={1} style={{ padding:"20px 0" }}>
      <Steps.Step title="步骤一" description="这里是步骤一的说明,可以很长很长哦。这里是步骤一的说明,可以很长很长哦。这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step title="步骤二" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step title="步骤三" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step title="步骤四" description="这里是步骤一的说明,可以很长很长哦。" />
    </Steps>
  )
}

没有详情介绍

简单的步骤条。

import React from 'react';
import { Steps } from 'uiw';

export default function Demo() {
  return (
    <Steps current={1} style={{padding:"20px 0"}}>
      <Steps.Step title="步骤一" />
      <Steps.Step title="步骤二" />
      <Steps.Step title="步骤三" />
      <Steps.Step title="步骤四" />
    </Steps>
  )
}

带图标的步骤条

通过设置 Steps.Stepicon 属性,可以启用自定义图标。

import React from 'react';
import { Steps, Icon } from 'uiw';

export default function Demo() {
  return (
    <Steps current={1} style={{padding:"20px 0"}}>
      <Steps.Step icon={<Icon type="user"/>} title="注册" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step icon={<Icon type="picasa" spin={true} color="red" />} title="上传头像" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step icon="message" title="验证邮箱" description="这里是步骤一的说明,可以很长很长哦。" />
    </Steps>
  )
}

步骤运行错误

使用 Stepsstatus 属性来指定当前步骤的状态。

import React from 'react';
import { Steps } from 'uiw';

export default function Demo() {
  return (
    <Steps current={2} status="error" style={{padding:"20px 0"}}>
      <Steps.Step title="步骤一" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step title="步骤二" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step title="步骤三" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step title="步骤四" description="这里是步骤一的说明,可以很长很长哦。" />
    </Steps>
  )
}

点状步骤条

包含步骤点的进度条。

import React from 'react';
import { Steps } from 'uiw';

export default function Demo() {
  return (
    <Steps progressDot status="error" current={2} style={{padding:"20px 0"}}>
      <Steps.Step title="步骤一" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step title="步骤二" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step title="步骤三" description="这里是步骤一的说明,可以很长很长哦。" />
      <Steps.Step title="步骤四" description="这里是步骤一的说明,可以很长很长哦。" />
    </Steps>
  )
}

步骤切换

通常配合内容及按钮使用,表示一个流程的处理进度。

import React from 'react';
import { Steps, Button, Notify } from 'uiw';

const conStyle = { minHeight: 200, backgroundColor: '#fafafa',textAlign: 'center', borderRadius: 6, paddingTop: 80, marginTop: 15 }
const steps = [
  {
    title: '第一步',
    content: '注册一个账号',
  }, {
    title: '第二步',
    content: '填写个人信息。',
  }, {
    title: '第三步',
    content: '验证邮箱',
  }
]

export default function Demo() {
  const [current, setCurrent] = React.useState(0);
    return (
      <div>
        <Steps current={current}>
          {steps.map(item => <Steps.Step key={item.title} title={item.title} />)}
        </Steps>
        <div style={conStyle}>{steps[current].content}</div>
        <div style={{marginTop: 20}}>
          {current < steps.length - 1 && (
            <Button type="primary" size="small" onClick={() => setCurrent(current + 1)}>下一步</Button>
          )}
          {current === steps.length - 1 && (
            <Button type="primary" size="small" onClick={() => Notify.open({ description: '处理完成!' })}>完成</Button>
          )}
          {current > 0 && (
            <Button size="small" style={{ marginLeft: 8 }} onClick={() => setCurrent(current - 1)}>
              上一步
            </Button>
          )}
        </div>
      </div>
    );
}

竖直方向的步骤条

简单的竖直方向的步骤条。

import React from 'react';
import { Steps, Row, Col, Icon } from 'uiw';

export default function Demo() {
  return (
    <Row gutter={20}>
      <Col>
        <Steps current={1} direction="vertical" style={{ padding: '20px 0' }}>
          <Steps.Step title="已完成" description="这里是该步骤的描述信息" />
          <Steps.Step title="进行中" description="这里是该步骤的描述信息" />
          <Steps.Step status="error" title="待进行" description="这里是该步骤的描述信息" />
          <Steps.Step title="待进行" description="这里是该步骤的描述信息" />
        </Steps>
      </Col>
      <Col>
        <Steps direction="vertical" progressDot status="error" current={2} style={{ padding: '20px 0' }}>
          <Steps.Step title="步骤一" description="这里是步骤一的说明,可以很长很长哦。" />
          <Steps.Step title="步骤二" description="这里是步骤一的说明,可以很长很长哦。" />
          <Steps.Step title="步骤三" description="这里是步骤一的说明,可以很长很长哦。" />
          <Steps.Step icon={<Icon type="user"/>} title="步骤四" description="这里是步骤一的说明,可以很长很长哦。" />
        </Steps>
      </Col>
    </Row>
  )
}

Props

Steps

| 参数 | 说明 | 类型 | 默认值 | |--------- |-------- |---------- |-------- | | current | 指定当前步骤,从 0 开始记数。| Number | 0 | | status | 当前步骤的状态,可选值为waitprocessfinisherror | String | process | | direction | 指定步骤条方向,支持水平verticalhorizontal | | horizontal | | progressDot | 点状步骤条| | horizontal |

Steps.Step

| 参数 | 说明 | 类型 | 默认值 | |--------- |-------- |---------- |-------- | | status | 指定状态。当不配置该属性时,会使用 Steps 的 current 来自动指定状态。可选:wait process finish error | String | wait | | title | 指定每个步骤标题 | String/ReactNode | - | | description | 步骤的详情描述,可选 | String/ReactNode | - | | icon | 步骤的图标,字符串类型从<Icon/>组件中找,可选 | String/ReactNode | - |