allow to draw signature on mobile
This commit is contained in:
@@ -0,0 +1,113 @@
|
||||
import SignaturePad from 'signature_pad'
|
||||
import { cropCanvasAndExportToPNG } from './submission_form/crop_canvas'
|
||||
|
||||
window.customElements.define('signature-form', class extends HTMLElement {
|
||||
connectedCallback () {
|
||||
const scale = 3
|
||||
|
||||
this.canvas.width = this.canvas.parentNode.clientWidth * scale
|
||||
this.canvas.height = this.canvas.parentNode.clientHeight * scale
|
||||
|
||||
this.canvas.getContext('2d').scale(scale, scale)
|
||||
|
||||
this.pad = new SignaturePad(this.canvas)
|
||||
|
||||
this.pad.addEventListener('endStroke', () => {
|
||||
this.updateSubmitButtonVisibility()
|
||||
})
|
||||
|
||||
this.clearButton.addEventListener('click', (e) => {
|
||||
e.preventDefault()
|
||||
|
||||
this.clearSignaturePad()
|
||||
})
|
||||
|
||||
this.form.addEventListener('submit', (e) => {
|
||||
e.preventDefault()
|
||||
|
||||
this.submitButton.disabled = true
|
||||
|
||||
this.submitImage().then((data) => {
|
||||
this.valueInput.value = data.uuid
|
||||
|
||||
return fetch(this.form.action, {
|
||||
method: 'PUT',
|
||||
body: new FormData(this.form)
|
||||
}).then((response) => {
|
||||
this.form.classList.add('hidden')
|
||||
this.success.classList.remove('hidden')
|
||||
|
||||
return response
|
||||
})
|
||||
}).finally(() => {
|
||||
this.submitButton.disabled = false
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
clearSignaturePad () {
|
||||
this.pad.clear()
|
||||
this.updateSubmitButtonVisibility()
|
||||
}
|
||||
|
||||
updateSubmitButtonVisibility () {
|
||||
if (this.pad.isEmpty()) {
|
||||
this.submitButton.style.display = 'none'
|
||||
this.placeholderButton.style.display = 'block'
|
||||
} else {
|
||||
this.submitButton.style.display = 'block'
|
||||
this.placeholderButton.style.display = 'none'
|
||||
}
|
||||
}
|
||||
|
||||
async submitImage () {
|
||||
return new Promise((resolve, reject) => {
|
||||
cropCanvasAndExportToPNG(this.canvas, { errorOnTooSmall: true }).then(async (blob) => {
|
||||
const file = new File([blob], 'signature.png', { type: 'image/png' })
|
||||
|
||||
const formData = new FormData()
|
||||
|
||||
formData.append('file', file)
|
||||
formData.append('submitter_slug', this.dataset.slug)
|
||||
formData.append('name', 'attachments')
|
||||
|
||||
return fetch('/api/attachments', {
|
||||
method: 'POST',
|
||||
body: formData
|
||||
}).then((resp) => resp.json()).then((attachment) => {
|
||||
return resolve(attachment)
|
||||
})
|
||||
}).catch((error) => {
|
||||
return reject(error)
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
get submitButton () {
|
||||
return this.querySelector('button[type="submit"]')
|
||||
}
|
||||
|
||||
get clearButton () {
|
||||
return this.querySelector('button[aria-label="Clear"]')
|
||||
}
|
||||
|
||||
get placeholderButton () {
|
||||
return this.querySelector('button[disabled]')
|
||||
}
|
||||
|
||||
get canvas () {
|
||||
return this.querySelector('canvas')
|
||||
}
|
||||
|
||||
get valueInput () {
|
||||
return this.querySelector('input[name^="values"]')
|
||||
}
|
||||
|
||||
get form () {
|
||||
return this.querySelector('form')
|
||||
}
|
||||
|
||||
get success () {
|
||||
return this.querySelector('#success')
|
||||
}
|
||||
})
|
||||
@@ -24,6 +24,7 @@ safeRegisterElement('submission-form', class extends HTMLElement {
|
||||
authenticityToken: document.querySelector('meta[name="csrf-token"]')?.content,
|
||||
values: reactive(JSON.parse(this.dataset.values)),
|
||||
completedButton: JSON.parse(this.dataset.completedButton || '{}'),
|
||||
withQrButton: true,
|
||||
completedMessage: JSON.parse(this.dataset.completedMessage || '{}'),
|
||||
completedRedirectUrl: this.dataset.completedRedirectUrl,
|
||||
attachments: reactive(JSON.parse(this.dataset.attachments)),
|
||||
|
||||
@@ -326,6 +326,7 @@
|
||||
:attachments-index="attachmentsIndex"
|
||||
:button-text="buttonText"
|
||||
:with-disclosure="withDisclosure"
|
||||
:with-qr-button="withQrButton"
|
||||
:submitter-slug="submitterSlug"
|
||||
:show-field-names="showFieldNames"
|
||||
@attached="attachments.push($event)"
|
||||
@@ -384,7 +385,7 @@
|
||||
</div>
|
||||
<div
|
||||
v-if="currentField.type !== 'payment' || submittedValues[currentField.uuid]"
|
||||
:class="withDisclosure && currentField.type === 'signature' ? 'mt-2' : 'mt-6 md:mt-8'"
|
||||
:class="currentField.type === 'signature' ? 'mt-2' : 'mt-6 md:mt-8'"
|
||||
>
|
||||
<button
|
||||
id="submit_form_button"
|
||||
@@ -578,6 +579,11 @@ export default {
|
||||
required: false,
|
||||
default: true
|
||||
},
|
||||
withQrButton: {
|
||||
type: Boolean,
|
||||
required: false,
|
||||
default: false
|
||||
},
|
||||
withTypedSignature: {
|
||||
type: Boolean,
|
||||
required: false,
|
||||
|
||||
@@ -5,6 +5,8 @@ const en = {
|
||||
esignature_disclosure: 'eSignature Disclosure',
|
||||
signature: 'Signature',
|
||||
initials: 'Initials',
|
||||
drawn_signature_on_a_touchscreen_device: 'Drawn signature on a touchscreen device',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Scan the QR code with the camera app to open the form on mobile and draw your signature',
|
||||
date: 'Date',
|
||||
number: 'Number',
|
||||
image: 'Image',
|
||||
@@ -68,6 +70,8 @@ const en = {
|
||||
}
|
||||
|
||||
const es = {
|
||||
drawn_signature_on_a_touchscreen_device: 'Firma dibujada en un dispositivo con pantalla táctil',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Escanea el código QR con la aplicación de la cámara para abrir el formulario en el móvil y dibujar tu firma',
|
||||
by_clicking_you_agree_to_the: 'Al hacer clic en "{button}", usted acepta el',
|
||||
electronic_signature_disclosure: 'Divulgación de Firma Electrónica',
|
||||
esignature_disclosure: 'Divulgación de eFirma',
|
||||
@@ -136,6 +140,8 @@ const es = {
|
||||
}
|
||||
|
||||
const it = {
|
||||
drawn_signature_on_a_touchscreen_device: 'Firma disegnata su un dispositivo con schermo tattile',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Scansiona il codice QR con l\'app della fotocamera per aprire il modulo sul cellulare e disegnare la tua firma',
|
||||
by_clicking_you_agree_to_the: 'Cliccando su "{button}", accetti il',
|
||||
electronic_signature_disclosure: 'Divulgazione della Firma Elettronica',
|
||||
esignature_disclosure: 'Divulgazione della eFirma',
|
||||
@@ -204,6 +210,8 @@ const it = {
|
||||
}
|
||||
|
||||
const de = {
|
||||
drawn_signature_on_a_touchscreen_device: 'Gezeichnete Unterschrift auf einem Touchscreen-Gerät',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Scannen Sie den QR-Code mit der Kamera-App, um das Formular auf dem Handy zu öffnen und Ihre Unterschrift zu zeichnen',
|
||||
by_clicking_you_agree_to_the: 'Durch Klicken auf "{button}" stimmen Sie zu, dass Sie die',
|
||||
electronic_signature_disclosure: 'Elektronische Unterschriftenoffenlegung',
|
||||
esignature_disclosure: 'eSignatur Offenlegung',
|
||||
@@ -272,6 +280,8 @@ const de = {
|
||||
}
|
||||
|
||||
const fr = {
|
||||
drawn_signature_on_a_touchscreen_device: 'Signature dessinée sur un appareil à écran tactile',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Scannez le code QR avec l\'application de l\'appareil photo pour ouvrir le formulaire sur mobile et dessiner votre signature',
|
||||
by_clicking_you_agree_to_the: 'En cliquant sur "{button}", vous acceptez la',
|
||||
electronic_signature_disclosure: 'Divulgation de Signature Électronique',
|
||||
esignature_disclosure: 'Divulgation de la eSignature',
|
||||
@@ -340,6 +350,8 @@ const fr = {
|
||||
}
|
||||
|
||||
const pl = {
|
||||
drawn_signature_on_a_touchscreen_device: 'Podpis odręczny na urządzeniu z ekranem dotykowym',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Zeskanuj kod QR za pomocą aplikacji aparatu, aby otworzyć formularz na telefonie i narysować swój podpis',
|
||||
by_clicking_you_agree_to_the: 'Klikając na "{button}", zgadzasz się na',
|
||||
electronic_signature_disclosure: 'Ujawnienie Elektronicznej Sygnatury',
|
||||
esignature_disclosure: 'Ujawnienie ePodpisu',
|
||||
@@ -408,6 +420,8 @@ const pl = {
|
||||
}
|
||||
|
||||
const uk = {
|
||||
drawn_signature_on_a_touchscreen_device: 'Підпис на сенсорному пристрої',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Скануйте QR-код за допомогою програми камери, щоб відкрити форму на мобільному пристрої та намалювати свій підпис',
|
||||
by_clicking_you_agree_to_the: 'Натиснувши на "{button}", ви погоджуєтеся з',
|
||||
electronic_signature_disclosure: 'Розголошення Електронного Підпису',
|
||||
esignature_disclosure: 'Розголошення еПідпису',
|
||||
@@ -476,6 +490,8 @@ const uk = {
|
||||
}
|
||||
|
||||
const cs = {
|
||||
drawn_signature_on_a_touchscreen_device: 'Namalovaný podpis na dotykovém zařízení',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Naskenujte QR kód pomocí aplikace fotoaparátu, abyste otevřeli formulář na mobilním zařízení a nakreslili svůj podpis',
|
||||
by_clicking_you_agree_to_the: 'Kliknutím na "{button}" souhlasíte s',
|
||||
electronic_signature_disclosure: 'Zveřejněním Elektronického Podpisu',
|
||||
esignature_disclosure: 'Zveřejnění ePodpisu',
|
||||
@@ -544,6 +560,8 @@ const cs = {
|
||||
}
|
||||
|
||||
const pt = {
|
||||
drawn_signature_on_a_touchscreen_device: 'Assinatura desenhada em um dispositivo com tela sensível ao toque',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Escaneie o código QR com o aplicativo da câmera para abrir o formulário no celular e desenhar sua assinatura',
|
||||
by_clicking_you_agree_to_the: 'Ao clicar em "{button}", você concorda com o',
|
||||
electronic_signature_disclosure: 'Divulgação de Assinatura Eletrônica',
|
||||
esignature_disclosure: 'Divulgação da eAssinatura',
|
||||
@@ -612,6 +630,8 @@ const pt = {
|
||||
}
|
||||
|
||||
const he = {
|
||||
drawn_signature_on_a_touchscreen_device: 'חתימה שנוצרה במכשיר עם מסך מגע',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'סרוק את קוד ה-QR באמצעות אפליקציית המצלמה כדי לפתוח את הטופס במובייל ולצייר את החתימה שלך',
|
||||
by_clicking_you_agree_to_the: 'על ידי לחיצה על "{button}", אתה מסכים ל',
|
||||
electronic_signature_disclosure: 'חשיפת חתימה אלקטרונית',
|
||||
esignature_disclosure: 'חשיפת ה-eחתימה',
|
||||
@@ -681,6 +701,8 @@ const he = {
|
||||
}
|
||||
|
||||
const nl = {
|
||||
drawn_signature_on_a_touchscreen_device: 'Getekende handtekening op een apparaat met een touchscreen',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'Scan de QR-code met de camera-app om het formulier op mobiel te openen en uw handtekening te tekenen',
|
||||
by_clicking_you_agree_to_the: 'Door op "{button}" te klikken, gaat u akkoord met de',
|
||||
electronic_signature_disclosure: 'Openbaarmaking van Elektronische Handtekening',
|
||||
esignature_disclosure: 'Openbaarmaking van eHandtekening',
|
||||
@@ -750,6 +772,8 @@ const nl = {
|
||||
}
|
||||
|
||||
const ar = {
|
||||
drawn_signature_on_a_touchscreen_device: 'توقيع مرسوم على جهاز بشاشة تعمل باللمس',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: 'امسح رمز الاستجابة السريعة باستخدام تطبيق الكاميرا لفتح النموذج على الهاتف المحمول ورسم توقيعك',
|
||||
by_clicking_you_agree_to_the: 'بالنقر فوق "{button}"، أنت توافق على',
|
||||
electronic_signature_disclosure: 'كشف التوقيع الإلكتروني',
|
||||
esignature_disclosure: 'كشف التوقيع الإلكتروني',
|
||||
@@ -819,6 +843,8 @@ const ar = {
|
||||
}
|
||||
|
||||
const ko = {
|
||||
drawn_signature_on_a_touchscreen_device: '터치스크린 장치에서 그린 서명',
|
||||
scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature: '카메라 앱으로 QR 코드를 스캔하여 모바일에서 양식을 열고 서명을 그리세요',
|
||||
by_clicking_you_agree_to_the: '"{button}"를 클릭함으로써, 다음에 동의하게 됩니다',
|
||||
electronic_signature_disclosure: '전자 서명 공개',
|
||||
esignature_disclosure: '전자 서명 공개',
|
||||
|
||||
@@ -28,7 +28,7 @@
|
||||
id="type_text_button"
|
||||
href="#"
|
||||
class="btn btn-outline btn-sm font-medium"
|
||||
@click.prevent="toggleTextInput"
|
||||
@click.prevent="[toggleTextInput(), showQr()]"
|
||||
>
|
||||
<IconSignature :width="16" />
|
||||
<span class="hidden sm:inline">
|
||||
@@ -87,7 +87,7 @@
|
||||
v-else
|
||||
href="#"
|
||||
class="btn btn-outline btn-sm font-medium"
|
||||
@click.prevent="clear"
|
||||
@click.prevent="[clear(), hideQr()]"
|
||||
>
|
||||
<IconReload :width="16" />
|
||||
{{ t('clear') }}
|
||||
@@ -123,12 +123,56 @@
|
||||
:src="attachmentsIndex[modelValue || computedPreviousValue].url"
|
||||
class="mx-auto bg-white border border-base-300 rounded max-h-72"
|
||||
>
|
||||
<canvas
|
||||
v-show="!modelValue && !computedPreviousValue"
|
||||
ref="canvas"
|
||||
style="padding: 1px; 0"
|
||||
class="bg-white border border-base-300 rounded-2xl w-full"
|
||||
/>
|
||||
<div class="relative">
|
||||
<div
|
||||
v-if="withQrButton"
|
||||
class="absolute top-1.5 right-1.5 tooltip hidden md:inline"
|
||||
:data-tip="t('drawn_signature_on_a_touchscreen_device')"
|
||||
>
|
||||
<a
|
||||
v-if="!isShowQr && !isSignatureStarted && !isTextSignature && !modelValue"
|
||||
href="#"
|
||||
class="btn btn-sm btn-circle btn-ghost"
|
||||
@click.prevent="showQr"
|
||||
>
|
||||
<IconQrcode />
|
||||
</a>
|
||||
</div>
|
||||
<canvas
|
||||
v-show="!modelValue && !computedPreviousValue"
|
||||
ref="canvas"
|
||||
style="padding: 1px; 0"
|
||||
class="bg-white border border-base-300 rounded-2xl w-full"
|
||||
/>
|
||||
<div
|
||||
v-show="isShowQr"
|
||||
class="top-0 bottom-0 right-0 left-0 absolute bg-base-content/10 rounded-2xl"
|
||||
>
|
||||
<div
|
||||
class="absolute top-1.5 right-1.5 tooltip"
|
||||
>
|
||||
<a
|
||||
href="#"
|
||||
class="btn btn-sm btn-circle btn-normal btn-outline"
|
||||
@click.prevent="hideQr"
|
||||
>
|
||||
<IconX />
|
||||
</a>
|
||||
</div>
|
||||
<div class="flex items-center justify-center w-full h-full p-4">
|
||||
<div
|
||||
v-if="withQrButton"
|
||||
ref="qr"
|
||||
class="bg-white p-4 rounded-xl h-full"
|
||||
>
|
||||
<canvas
|
||||
ref="qrCanvas"
|
||||
class="h-full"
|
||||
/>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<input
|
||||
v-if="isTextSignature"
|
||||
id="signature_text_input"
|
||||
@@ -140,7 +184,14 @@
|
||||
@input="updateWrittenSignature"
|
||||
>
|
||||
<div
|
||||
v-if="withDisclosure"
|
||||
v-if="isShowQr"
|
||||
dir="auto"
|
||||
class="text-base-content/60 text-xs text-center w-full mt-1"
|
||||
>
|
||||
{{ t('scan_the_qr_code_with_the_camera_app_to_open_the_form_on_mobile_and_draw_your_signature') }}
|
||||
</div>
|
||||
<div
|
||||
v-else-if="withDisclosure"
|
||||
dir="auto"
|
||||
class="text-base-content/60 text-xs text-center w-full mt-1"
|
||||
>
|
||||
@@ -156,11 +207,15 @@
|
||||
</span>
|
||||
</a>
|
||||
</div>
|
||||
<div
|
||||
v-else
|
||||
class="mt-5 md:mt-7"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import { IconReload, IconCamera, IconSignature, IconTextSize, IconArrowsDiagonalMinimize2 } from '@tabler/icons-vue'
|
||||
import { IconReload, IconCamera, IconSignature, IconTextSize, IconArrowsDiagonalMinimize2, IconQrcode, IconX } from '@tabler/icons-vue'
|
||||
import { cropCanvasAndExportToPNG } from './crop_canvas'
|
||||
import SignaturePad from 'signature_pad'
|
||||
import AppearsOn from './appears_on'
|
||||
@@ -176,7 +231,9 @@ export default {
|
||||
AppearsOn,
|
||||
IconReload,
|
||||
IconCamera,
|
||||
IconQrcode,
|
||||
MarkdownContent,
|
||||
IconX,
|
||||
IconTextSize,
|
||||
IconSignature,
|
||||
IconArrowsDiagonalMinimize2
|
||||
@@ -201,6 +258,11 @@ export default {
|
||||
required: false,
|
||||
default: false
|
||||
},
|
||||
withQrButton: {
|
||||
type: Boolean,
|
||||
required: false,
|
||||
default: false
|
||||
},
|
||||
buttonText: {
|
||||
type: String,
|
||||
required: false,
|
||||
@@ -231,6 +293,7 @@ export default {
|
||||
data () {
|
||||
return {
|
||||
isSignatureStarted: !!this.previousValue,
|
||||
isShowQr: false,
|
||||
isUsePreviousValue: true,
|
||||
isTextSignature: this.field.preferences?.format === 'typed',
|
||||
uploadImageInputKey: Math.random().toString()
|
||||
@@ -253,6 +316,18 @@ export default {
|
||||
|
||||
this.$refs.canvas.getContext('2d').scale(scale, scale)
|
||||
}
|
||||
|
||||
if (this.withQrButton) {
|
||||
import('qr-creator').then(({ default: Qr }) => {
|
||||
Qr.render({
|
||||
text: `${document.location.origin}/p/${this.submitterSlug}?f=${this.field.uuid.split('-')[0]}`,
|
||||
radius: 0.0,
|
||||
ecLevel: 'H',
|
||||
background: null,
|
||||
size: 132
|
||||
}, this.$refs.qrCanvas)
|
||||
})
|
||||
}
|
||||
})
|
||||
|
||||
if (this.$refs.canvas) {
|
||||
@@ -282,6 +357,7 @@ export default {
|
||||
},
|
||||
beforeUnmount () {
|
||||
this.intersectionObserver?.disconnect()
|
||||
this.stopCheckSignature()
|
||||
},
|
||||
methods: {
|
||||
remove () {
|
||||
@@ -303,6 +379,41 @@ export default {
|
||||
})
|
||||
}
|
||||
},
|
||||
showQr () {
|
||||
this.isShowQr = true
|
||||
|
||||
this.startCheckSignature()
|
||||
},
|
||||
hideQr () {
|
||||
this.isShowQr = false
|
||||
|
||||
this.stopCheckSignature()
|
||||
},
|
||||
startCheckSignature () {
|
||||
const after = JSON.stringify(new Date())
|
||||
|
||||
this.checkSignatureInterval = setInterval(() => {
|
||||
this.checkSignature({ after })
|
||||
}, 2000)
|
||||
},
|
||||
stopCheckSignature () {
|
||||
if (this.checkSignatureInterval) {
|
||||
clearInterval(this.checkSignatureInterval)
|
||||
}
|
||||
},
|
||||
checkSignature (params = {}) {
|
||||
return fetch(this.baseUrl + '/s/' + this.submitterSlug + '/values?field_uuid=' + this.field.uuid + '&after=' + params.after, {
|
||||
method: 'GET'
|
||||
}).then(async (resp) => {
|
||||
const { attachment } = await resp.json()
|
||||
|
||||
if (attachment?.uuid) {
|
||||
this.$emit('attached', attachment)
|
||||
this.$emit('update:model-value', attachment.uuid)
|
||||
this.hideQr()
|
||||
}
|
||||
})
|
||||
},
|
||||
clear () {
|
||||
this.pad.clear()
|
||||
|
||||
|
||||
Reference in New Issue
Block a user