1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00
lens/src/renderer/components/checkbox/checkbox.tsx
Panu Horsmalahti dcf253e7d5
Add eslint rule padding-line-between-statements (#1593)
Signed-off-by: Panu Horsmalahti <phorsmalahti@mirantis.com>
2020-12-02 09:55:52 +02:00

53 lines
1.4 KiB
TypeScript

import "./checkbox.scss";
import React from "react";
import { autobind, cssNames } from "../../utils";
export interface CheckboxProps<T = boolean> {
theme?: "dark" | "light";
className?: string;
label?: React.ReactNode;
inline?: boolean;
disabled?: boolean;
value?: T;
onChange?(value: T, evt: React.ChangeEvent<HTMLInputElement>): void;
}
export class Checkbox extends React.PureComponent<CheckboxProps> {
private input: HTMLInputElement;
@autobind()
onChange(evt: React.ChangeEvent<HTMLInputElement>) {
if (this.props.onChange) {
this.props.onChange(this.input.checked, evt);
}
}
getValue() {
if (this.props.value !== undefined) return this.props.value;
return this.input.checked;
}
render() {
const { label, inline, className, value, theme, children, ...inputProps } = this.props;
const componentClass = cssNames("Checkbox flex", className, {
inline,
checked: value,
disabled: this.props.disabled,
[`theme-${theme}`]: theme,
});
return (
<label className={componentClass}>
<input
{...inputProps}
type="checkbox" checked={value} onChange={this.onChange}
ref={e => this.input = e}
/>
<i className="box flex align-center"/>
{label ? <span className="label">{label}</span> : null}
{children}
</label>
);
}
}