bigbluebutton-Github/bigbluebutton-html5/imports/ui/components/switch/component.jsx
2018-03-14 09:09:52 -07:00

72 lines
1.9 KiB
JavaScript

import React from 'react';
import Toggle from 'react-toggle';
import classNames from 'classnames';
import { defineMessages, injectIntl } from 'react-intl';
const intlMessages = defineMessages({
on: {
id: 'app.switch.onLabel',
description: 'label for toggle switch on state',
},
off: {
id: 'app.switch.offLabel',
description: 'label for toggle switch off state',
},
});
class Switch extends Toggle {
render() {
const {
intl,
className,
icons: _icons,
ariaLabelledBy,
ariaDescribedBy,
ariaLabel,
ariaDesc,
...inputProps
} = this.props;
const classes = classNames('react-toggle', {
'react-toggle--checked': this.state.checked,
'react-toggle--focus': this.state.hasFocus,
'react-toggle--disabled': this.props.disabled,
}, className);
return (
<div
className={classes}
onClick={this.handleClick}
onTouchStart={this.handleTouchStart}
onTouchMove={this.handleTouchMove}
onTouchEnd={this.handleTouchEnd}
>
<div className="react-toggle-track" aria-hidden="true">
<div className="react-toggle-track-check">
{intl.formatMessage(intlMessages.on)}
</div>
<div className="react-toggle-track-x">
{intl.formatMessage(intlMessages.off)}
</div>
</div>
<div className="react-toggle-thumb" />
<input
{...inputProps}
ref={(ref) => { this.input = ref; }}
onFocus={this.handleFocus}
onBlur={this.handleBlur}
className="react-toggle-screenreader-only"
type="checkbox"
tabIndex="0"
aria-label={ariaLabel}
aria-describedby={ariaDescribedBy}
/>
<div id={ariaDescribedBy} hidden>{ariaDesc}</div>
</div>
);
}
}
export default injectIntl(Switch);