2021-02-23 05:17:41 -05:00
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import classNames from 'classnames'
|
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
|
|
|
|
function TrackChangesToggleButton({ trackChangesIsOpen, disabled, onClick }) {
|
|
|
|
const { t } = useTranslation()
|
|
|
|
const classes = classNames('btn', 'btn-full-height', {
|
|
|
|
active: trackChangesIsOpen && !disabled,
|
2021-04-27 03:52:58 -04:00
|
|
|
disabled: disabled,
|
2021-02-23 05:17:41 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
return (
|
|
|
|
// eslint-disable-next-line jsx-a11y/anchor-is-valid
|
|
|
|
<a
|
|
|
|
role="button"
|
|
|
|
disabled={disabled}
|
|
|
|
className={classes}
|
|
|
|
href="#"
|
|
|
|
onClick={onClick}
|
|
|
|
>
|
|
|
|
<i className="review-icon" />
|
|
|
|
<p className="toolbar-label">{t('review')}</p>
|
|
|
|
</a>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
TrackChangesToggleButton.propTypes = {
|
|
|
|
trackChangesIsOpen: PropTypes.bool,
|
|
|
|
disabled: PropTypes.bool,
|
2021-04-27 03:52:58 -04:00
|
|
|
onClick: PropTypes.func.isRequired,
|
2021-02-23 05:17:41 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
export default TrackChangesToggleButton
|