Files
SCM-Manager/scm-ui/ui-components/src/forms/Checkbox.tsx

62 lines
1.6 KiB
TypeScript
Raw Normal View History

import React, { ChangeEvent } from "react";
import { Help } from "../index";
import LabelWithHelpIcon from "./LabelWithHelpIcon";
type Props = {
label?: string;
onChange?: (value: boolean, name?: string) => void;
checked: boolean;
name?: string;
title?: string;
disabled?: boolean;
helpText?: string;
};
export default class Checkbox extends React.Component<Props> {
onCheckboxChange = (event: ChangeEvent<HTMLInputElement>) => {
if (this.props.onChange) {
this.props.onChange(event.target.checked, this.props.name);
}
};
2018-10-02 09:49:34 +02:00
renderHelp = () => {
const { title, helpText } = this.props;
if (helpText && !title) {
return <Help message={helpText} />;
}
2018-10-02 09:49:34 +02:00
};
renderLabelWithHelp = () => {
const { title, helpText } = this.props;
if (title) {
return <LabelWithHelpIcon label={title} helpText={helpText} />;
}
}
render() {
const { label, checked, disabled } = this.props;
return (
2019-10-29 14:20:14 +01:00
<div className="field">
{this.renderLabelWithHelp()}
2018-10-02 13:04:34 +02:00
<div className="control">
{/*
we have to ignore the next line,
because jsx label does not the custom disabled attribute
but bulma does.
// @ts-ignore */}
<label className="checkbox" disabled={disabled}>
<input
type="checkbox"
checked={checked}
onChange={this.onCheckboxChange}
disabled={disabled}
/>{" "}
{label}
{this.renderHelp()}
</label>
</div>
</div>
);
}
}