1.3.0-dev.0 • Published 3 years ago

mb-react-color-picker v1.3.0-dev.0

Weekly downloads
96
License
MIT
Repository
github
Last release
3 years ago

mb-react-color-picker

NPM JavaScript Style Guide

A React component that enables to pick color through HSV/HEX/RGBA.

Install

npm i mb-react-color-picker

About

class ColorPicker extends React.component {
  static propTypes = {
    color: PropTypes.string,
      /*
        color for the color picker, case insensitive
        valid pattern:
          1) hex pattern like '#fff', '#FFFFFF'
          2) rgba pattern like 'rgba(255, 255, 255, 1)'
       */
    onChange: PropTypes.func,
      /*
       get called when a color is picked through dragging(hsv), the color is
        passed in as the first and only param. Useful for managing history.
      */
    onConfirm: PropTypes.func,
      /*
       get called when a color is picked. The color, formatted to rgba pattern,
        like 'rgba(255, 255, 255, 1)', is passed in as the first and only param.
      */
    applyDidMountSideEffect: PropTypes.func,
      /*
        get called in componentDidMount life cycle of the color picker.
      */
    applyWillUnmountSideEffect: PropTypes.func,
      /*
        get called in componentWillUnmount life cycle of the color picker.
      */
    themeColors: PropTypes.array,
      /*
        list of theme colors for quick pick, valid pattern is the same as above.
      */
    customColors: PropTypes.array,
      /*
        list of custom colors for quick pick.
      */
    customColorsHeaderText: PropTypes.string,
      /*
        header text for list of custom colors, defaults to 'Custom colors'.
      */
    onDragStart: PropTypes.func,
      /*
        if a function is passed, it will get called when dragging the color
        picker, a DOM element of the color picker will get passed as first and
        only param. Useful for positioning if you need a non-fixed style.
      */
    onClose: PropTypes.func,
      /*
        if a function is passed, a close button will appear on top right corner
        on the color picker. Clicking on it will let the function get called.
      */
    headerText: PropTypes.string,
      /*
        header text for color picker, defaults to 'Color Picker'.
      */
  }

  render () {
    ...
  }
}

Usage

import React, { Component } from 'react'

import ColorPicker from 'mb-react-color-picker'

class Example extends Component {
  state = {
    color: '#996633'
  }

  handleChange = color => this.setState({ color })

  render () {
    const { color } = this.state
    return (
      <ColorPicker
        color={color}
        onChange={this.handleChange}
      />
    )
  }
}

Also, you can wrap a custom color picker element, for example, a eyedropper color picker, into the <ColorPicker> as its child, to enhance the color picker. The custom color picker will receive hex, alpha, handleChange as props to interchange color with the <ColorPicker>. You can check the usage in /example/src/App.js

Demo

Pick me :hearts:

License

MIT © mockingbot

1.3.0-dev.0

3 years ago

1.2.0-dev.12

4 years ago

1.2.0-dev.13

4 years ago

1.2.0-dev.14

4 years ago

1.2.0-dev.11

4 years ago

1.2.0-dev.10

4 years ago

1.2.0-dev.8

4 years ago

1.2.0-dev.9

4 years ago

1.2.0-dev.7

4 years ago

1.2.0-dev.4

4 years ago

1.2.0-dev.3

4 years ago

1.2.0-dev.6

4 years ago

1.2.0-dev.5

4 years ago

1.2.0-dev.0

4 years ago

1.2.0-dev.2

4 years ago

1.2.0-dev.1

4 years ago

1.1.0-dev.1

5 years ago

1.1.0-dev.0

5 years ago

1.0.6-dev.4

5 years ago

1.0.6-dev.3

5 years ago

1.0.6-dev.2

5 years ago

1.0.6-dev.1

5 years ago

1.0.6-dev.0

5 years ago

1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago