import React from 'react'; import { defineMessages, injectIntl } from 'react-intl'; import Button from '/imports/ui/components/button/component'; import cx from 'classnames'; import PropTypes from 'prop-types'; import { styles } from './styles'; const intlMessages = defineMessages({ switchButtonShrink: { id: 'app.switchButton.shrinkLabel', description: 'shrink label', }, switchButtonExpand: { id: 'app.switchButton.expandLabel', description: 'expand label', }, }); const propTypes = { intl: PropTypes.object.isRequired, dark: PropTypes.bool, bottom: PropTypes.bool, className: PropTypes.string, handleSwitch: PropTypes.func, switched: PropTypes.bool, }; const defaultProps = { dark: false, bottom: false, className: '', handleSwitch: () => {}, switched: false, }; const SwitchButtonComponent = (props) => { const { intl, dark, bottom, className, handleSwitch, switched, } = props; const formattedLabel = intl.formatMessage(switched ? intlMessages.switchButtonShrink : intlMessages.switchButtonExpand); const wrapperClassName = cx({ [styles.wrapper]: true, [styles.dark]: dark, [styles.light]: !dark, [styles.top]: !bottom, [styles.bottom]: bottom, }); return (