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,
|
2022-05-16 10:25:49 -04:00
|
|
|
disabled,
|
2021-02-23 05:17:41 -05:00
|
|
|
})
|
|
|
|
|
|
|
|
return (
|
2021-11-15 11:33:57 -05:00
|
|
|
<div className="toolbar-item">
|
|
|
|
<button disabled={disabled} className={classes} onClick={onClick}>
|
|
|
|
<i className="review-icon" />
|
|
|
|
<p className="toolbar-label">{t('review')}</p>
|
|
|
|
</button>
|
|
|
|
</div>
|
2021-02-23 05:17:41 -05:00
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|