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

60 lines
1.6 KiB
JavaScript
Raw Normal View History

// @flow
import type { Color, Skin } from 'components/ui';
import type { MessageDescriptor } from 'react-intl';
import React from 'react';
import classNames from 'classnames';
import { SKIN_DARK, COLOR_GREEN } from 'components/ui';
import { omit } from 'functions';
import styles from './form.scss';
import FormInputComponent from './FormInputComponent';
export default class Radio extends FormInputComponent<{
color: Color,
skin: Skin,
label: string | MessageDescriptor,
}> {
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 className={classNames(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;
2018-05-05 14:31:25 +05:30
return el && el.checked ? 1 : 0;
}
focus() {
const { current: el } = this.elRef;
2018-05-05 14:31:25 +05:30
el && el.focus();
}
}