0.0.2 • Published 3 years ago

@cig/inputadaption v0.0.2

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

@cig/select

The Select control for React.

Demo

https://codesandbox.io/s/cigselect-vsk7i

Installation and usage

The easiest way to use @cig/select is to install it from npm and build it into your app with Webpack.

npm i -S @cig/select

Then use it in your App:

import React, {
  useState,
  useEffect,
} from 'react'
import Select from '@cig/select'

export default () => {
  const [show, setShow] = useState(false)
  const [value, setValue] = useState(['a', 'b', 'c', 'd', 'e', 'f'])
  /*
  const [value, setValue] = useState([
    {
      value: 'a',
    },
    {
      value: 'c',
    },
    {
      value: 'd',
    },
    {
      value: 'b',
    },
  ])
  */
  const title = '新易互动...'
  const confirmValue = '确定'
  const data = ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i']
  /*
  const data = [
    {
      value: 'a',
      data: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'],
    },
    {
      value: 'b',
      data: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'],
    },
    {
      value: 'c',
      data: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'],
    },
    {
      value: 'd',
      data: ['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'],
    },
  ]
  */

  useEffect(() => console.log(value), [value])

  return (
    <Box>
      <div
        onClick={() => setShow(!show)}
        role="button"
        onKeyUp={() => {}}
        tabIndex={0}
      >
        {show ? 'Select Hide' : 'Select Show'}
      </div>
      {
        show
          ? (
            <Select
              title={title}
              value={value}
              data={[data, data, data, data]}
              show={v => setShow(v)}
              update={v => setValue(v)}
              confirmValue={confirmValue}
              confirm={v => setValue(v)}
            />
          ) : null
      }
    </Box>
  )
}

Props

名称类型必填默认值描述
titleStringN请选择标题
valueArrayN-默认选项
dataArrarY-数据
showFunctionN-是否显示
updateFunctionN-数据更新回调
confirmValueStringN确定确定按钮文案
confirmFunctionY-确定按钮回调