Checkbox component for React

July 31, 2019 ยท View on GitHub

Back to Polythene Checkbox main page

Checkbox component for React

Options

Checkbox options

Usage

import React from "react"
import { Checkbox } from "polythene-react"

<Checkbox 
  defaultChecked
  label="Label"
  value="100"
/>

Reading and setting the checked state

See also Handling state.

To read the checked state, use onChange:

<Checkbox 
  onChange={
    newState => this.setState({ checked: newState.checked })
  }
  checked={this.state.checked}
/>

Example managing mutating state

In this example we show a simple form with a checkbox to accept the Terms and Conditions, and some other button (for instance in a details dialog) that also sets that checkbox:

import React, { Component } from "react"
import { Button, Checkbox } from "polythene-react"

class SimpleForm extends Component {

  constructor(props) {
    super(props);
    this.state = {
      checked: false,
    }
    this.setCheckedState = this.setCheckedState.bind(this)
    this.toggleState = this.toggleState.bind(this)
  }

  setCheckedState(newState) {
    this.setState({ checked: newState.checked })
  }

  toggleState() {
    this.setState({ checked: !this.state.checked })
  }

  render() {
    return <div>
      <Checkbox
        label="Label"
        onChange={this.setCheckedState}
        checked={this.state.checked}
      />
      <div
        style={{
          marginTop: "1rem"
        }}
      >
        <Button
          raised
          label="Toggle"
          events={{
            onClick: this.toggleState
          }}
        />
      </div>
    </div>
  }
}

export default SimpleForm

Appearance

Styling

Below are examples how to change the Checkbox appearance, either with a theme or with CSS.

You can find more information about theming in Theming.

Themed component

import { CheckboxCSS } from "polythene-css"

CheckboxCSS.addStyle(".themed-checkbox", {
  color_light_on:    "#2196F3",
  color_light_off:   "#2196F3",
  color_light_label: "#2196F3"
})

<Checkbox className="themed-checkbox" />

CSS

Change CSS using the Checkbox CSS classes.

Class names can be imported with:

import classes from "polythene-css-classes/checkbox"

Style

Some style attributes can be set using option style. For example:

<Checkbox
  style={{
    color: "#2196F3"
  }}
/>

Icons

To use alternative icons, use options iconOn and iconOff:

const iconStarOutlineSVG = <svg width="24" height="24" viewBox="0 0 24.00 24.00" enableBackground="new 0 0 24.00 24.00"><path fill="#000000" fillOpacity="1" strokeWidth="0.2" strokeLinejoin="round" d="M 11.9994,15.3943L 8.2364,17.6643L 9.2314,13.3833L 5.9094,10.5053L 10.2894,10.1293L 11.9994,6.09327L 13.7094,10.1293L 18.0894,10.5053L 14.7674,13.3833L 15.7624,17.6643M 21.9994,9.24227L 14.8084,8.62526L 11.9994,1.99827L 9.1904,8.62526L 1.9994,9.24227L 7.4544,13.9693L 5.8194,20.9983L 11.9994,17.2703L 18.1794,20.9983L 16.5444,13.9693L 21.9994,9.24227 Z "/></svg>
const iconStarFilledSVG = <svg width="24" height="24" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>

<Checkbox
  label="Label"
  iconOff={{ svg: { content: iconStarOutlineSVG } }}
  iconOn={{ svg: { content: iconStarFilledSVG } }}
/>

RTL (right-to-left) support

The direction of the checkbox icon and label is reversed when the Checkbox is contained within an element that either:

  • has attribute dir="rtl"
  • has className pe-rtl

Dark or light tone

If the component - or a component's parent - has option tone set to "dark", the component will be rendered with light colors on dark.

  • Use tone: "dark" to render light on dark
  • Use tone: "light" to locally render normally when dark tone is set