overleaf/services/web/frontend/js/features/hotkeys-modal/components/hotkeys-modal.js
Hugh O'Brien d9b369c6c1 Merge pull request #3997 from overleaf/ae-react-translations
Ensure that all strings are translated in React components

GitOrigin-RevId: 855280150a21982fcf0ba57a39002451d37621e8
2021-05-08 02:10:10 +00:00

218 lines
5.5 KiB
JavaScript

import React from 'react'
import { Button, Modal, Row, Col } from 'react-bootstrap'
import PropTypes from 'prop-types'
import { Trans, useTranslation } from 'react-i18next'
import AccessibleModal from '../../../shared/components/accessible-modal'
export default function HotkeysModal({
animation = true,
handleHide,
show,
isMac = false,
trackChangesVisible = false,
}) {
const { t } = useTranslation()
const ctrl = isMac ? 'Cmd' : 'Ctrl'
return (
<AccessibleModal
bsSize="large"
onHide={handleHide}
show={show}
animation={animation}
>
<Modal.Header closeButton>
<Modal.Title>{t('hotkeys')}</Modal.Title>
</Modal.Header>
<Modal.Body className="modal-hotkeys">
<h3>{t('common')}</h3>
<Row>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + F`}
description={t('hotkey_find_and_replace')}
/>
<Hotkey
combination={`${ctrl} + Enter`}
description={t('hotkey_compile')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + Z`}
description={t('hotkey_undo')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + Y`}
description={t('hotkey_redo')}
/>
</Col>
</Row>
<h3>{t('navigation')}</h3>
<Row>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + Home`}
description={t('hotkey_beginning_of_document')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + End`}
description={t('hotkey_end_of_document')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + L`}
description={t('hotkey_go_to_line')}
/>
</Col>
</Row>
<h3>{t('editing')}</h3>
<Row>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + /`}
description={t('hotkey_toggle_comment')}
/>
<Hotkey
combination={`${ctrl} + D`}
description={t('hotkey_delete_current_line')}
/>
<Hotkey
combination={`${ctrl} + A`}
description={t('hotkey_select_all')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + U`}
description={t('hotkey_to_uppercase')}
/>
<Hotkey
combination={`${ctrl} + Shift + U`}
description={t('hotkey_to_lowercase')}
/>
<Hotkey
combination="Tab"
description={t('hotkey_indent_selection')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + B`}
description={t('hotkey_bold_text')}
/>
<Hotkey
combination={`${ctrl} + I`}
description={t('hotkey_italic_text')}
/>
</Col>
</Row>
<h3>{t('autocomplete')}</h3>
<Row>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + Space`}
description={t('hotkey_autocomplete_menu')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination="Tab / Up / Down"
description={t('hotkey_select_candidate')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination="Enter"
description={t('hotkey_insert_candidate')}
/>
</Col>
</Row>
<h3>
<Trans
i18nKey="autocomplete_references"
components={{ code: <code /> }}
/>
</h3>
<Row>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + Space `}
description={t('hotkey_search_references')}
/>
</Col>
</Row>
{trackChangesVisible && (
<>
<h3>{t('review')}</h3>
<Row>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + J`}
description={t('hotkey_toggle_review_panel')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + Shift + A`}
description={t('hotkey_toggle_track_changes')}
/>
</Col>
<Col xs={4}>
<Hotkey
combination={`${ctrl} + Shift + C`}
description={t('hotkey_add_a_comment')}
/>
</Col>
</Row>
</>
)}
</Modal.Body>
<Modal.Footer>
<Button onClick={handleHide}>{t('ok')}</Button>
</Modal.Footer>
</AccessibleModal>
)
}
HotkeysModal.propTypes = {
animation: PropTypes.bool,
isMac: PropTypes.bool,
show: PropTypes.bool.isRequired,
handleHide: PropTypes.func.isRequired,
trackChangesVisible: PropTypes.bool,
}
function Hotkey({ combination, description }) {
return (
<div className="hotkey" data-test-selector="hotkey">
<span className="combination">{combination}</span>
<span className="description">{description}</span>
</div>
)
}
Hotkey.propTypes = {
combination: PropTypes.string.isRequired,
description: PropTypes.string.isRequired,
}