2020-06-10 15:03:00 +03:00
|
|
|
/*
|
|
|
|
Copyright 2020 The Matrix.org Foundation C.I.C.
|
2020-06-10 15:49:52 +03:00
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
2020-06-10 15:03:00 +03:00
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
2020-06-10 15:49:52 +03:00
|
|
|
|
2020-06-10 15:03:00 +03:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2020-06-10 15:49:52 +03:00
|
|
|
|
2020-06-10 15:03:00 +03:00
|
|
|
Unless required by applicable law or agreed to in writing, software
|
2020-06-10 15:49:52 +03:00
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
2020-06-10 15:03:00 +03:00
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
import React from 'react';
|
|
|
|
import classnames from 'classnames';
|
|
|
|
|
|
|
|
interface IProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
2020-07-03 21:27:45 +03:00
|
|
|
outlined?: boolean;
|
2020-06-10 15:03:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
interface IState {
|
|
|
|
}
|
|
|
|
|
|
|
|
export default class StyledRadioButton extends React.PureComponent<IProps, IState> {
|
|
|
|
public static readonly defaultProps = {
|
|
|
|
className: '',
|
2020-06-18 16:32:43 +03:00
|
|
|
};
|
2020-06-10 15:03:00 +03:00
|
|
|
|
|
|
|
public render() {
|
2020-07-03 21:27:45 +03:00
|
|
|
const { children, className, disabled, outlined, ...otherProps } = this.props;
|
2020-06-11 14:27:09 +03:00
|
|
|
const _className = classnames(
|
|
|
|
'mx_RadioButton',
|
|
|
|
className,
|
|
|
|
{
|
|
|
|
"mx_RadioButton_disabled": disabled,
|
|
|
|
"mx_RadioButton_enabled": !disabled,
|
2020-06-16 19:55:19 +03:00
|
|
|
"mx_RadioButton_checked": this.props.checked,
|
2020-07-03 21:27:45 +03:00
|
|
|
"mx_RadioButton_outlined": outlined,
|
2020-06-11 14:27:09 +03:00
|
|
|
});
|
|
|
|
return <label className={_className}>
|
|
|
|
<input type='radio' disabled={disabled} {...otherProps} />
|
2020-06-10 15:03:00 +03:00
|
|
|
{/* Used to render the radio button circle */}
|
2020-07-03 21:27:45 +03:00
|
|
|
<div><div /></div>
|
2020-06-23 17:04:39 +03:00
|
|
|
<div className="mx_RadioButton_content">{children}</div>
|
2020-06-10 15:03:00 +03:00
|
|
|
<div className="mx_RadioButton_spacer" />
|
2020-06-18 16:32:43 +03:00
|
|
|
</label>;
|
2020-06-10 15:03:00 +03:00
|
|
|
}
|
|
|
|
}
|