accounts-frontend/src/components/ui/form/Checkbox.js

59 lines
1.5 KiB
JavaScript
Raw Normal View History

// @flow
import React from 'react';
2016-05-02 12:45:42 +05:30
import classNames from 'classnames';
import { SKIN_DARK, COLOR_GREEN } from 'components/ui';
import { omit } from 'functions';
2016-05-30 10:10:59 +05:30
2016-05-02 12:45:42 +05:30
import styles from './form.scss';
import FormInputComponent from './FormInputComponent';
2016-05-02 12:45:42 +05:30
import type { Color, Skin } from 'components/ui';
import type { MessageDescriptor } from 'react-intl';
2016-05-02 12:45:42 +05:30
export default class Checkbox extends FormInputComponent<{
color: Color,
skin: Skin,
label: string | MessageDescriptor,
}> {
static displayName = 'Checkbox';
2016-05-02 12:45:42 +05:30
2016-05-30 10:10:59 +05:30
static defaultProps = {
color: COLOR_GREEN,
skin: SKIN_DARK,
2016-05-30 10:10:59 +05:30
};
2016-05-02 12:45:42 +05:30
render() {
2016-05-30 10:10:59 +05:30
const { color, skin } = this.props;
let { label } = this.props;
2016-05-02 12:45:42 +05:30
label = this.formatMessage(label);
2016-05-02 12:45:42 +05:30
const props = omit(this.props, ['color', 'skin', 'label']);
2016-05-02 12:45:42 +05:30
return (
<div className={classNames(styles[`${color}MarkableRow`], styles[`${skin}MarkableRow`])}>
<label className={styles.markableContainer}>
2017-08-23 00:27:35 +05:30
<input ref={this.setEl}
className={styles.markableInput}
2017-08-23 00:27:35 +05:30
type="checkbox"
{...props}
/>
2016-05-02 12:45:42 +05:30
<div className={styles.checkbox} />
{label}
</label>
{this.renderError()}
2016-05-02 12:45:42 +05:30
</div>
);
}
getValue() {
return this.el.checked ? 1 : 0;
}
focus() {
this.el.focus();
}
}