2019-01-24 01:50:41 +03:00
|
|
|
/*
|
|
|
|
Copyright 2019 New Vector Ltd
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
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 PropTypes from 'prop-types';
|
|
|
|
import classNames from "classnames";
|
2019-09-26 15:52:09 +03:00
|
|
|
import {KeyCode} from "../../../Keyboard";
|
2019-01-24 01:50:41 +03:00
|
|
|
|
|
|
|
export default class ToggleSwitch extends React.Component {
|
|
|
|
static propTypes = {
|
|
|
|
// Whether or not this toggle is in the 'on' position. Default false (off).
|
|
|
|
checked: PropTypes.bool,
|
|
|
|
|
|
|
|
// Whether or not the user can interact with the switch
|
|
|
|
disabled: PropTypes.bool,
|
|
|
|
|
|
|
|
// Called when the checked state changes. First argument will be the new state.
|
|
|
|
onChange: PropTypes.func,
|
|
|
|
};
|
|
|
|
|
|
|
|
constructor(props) {
|
|
|
|
super(props);
|
|
|
|
|
|
|
|
this.state = {
|
|
|
|
checked: props.checked || false, // default false
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2019-02-07 21:54:13 +03:00
|
|
|
componentWillReceiveProps(nextProps) {
|
|
|
|
if (nextProps.checked !== this.state.checked) {
|
|
|
|
this.setState({checked: nextProps.checked});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-09-26 15:52:09 +03:00
|
|
|
_toggle = () => {
|
2019-01-24 01:50:41 +03:00
|
|
|
if (this.props.disabled) return;
|
|
|
|
|
|
|
|
const newState = !this.state.checked;
|
|
|
|
this.setState({checked: newState});
|
|
|
|
if (this.props.onChange) {
|
|
|
|
this.props.onChange(newState);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-09-26 15:52:09 +03:00
|
|
|
_onClick = (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
this._toggle();
|
|
|
|
};
|
|
|
|
|
|
|
|
_onKeyDown = (e) => {
|
|
|
|
e.stopPropagation();
|
|
|
|
e.preventDefault();
|
|
|
|
|
|
|
|
if (e.keyCode === KeyCode.ENTER || e.keyCode === KeyCode.SPACE) {
|
|
|
|
this._toggle();
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2019-01-24 01:50:41 +03:00
|
|
|
render() {
|
2019-09-25 11:25:11 +03:00
|
|
|
// eslint-disable-next-line no-unused-vars
|
|
|
|
const {checked, disabled, onChange, ...props} = this.props;
|
|
|
|
|
2019-01-24 01:50:41 +03:00
|
|
|
const classes = classNames({
|
|
|
|
"mx_ToggleSwitch": true,
|
|
|
|
"mx_ToggleSwitch_on": this.state.checked,
|
|
|
|
"mx_ToggleSwitch_enabled": !this.props.disabled,
|
|
|
|
});
|
|
|
|
return (
|
2019-09-25 11:01:49 +03:00
|
|
|
<div
|
2019-09-25 11:25:11 +03:00
|
|
|
{...props}
|
2019-09-25 11:01:49 +03:00
|
|
|
className={classes}
|
|
|
|
onClick={this._onClick}
|
2019-09-26 15:52:09 +03:00
|
|
|
onKeyDown={this._onKeyDown}
|
2019-09-25 11:01:49 +03:00
|
|
|
role="checkbox"
|
|
|
|
aria-checked={this.state.checked}
|
2019-09-25 11:25:11 +03:00
|
|
|
aria-disabled={disabled}
|
2019-09-25 20:10:05 +03:00
|
|
|
tabIndex={0}
|
|
|
|
>
|
2019-01-24 01:50:41 +03:00
|
|
|
<div className="mx_ToggleSwitch_ball" />
|
|
|
|
</div>
|
2019-01-24 02:09:58 +03:00
|
|
|
);
|
2019-01-24 01:50:41 +03:00
|
|
|
}
|
|
|
|
}
|