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';
|
2021-06-29 15:11:58 +03:00
|
|
|
import { replaceableComponent } from "../../../utils/replaceableComponent";
|
2020-06-10 15:03:00 +03:00
|
|
|
|
|
|
|
interface IProps extends React.InputHTMLAttributes<HTMLInputElement> {
|
2020-07-03 21:27:45 +03:00
|
|
|
outlined?: boolean;
|
2021-07-17 00:27:31 +03:00
|
|
|
// If true (default), the children will be contained within a <label> element
|
|
|
|
// If false, they'll be in a div. Putting interactive components like Fields in labels can
|
|
|
|
// cause strange bugs like https://github.com/vector-im/element-web/issues/18031
|
|
|
|
childrenInLabel?: boolean;
|
2020-06-10 15:03:00 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
interface IState {
|
|
|
|
}
|
|
|
|
|
2021-03-09 05:59:41 +03:00
|
|
|
@replaceableComponent("views.elements.StyledRadioButton")
|
2020-06-10 15:03:00 +03:00
|
|
|
export default class StyledRadioButton extends React.PureComponent<IProps, IState> {
|
|
|
|
public static readonly defaultProps = {
|
|
|
|
className: '',
|
2021-07-17 00:27:31 +03:00
|
|
|
childrenInLabel: true,
|
2020-06-18 16:32:43 +03:00
|
|
|
};
|
2020-06-10 15:03:00 +03:00
|
|
|
|
|
|
|
public render() {
|
2021-07-17 00:27:31 +03:00
|
|
|
const { children, className, disabled, outlined, childrenInLabel, ...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
|
|
|
});
|
2021-07-17 00:27:31 +03:00
|
|
|
|
|
|
|
const radioButton = <React.Fragment>
|
2020-06-11 14:27:09 +03:00
|
|
|
<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>
|
2021-07-17 00:27:31 +03:00
|
|
|
</React.Fragment>;
|
|
|
|
|
|
|
|
if (childrenInLabel) {
|
|
|
|
return <label className={_className}>
|
|
|
|
{radioButton}
|
|
|
|
<div className="mx_RadioButton_content">{children}</div>
|
|
|
|
<div className="mx_RadioButton_spacer" />
|
|
|
|
</label>;
|
|
|
|
} else {
|
|
|
|
return <div className={_className}>
|
|
|
|
<label className="mx_RadioButton_innerLabel">
|
|
|
|
{radioButton}
|
|
|
|
</label>
|
|
|
|
<div className="mx_RadioButton_content">{children}</div>
|
|
|
|
<div className="mx_RadioButton_spacer" />
|
|
|
|
</div>;
|
|
|
|
}
|
2020-06-10 15:03:00 +03:00
|
|
|
}
|
|
|
|
}
|