2018-03-26 00:46:45 +05:30
|
|
|
import React from 'react';
|
2019-12-07 16:58:52 +05:30
|
|
|
import { MessageDescriptor } from 'react-intl';
|
2019-12-08 01:13:08 +05:30
|
|
|
import clsx from 'clsx';
|
2019-12-08 00:32:00 +05:30
|
|
|
import { SKIN_DARK, COLOR_GREEN } from 'app/components/ui';
|
|
|
|
import { omit } from 'app/functions';
|
|
|
|
import { Color, Skin } from 'app/components/ui';
|
2018-03-26 00:46:45 +05:30
|
|
|
|
|
|
|
import styles from './form.scss';
|
|
|
|
import FormInputComponent from './FormInputComponent';
|
|
|
|
|
2019-12-07 16:58:52 +05:30
|
|
|
export default class Radio extends FormInputComponent<
|
|
|
|
{
|
|
|
|
color: Color;
|
|
|
|
skin: Skin;
|
|
|
|
label: string | MessageDescriptor;
|
|
|
|
} & React.InputHTMLAttributes<HTMLInputElement>
|
|
|
|
> {
|
2019-11-27 14:33:32 +05:30
|
|
|
static defaultProps = {
|
|
|
|
color: COLOR_GREEN,
|
|
|
|
skin: SKIN_DARK,
|
|
|
|
};
|
|
|
|
|
|
|
|
elRef = React.createRef<HTMLInputElement>();
|
|
|
|
|
|
|
|
render() {
|
|
|
|
const { color, skin } = this.props;
|
|
|
|
let { label } = this.props;
|
|
|
|
|
|
|
|
label = this.formatMessage(label);
|
|
|
|
|
|
|
|
const props = omit(this.props, ['color', 'skin', 'label']);
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div
|
2019-12-08 01:13:08 +05:30
|
|
|
className={clsx(
|
2019-11-27 14:33:32 +05:30
|
|
|
styles[`${color}MarkableRow`],
|
|
|
|
styles[`${skin}MarkableRow`],
|
|
|
|
)}
|
|
|
|
>
|
|
|
|
<label className={styles.markableContainer}>
|
|
|
|
<input
|
|
|
|
ref={this.elRef}
|
|
|
|
className={styles.markableInput}
|
|
|
|
type="radio"
|
|
|
|
{...props}
|
|
|
|
/>
|
|
|
|
<div className={styles.radio} />
|
|
|
|
{label}
|
|
|
|
</label>
|
|
|
|
{this.renderError()}
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
getValue() {
|
|
|
|
const { current: el } = this.elRef;
|
|
|
|
|
|
|
|
return el && el.checked ? 1 : 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
focus() {
|
|
|
|
const { current: el } = this.elRef;
|
|
|
|
|
|
|
|
el && el.focus();
|
|
|
|
}
|
2018-03-26 00:46:45 +05:30
|
|
|
}
|