1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- {{define "qrcodeModal"}}
- <a-modal id="qrcode-modal" v-model="qrModal.visible" :title="qrModal.title"
- :closable="true" width="300px" :ok-text="qrModal.okText"
- :class="siderDrawer.isDarkTheme ? darkClass : ''"
- cancel-text='{{ i18n "close" }}' :ok-button-props="{attrs:{id:'qr-modal-ok-btn'}}">
- <a-tag color="green" style="margin-bottom: 10px;display: block;text-align: center;" >{{ i18n "pages.inbounds.clickOnQRcode" }}</a-tag>
- <canvas @click="copyToClipboard()" id="qrCode" style="width: 100%; height: 100%;"></canvas>
- </a-modal>
- <script>
- const qrModal = {
- title: '',
- content: '',
- inbound: new Inbound(),
- dbInbound: new DBInbound(),
- okText: '',
- copyText: '',
- qrcode: null,
- clipboard: null,
- visible: false,
- show: function (title='', content='', dbInbound=new DBInbound(),okText='{{ i18n "copy" }}', copyText='') {
- this.title = title;
- this.content = content;
- this.dbInbound = dbInbound;
- this.inbound = dbInbound.toInbound();
- this.okText = okText;
- if (ObjectUtil.isEmpty(copyText)) {
- this.copyText = content;
- } else {
- this.copyText = copyText;
- }
- this.visible = true;
- qrModalApp.$nextTick(() => {
- this.clipboard = new ClipboardJS('#qr-modal-ok-btn', {
- text: () => this.copyText,
- });
- this.clipboard.on('success', () => {
- app.$message.success('{{ i18n "copied" }}')
- this.clipboard.destroy();
- });
- if (this.qrcode === null) {
- this.qrcode = new QRious({
- element: document.querySelector('#qrCode'),
- size: 260,
- value: content,
- });
- } else {
- this.qrcode.value = content;
- }
- });
- },
- close: function () {
- this.visible = false;
- },
- };
- const qrModalApp = new Vue({
- el: '#qrcode-modal',
- data: {
- qrModal: qrModal,
- },
- methods: {
- copyToClipboard() {
- this.qrModal.clipboard = new ClipboardJS('#qrCode', {
- text: () => this.qrModal.copyText,
- });
- this.qrModal.clipboard.on('success', () => {
- app.$message.success('{{ i18n "copied" }}')
- this.qrModal.clipboard.destroy();
- });
- }
- },
- });
- </script>
- {{end}}
|