2021-09-30 07:29:25 -04:00
|
|
|
import { ButtonGroup } from 'react-bootstrap'
|
|
|
|
import PropTypes from 'prop-types'
|
|
|
|
import Button from 'react-bootstrap/lib/Button'
|
|
|
|
import Icon from '../../../shared/components/icon'
|
|
|
|
import { memo } from 'react'
|
|
|
|
|
|
|
|
function PdfViewerControls({ setZoom }) {
|
|
|
|
return (
|
|
|
|
<ButtonGroup>
|
|
|
|
<Button
|
2022-12-16 09:45:20 -05:00
|
|
|
bsStyle={null}
|
|
|
|
className="btn-secondary-info btn-secondary"
|
2021-09-30 07:29:25 -04:00
|
|
|
bsSize="large"
|
|
|
|
onClick={() => setZoom('fit-width')}
|
|
|
|
>
|
|
|
|
<Icon type="arrows-h" />
|
|
|
|
</Button>
|
|
|
|
<Button
|
2022-12-16 09:45:20 -05:00
|
|
|
bsStyle={null}
|
|
|
|
className="btn-secondary-info btn-secondary"
|
2021-09-30 07:29:25 -04:00
|
|
|
bsSize="large"
|
|
|
|
onClick={() => setZoom('fit-height')}
|
|
|
|
>
|
|
|
|
<Icon type="arrows-v" />
|
|
|
|
</Button>
|
2022-12-16 09:45:20 -05:00
|
|
|
<Button
|
|
|
|
bsStyle={null}
|
|
|
|
className="btn-secondary-info btn-secondary"
|
|
|
|
bsSize="large"
|
|
|
|
onClick={() => setZoom('zoom-in')}
|
|
|
|
>
|
2021-09-30 07:29:25 -04:00
|
|
|
<Icon type="search-plus" />
|
|
|
|
</Button>
|
2022-12-16 09:45:20 -05:00
|
|
|
<Button
|
|
|
|
bsStyle={null}
|
|
|
|
className="btn-secondary-info btn-secondary"
|
|
|
|
bsSize="large"
|
|
|
|
onClick={() => setZoom('zoom-out')}
|
|
|
|
>
|
2021-09-30 07:29:25 -04:00
|
|
|
<Icon type="search-minus" />
|
|
|
|
</Button>
|
|
|
|
</ButtonGroup>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
|
|
|
|
PdfViewerControls.propTypes = {
|
|
|
|
setZoom: PropTypes.func.isRequired,
|
|
|
|
}
|
|
|
|
|
|
|
|
export default memo(PdfViewerControls)
|