1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-07-14 15:35:35 +00:00
seahub/frontend/src/components/btn-qr-code.js

48 lines
1.3 KiB
JavaScript
Raw Normal View History

import React from 'react';
import PropTypes from 'prop-types';
import QRCode from 'qrcode.react';
import { Button, Popover, PopoverBody } from 'reactstrap';
import { gettext } from '../utils/constants';
import '../css/btn-qr-code.css';
const propTypes = {
link: PropTypes.string.isRequired
};
class ButtonQR extends React.Component {
constructor(props) {
super(props);
this.state = {
isPopoverOpen: false
};
2024-07-18 03:58:42 +00:00
this.btnID = 'btn-' + Math.random().toString().substr(2, 5);
}
togglePopover = () => {
this.setState({
isPopoverOpen: !this.state.isPopoverOpen
});
};
render() {
const { link } = this.props;
const { isPopoverOpen } = this.state;
return (
<div className="ml-2">
<Button outline color="primary" className="btn-icon btn-qr-code-icon sf3-font sf3-font-qr-code" id={this.btnID} onClick={this.togglePopover} type="button"></Button>
<Popover placement="bottom" isOpen={isPopoverOpen} target={this.btnID} toggle={this.togglePopover}>
<PopoverBody>
<QRCode value={link} size={128} />
2024-07-18 03:58:42 +00:00
<p className="m-0 mt-1 text-center" style={{ 'maxWidth': '128px' }}>{gettext('Scan the QR code to view the shared content directly')}</p>
</PopoverBody>
</Popover>
</div>
);
}
}
ButtonQR.propTypes = propTypes;
export default ButtonQR;