element-web/src/components/views/elements/StyledRadioButton.tsx

52 lines
1.7 KiB
TypeScript
Raw Normal View History

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> {
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() {
const { children, className, disabled, outlined, ...otherProps } = this.props;
const _className = classnames(
'mx_RadioButton',
className,
{
"mx_RadioButton_disabled": disabled,
"mx_RadioButton_enabled": !disabled,
"mx_RadioButton_checked": this.props.checked,
"mx_RadioButton_outlined": outlined,
});
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 */}
<div><div /></div>
<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
}
}