mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
51 lines
1.3 KiB
TypeScript
51 lines
1.3 KiB
TypeScript
import './checkbox.scss'
|
|
import React from 'react'
|
|
import { autobind, cssNames } from "../../utils";
|
|
|
|
interface Props<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<Props> {
|
|
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: 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>
|
|
);
|
|
}
|
|
} |