GithubHelp home page GithubHelp logo

larvenllc / react-custom-checkbox Goto Github PK

View Code? Open in Web Editor NEW
11.0 3.0 3.0 56.36 MB

A simple and fully customizable React checkbox input component.

Home Page: https://larvenllc.github.io/react-custom-checkbox

License: MIT License

HTML 23.78% JavaScript 74.27% CSS 1.94%

react-custom-checkbox's Introduction

react-custom-checkbox

New Switch Component See More

A simple and fully customizable React checkbox input component.

NPM JavaScript Style Guide

Install

npm install --save react-custom-checkbox

Or

yarn add react-custom-checkbox

Demo Video

Usage

import React from "react";
import * as Icon from "react-icons/fi";
import Checkbox from "react-custom-checkbox";

const MyComponent = () => {
  return (
    <>
      <h4>Default:</h4>
      <Checkbox />
      <h4>Using Custom Icon:</h4>
      <Checkbox
        icon={<Icon.FiCheck color="#174A41" size={14} />}
        name="my-input"
        checked={true}
        onChange={(value, event) => {
          let p = {
            isTrue: value,
          };
          console.log(event);
          return alert(value);
        }}
        borderColor="#D7C629"
        style={{ cursor: "pointer" }}
        labelStyle={{ marginLeft: 5, userSelect: "none" }}
        label="Have you started using it?"
      />
      <h4>Using Image Icon:</h4>
      <Checkbox
        checked={true}
        icon={<img src={require("./check.png")} style={{ width: 24 }} alt="" />}
        borderColor="#D7C629"
        borderRadius={10}
        size={18}
        label="Get em!"
      />
      <h4>More Styling:</h4>
      <Checkbox
        checked={true}
        icon={
          <div
            style={{
              display: "flex",
              flex: 1,
              backgroundColor: "#174A41",
              alignSelf: "stretch",
            }}
          >
            <Icon.FiCheck color="white" size={20} />
          </div>
        }
        borderColor="#174A41"
        // borderWidth={0}
        borderRadius={20}
        style={{ overflow: "hidden" }}
        size={20}
        label="Coooool right?"
      />
    </>
  );
};

export default MyComponent;

Props

Prop Explanation Data Type (Sample) Values Default
icon custom check icon Object (jsx) * <img src={require("./check.png")} style={{ width: 24 }} alt="" /> <div style={{ backgroundColor: "#D7C629", borderRadius: 5, padding: 5 }} />
checked state of checkbox Bool _ true
_ false
false
disabled checkbox input active/inactive state Bool _ true
_ false
false
label checkbox label text String _ "Cheese"
_ "Lettuce"
``
onChange function triggered when checked state changes Func Usage
* (checked, event) => console.log(checked, event)
null
size size of checkbox Number _ 30
_ 15
18
right label position right? Bool _ true
_ false
false
name checkbox input name String _ "toppings"
_ "hobbies"
""
value checkbox input value String _ "cheese"
_ "lettuce"
""
style checkbox css style Object * {margin: 10}
{}
className checkbox css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
borderColor color of checkbox border String _ "red"
_ "#fff"
"#D7C629"
borderRadius radius of checkbox border Number _ 10
_ 0
5
borderStyle style of checkbox border Object _ "solid"
_ "dashed"
* "dotted"
"solid"
borderWidth thickness of checkbox border Number _ 4
_ 0
2
labelClassName label text css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
labelStyle label text css style Object * {margin: 10} { marginLeft: 5 }
containerClassName checkbox & label container css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
containerStyle checkbox & label container css style Object * {margin: 10} {}

Switch Component

Demo Video

Usage

import React from "react";
import Switch from "react-custom-checkbox/switch";

const checkedTrackStyle = {
  opacity: 1,
  transition: 'all 0.25s ease-in-out',
}

const checkedIndicatorStyle = {
  background: '#44aa44',
  transform: 'translateX(30px)',
}

const checkedIconStyle = {
  opacity: 1,
  transition: 'all 0.25s ease-in-out',
}

const indicatorStyle = {
  alignItems: 'center',
  background: '#f34334',
  borderRadius: 24,
  bottom: 2,
  display: 'flex',
  height: 24,
  justifyContent: 'center',
  left: 2,
  outline: 'solid 2px transparent',
  position: 'absolute',
  transition: '0.25s',
  width: 24,
}

const trackStyle = {
  background: '#e5efe9',
  border: '1px solid #e6e6e6',
  borderRadius: 15,
  cursor: 'pointer',
  display: 'flex',
  height: 28,
  marginRight: 12,
  position: 'relative',
  width: 60,
}

