zb-components

1.1.82 • Public • Published

zb-components

TextPopconfirm

使用了 antd 的 Popconfirm,点击文字出现确认框

import { TextPopconfirm } from 'zb-components'
;<TextPopconfirm onConfirm={this.onConfirm} title='确定删除吗?' text='删除' placement='top' />

image-preview

v1.1.10

图片预览高阶组件

import { ImagePreview } from 'zb-components'

@ImagePreview
class a extends Component {
  render() {
    return <img src={src} onClick={() => this.props.showModal(src)} />
  }
}

upload

v1.1.12

上传图片组件, 受控组件,接收 value: 图片列表 onChange: 事件 limit: 限制图片上传大小 默认 3 (MB) maximum: 图片数量限制 默认 5 env: 'test' | 'production' 环境 默认 production style

import { UploadImage } from 'zb-components'

class a extends Component {
  render() {
    return <UploadImage value={[]} limit={2} maximum={5} env='test' />
  }
}

装修组件

import { H5Fitment } from 'zb-components'
import { debounceAt } from 'zb-fjs' // 防抖

class a extends Component {
  toolbarConfig = () => {
    return [
      {
        type: 'default',
        key: 0,
        children: '提交',
        onClick: debounceAt(
          1000,
          true
        )(value => {
          if (!value.title) {
            message.error('请设置封面,输入页面标题!')
            return
          }
          let content = JSON.stringify(value)
        })
      }
    ]
  }
  render() {
    return (
      <div style={{ width: '100%', height: '699px' }}>
        <H5Fitment toolbarConfig={this.toolbarConfig()} title={title} dataSource={JSON.parse(content || '[]')} />
      </div>
    )
  }
}

滚动监听组件

// 1.1.32
import { ScrollHandle } from 'zb-components'

/**
 * @param 监听滚动事件的id
 * @param 触发事件的底部的距离
 **/
@ScrollHandle('id', 50)
class a extends Component {
  handleScroll = e => {
    // 滚动事件
  }
  handleScrollBottom = e => {
    // 滚动到底部触发的事件
  }
  render...
}

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.1.821latest

Version History

VersionDownloads (Last 7 Days)Published
1.1.821
1.1.810
1.1.800
1.1.790
1.1.780
1.1.750
1.1.740
1.1.730
1.1.720
1.1.701
1.1.690
1.1.681
1.1.670
1.1.660
1.1.650
1.1.640
1.1.630
1.1.611
1.1.600
1.1.580
1.1.570
1.1.560
1.1.550
1.1.540
1.1.530
1.1.520
1.1.510
1.1.500
1.1.490
1.1.480
1.1.470
1.1.460
1.1.450
1.1.440
1.1.430
1.1.420
1.1.410
1.1.400
1.1.390
1.1.380
1.1.370
1.1.360
1.1.350
1.1.340
1.1.330
1.1.320
1.1.310
1.1.300
1.1.290
1.1.280
1.1.270
1.1.260
1.1.250
1.1.241
1.1.230
1.1.220
1.1.210
1.1.190
1.1.180
1.1.170
1.1.160
1.1.150
1.1.140
1.1.130
1.1.120
1.1.110
1.1.100
1.1.91
1.1.80
1.1.71
1.1.60
1.1.50
1.1.40
1.1.30
1.1.20
1.1.10
1.1.00
1.0.110
1.0.100
1.0.90
1.0.80
1.0.70
1.0.60
1.0.50
1.0.40
1.0.30
1.0.20
1.0.10
1.0.00

Package Sidebar

Install

npm i zb-components

Weekly Downloads

6

Version

1.1.82

License

ISC

Unpacked Size

335 kB

Total Files

182

Last publish

Collaborators

  • kiddzz