-
-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3c34f8e
commit b126a62
Showing
1 changed file
with
44 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,56 @@ | ||
<template> | ||
<PanelItem :index="index" :field="field"> | ||
<template #value> | ||
<vue-qr | ||
class="qr-item" | ||
:text="field.value" | ||
:size="field.detailSize" | ||
:bgSrc="field.background" | ||
:logoSrc="field.logo" | ||
:margin="field.margin" | ||
></vue-qr> | ||
<div ref="qrContainer" class="qr-item"></div> | ||
<p class="flex items-center text-sm mt-3"> | ||
<a @click="downloadQrCode" dusk="qr-download-link" tabindex="0" class="cursor-pointer text-gray-500 inline-flex items-center"> | ||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" width="16" height="16" class="inline-block mr-2" role="presentation"> | ||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"></path> | ||
</svg> | ||
<span class="class mt-1">Download</span> | ||
</a> | ||
</p> | ||
</template> | ||
</PanelItem> | ||
</template> | ||
|
||
<script> | ||
import VueQr from 'vue-qr/src/packages/vue-qr.vue' | ||
import { AwesomeQR } from 'awesome-qr'; | ||
export default { | ||
props: ['index', 'resource', 'resourceName', 'resourceId', 'field'], | ||
components: { | ||
VueQr | ||
} | ||
} | ||
</script> | ||
mounted() { | ||
this.generateQRCode(); | ||
}, | ||
methods: { | ||
async generateQRCode() { | ||
const qrCode = new AwesomeQR({ | ||
text: this.field.value, | ||
size: this.field.detailSize, | ||
margin: this.field.detailSize > 250 ? this.field.margin : 1, | ||
backgroundImage: this.field.background || null, | ||
logoImage: this.field.logo || null, | ||
logoMargin: this.field.detailSize > 250 ? 10 : 0, | ||
}); | ||
<style> | ||
.qr-item img { | ||
border: solid thin #ddd; | ||
padding: 5px; | ||
const qrCodeImage = await qrCode.draw(); | ||
this.$refs.qrContainer.innerHTML = `<img src="${qrCodeImage}" alt="${this.field.value}" />`; | ||
}, | ||
async downloadQrCode() { | ||
const qrCode = new AwesomeQR({ | ||
text: this.field.value, | ||
size: this.field.detailSize || 400, | ||
margin: this.field.margin || 0, | ||
backgroundImage: this.field.background || null, | ||
logoImage: this.field.logo || null, | ||
}); | ||
const qrCodeImage = await qrCode.draw(); | ||
const link = document.createElement('a'); | ||
link.href = qrCodeImage; | ||
link.download = `${this.field.value || 'qr_code'}.png`; | ||
link.click(); | ||
} | ||
} | ||
} | ||
</style> | ||
</script> |