const MyComponent = () => {
  const [switchOneCheck, setSwitchOneCheck] = React.useState(false);

  return (
    <>
      <h4>Default:</h4>
      <Switch />
      <h4>Using Custom Icon:</h4>
      <Switch
        icon={
          <svg viewBox="0 0 24 24" role="presentation" aria-hidden="true">
            <path d="M9.86 18a1 1 0 01-.73-.32l-4.86-5.17a1.001 1.001 0 011.46-1.37l4.12 4.39 8.41-9.2a1 1 0 111.48 1.34l-9.14 10a1 1 0 01-.73.33h-.01z"></path>
          </svg>
        }
      />
      <h4>Controlled with custom styles:</h4>
      <Switch
        checked={switchOneCheck}
        onChange={setSwitchOneCheck}
        indicatorStyle={indicatorStyle}
        trackStyle={trackStyle}
        checkedIconStyle={checkedIconStyle}
        checkedIndicatorStyle={checkedIndicatorStyle}
        checkedTrackStyle={checkedTrackStyle}
      />
    </>
  );
};

export default MyComponent;

Props

Prop Explanation Data Type (Sample) Values Default
icon switch button icon/element Object (jsx) * <img src={require("./check.png")} style={{ width: 24 }} alt="" /> ``
checked state of switch Bool _ true
_ false
false
disabled switch input active/inactive state Bool _ true
_ false
false
onChange function triggered when checked state changes Func Usage
* (checked, event) => console.log(checked, event)
null
name switch input name String _ "toppings"
_ "hobbies"
""
value switch input value String _ "cheese"
_ "lettuce"
""
label switch label text String _ "Cheese"
_ "Lettuce"
``
isLabelRight label position right? Bool _ true
_ false
false
style switch css style Object * {margin: 10}
{clip: 'rect(0 0 0 0)',clipPath: 'inset(50%)',height: 1,overflow: 'hidden',position: 'absolute',whiteSpace: 'nowrap',width: 1}
className switch css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
iconClassName switch button icon/element css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
iconStyle switch button icon/element css styles Object * {margin: 10} {fill: '#fff',height: 20,width: 20,opacity: 0,transition: 'all 0.25s ease-in-out'}
checkedIconStyle switch button icon/element css styles when checked Object * {margin: 10} {opacity: 1,transition: 'all 0.25s ease-in-out'}
indicatorClassName switch button css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
indicatorStyle switch button css styles Object * {margin: 10} {alignItems: 'center',background: '#121943',borderRadius: 24,bottom: 2,display: 'flex',height: 24,justifyContent: 'center',left: 2,outline: 'solid 2px transparent',position: 'absolute',transition: '0.25s',width: 24}
checkedIndicatorStyle switch button css styles when checked Object * {margin: 10} {background: '#121943',transform: 'translateX(30px)'}
trackClassName switch track css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
trackStyle switch track css styles Object * {margin: 10} {background: '#e5efe9',border: '1px solid #5a72b5',borderRadius: 100,cursor: 'pointer',display: 'flex',height: 30,marginRight: 12,position: 'relative',width: 60}
checkedTrackStyle switch track css styles when checked Object * {margin: 10} {border: '1px solid transparent',boxShadow: '0px 0px 0px 2px #121943',opacity: 1,transition: 'all 0.25s ease-in-out'}
labelClassName label text css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
labelStyle label text css styles Object * {margin: 10} ``
containerClassName switch & label container css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
containerStyle switch & label container css styles Object * {margin: 10} {alignItems: 'center',borderRadius: 100,display: 'flex',fontWeight: 700,marginBottom: 16,}
wrapperClassName whole component wrapper css class(es) String _ "p-5 mb-3"
_ "uk-margin"
""
wrapperStyle whole component wrapper css styles Object * {margin: 10} { display: 'inline-block' }

License

MIT © BossBele @ chibokocl

react-custom-checkbox's People

Contributors

bossbele avatar chibokocl avatar denjamal avatar nukeop avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

react-custom-checkbox's Issues

Prop `style` did not match.

Hi, I am facing a warning simply importing Checkbox from react-custom-checkbox.
Here's the warning...
BTW I am using Nextjs 13

Warning: Propstyledid not match. Server: "height:18px;width:18px;border-width:2px;border-color:#D7C629;border-style:solid;border-radius:5px;display:flex;align-items:center;justify-content:center" Client: "height:18px;width:18px;border-width:2px;border-color:#D7C629;border-style:solid;border-radius:5px;display:flex;align-items:center;justify-content:center;cursor:"

Is there any way to fix this ?
Thanks

peer react@"^16.0.0" from [email protected]

`npm ERR! node_modules/react
npm ERR! react@"17.0.1" from the root project
npm ERR!
npm ERR! Could not resolve dependency:
npm ERR! peer react@"^16.0.0" from [email protected]
npm ERR! node_modules/react-custom-checkbox
npm ERR! react-custom-checkbox@"^1.0.7" from the root project
npm ERR!
npm ERR! Fix the upstream dependency conflict, or retry
npm ERR! this command with --force, or --legacy-peer-deps
npm ERR! to accept an incorrect (and potentially broken) dependency resolution.
npm ERR!
npm ERR! See /Users/apple/.npm/eresolve-report.txt for a full report.

`
Screenshot 2021-05-15 at 8 34 08 PM

TabIndex support

Currently trying to use tabIndex on this, and I'm having no luck. Is there something I'm missing?

missing disable props

Hi, thanks for your works!

Is possible to add a disabled props to make checkbox unclickable ?

thanks!

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.