2022-07-20 10:01:48 -04:00
|
|
|
import { useTranslation } from 'react-i18next'
|
|
|
|
import { Button } from 'react-bootstrap'
|
|
|
|
import Icon from '../../../shared/components/icon'
|
|
|
|
import { useLayoutContext } from '../../../shared/context/layout-context'
|
|
|
|
|
|
|
|
function SwitchToEditorButton() {
|
|
|
|
const { pdfLayout, setView, detachRole } = useLayoutContext()
|
|
|
|
|
|
|
|
const { t } = useTranslation()
|
|
|
|
|
|
|
|
if (detachRole) {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
if (pdfLayout === 'sideBySide') {
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
function handleClick() {
|
|
|
|
setView('editor')
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<Button
|
2022-12-07 05:51:18 -05:00
|
|
|
bsStyle={null}
|
2022-07-20 10:01:48 -04:00
|
|
|
bsSize="xs"
|
|
|
|
onClick={handleClick}
|
2022-12-07 05:51:18 -05:00
|
|
|
className="switch-to-editor-btn btn-secondary"
|
2022-07-20 10:01:48 -04:00
|
|
|
>
|
|
|
|
<Icon type="code" className="me-1" />
|
|
|
|
{t('switch_to_editor')}
|
|
|
|
</Button>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
export default SwitchToEditorButton
|