mirror of https://github.com/docusealco/docuseal
				
				
				
			
							parent
							
								
									dc02964d9b
								
							
						
					
					
						commit
						ee350324e5
					
				| @ -0,0 +1,245 @@ | |||||||
|  | <template> | ||||||
|  |   <div> | ||||||
|  |     <div class="flex justify-between items-center w-full mb-2"> | ||||||
|  |       <label | ||||||
|  |         class="label text-2xl" | ||||||
|  |       >{{ field.name || t('initials') }}</label> | ||||||
|  |       <div class="space-x-2 flex"> | ||||||
|  |         <span | ||||||
|  |           class="tooltip" | ||||||
|  |           :data-tip="t('draw_initials')" | ||||||
|  |         > | ||||||
|  |           <button | ||||||
|  |             id="type_text_button" | ||||||
|  |             class="btn btn-sm btn-circle" | ||||||
|  |             :class="{ 'btn-neutral': isDrawInitials, 'btn-outline': !isDrawInitials }" | ||||||
|  |             @click.prevent="toggleTextInput" | ||||||
|  |           > | ||||||
|  |             <IconSignature :width="16" /> | ||||||
|  |           </button> | ||||||
|  |         </span> | ||||||
|  |         <button | ||||||
|  |           v-if="modelValue" | ||||||
|  |           class="btn btn-outline btn-sm" | ||||||
|  |           @click.prevent="remove" | ||||||
|  |         > | ||||||
|  |           <IconReload :width="16" /> | ||||||
|  |           {{ t('clear') }} | ||||||
|  |         </button> | ||||||
|  |         <button | ||||||
|  |           v-else | ||||||
|  |           class="btn btn-outline btn-sm" | ||||||
|  |           @click.prevent="clear" | ||||||
|  |         > | ||||||
|  |           <IconReload :width="16" /> | ||||||
|  |           {{ t('clear') }} | ||||||
|  |         </button> | ||||||
|  |         <button | ||||||
|  |           title="Minimize" | ||||||
|  |           class="py-1.5 inline md:hidden" | ||||||
|  |           @click.prevent="$emit('minimize')" | ||||||
|  |         > | ||||||
|  |           <IconArrowsDiagonalMinimize2 | ||||||
|  |             :width="20" | ||||||
|  |             :height="20" | ||||||
|  |           /> | ||||||
|  |         </button> | ||||||
|  |       </div> | ||||||
|  |     </div> | ||||||
|  |     <input | ||||||
|  |       :value="modelValue" | ||||||
|  |       type="hidden" | ||||||
|  |       :name="`values[${field.uuid}]`" | ||||||
|  |     > | ||||||
|  |     <img | ||||||
|  |       v-if="modelValue" | ||||||
|  |       :src="attachmentsIndex[modelValue].url" | ||||||
|  |       class="mx-auto bg-white border border-base-300 rounded max-h-72" | ||||||
|  |     > | ||||||
|  |     <canvas | ||||||
|  |       v-show="!modelValue" | ||||||
|  |       ref="canvas" | ||||||
|  |       class="bg-white border border-base-300 rounded" | ||||||
|  |     /> | ||||||
|  |     <input | ||||||
|  |       v-if="!isDrawInitials" | ||||||
|  |       id="initials_text_input" | ||||||
|  |       ref="textInput" | ||||||
|  |       class="base-input !text-2xl w-full mt-6 text-center" | ||||||
|  |       :required="field.required && !isInitialsStarted" | ||||||
|  |       :placeholder="`${t('type_initial_here')}...`" | ||||||
|  |       type="text" | ||||||
|  |       @focus="$emit('focus')" | ||||||
|  |       @input="updateWrittenInitials" | ||||||
|  |     > | ||||||
|  |   </div> | ||||||
|  | </template> | ||||||
|  | 
 | ||||||
|  | <script> | ||||||
|  | import SignatureStep from './signature_step' | ||||||
|  | import { IconReload, IconSignature, IconArrowsDiagonalMinimize2 } from '@tabler/icons-vue' | ||||||
|  | 
 | ||||||
|  | export default { | ||||||
|  |   name: 'InitialsStep', | ||||||
|  |   components: { | ||||||
|  |     IconReload, | ||||||
|  |     IconSignature, | ||||||
|  |     IconArrowsDiagonalMinimize2 | ||||||
|  |   }, | ||||||
|  |   inject: ['baseUrl', 't'], | ||||||
|  |   props: { | ||||||
|  |     field: { | ||||||
|  |       type: Object, | ||||||
|  |       required: true | ||||||
|  |     }, | ||||||
|  |     submitterSlug: { | ||||||
|  |       type: String, | ||||||
|  |       required: true | ||||||
|  |     }, | ||||||
|  |     isDirectUpload: { | ||||||
|  |       type: Boolean, | ||||||
|  |       required: true, | ||||||
|  |       default: false | ||||||
|  |     }, | ||||||
|  |     attachmentsIndex: { | ||||||
|  |       type: Object, | ||||||
|  |       required: false, | ||||||
|  |       default: () => ({}) | ||||||
|  |     }, | ||||||
|  |     modelValue: { | ||||||
|  |       type: String, | ||||||
|  |       required: false, | ||||||
|  |       default: '' | ||||||
|  |     } | ||||||
|  |   }, | ||||||
|  |   emits: ['attached', 'update:model-value', 'start', 'minimize', 'focus'], | ||||||
|  |   data () { | ||||||
|  |     return { | ||||||
|  |       isInitialsStarted: false, | ||||||
|  |       isDrawInitials: false | ||||||
|  |     } | ||||||
|  |   }, | ||||||
|  |   async mounted () { | ||||||
|  |     this.$nextTick(() => { | ||||||
|  |       if (this.$refs.canvas) { | ||||||
|  |         this.$refs.canvas.width = this.$refs.canvas.parentNode.clientWidth | ||||||
|  |         this.$refs.canvas.height = this.$refs.canvas.parentNode.clientWidth / 5 | ||||||
|  |       } | ||||||
|  | 
 | ||||||
|  |       this.$refs.textInput?.focus() | ||||||
|  |     }) | ||||||
|  | 
 | ||||||
|  |     if (this.isDirectUpload) { | ||||||
|  |       import('@rails/activestorage') | ||||||
|  |     } | ||||||
|  | 
 | ||||||
|  |     const { default: SignaturePad } = await import('signature_pad') | ||||||
|  | 
 | ||||||
|  |     if (this.$refs.canvas) { | ||||||
|  |       this.pad = new SignaturePad(this.$refs.canvas) | ||||||
|  | 
 | ||||||
|  |       this.pad.addEventListener('beginStroke', () => { | ||||||
|  |         this.isInitialsStarted = true | ||||||
|  | 
 | ||||||
|  |         this.$emit('start') | ||||||
|  |       }) | ||||||
|  |     } | ||||||
|  |   }, | ||||||
|  |   methods: { | ||||||
|  |     cropCanvasAndExportToPNG: SignatureStep.methods.cropCanvasAndExportToPNG, | ||||||
|  |     remove () { | ||||||
|  |       this.$emit('update:model-value', '') | ||||||
|  |     }, | ||||||
|  |     clear () { | ||||||
|  |       this.pad.clear() | ||||||
|  | 
 | ||||||
|  |       this.isInitialsStarted = false | ||||||
|  | 
 | ||||||
|  |       if (this.$refs.textInput) { | ||||||
|  |         this.$refs.textInput.value = '' | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     updateWrittenInitials (e) { | ||||||
|  |       this.isInitialsStarted = true | ||||||
|  | 
 | ||||||
|  |       const canvas = this.$refs.canvas | ||||||
|  |       const context = canvas.getContext('2d') | ||||||
|  | 
 | ||||||
|  |       const fontFamily = 'Arial' | ||||||
|  |       const fontSize = '44px' | ||||||
|  |       const fontStyle = 'italic' | ||||||
|  |       const fontWeight = '' | ||||||
|  | 
 | ||||||
|  |       context.font = fontStyle + ' ' + fontWeight + ' ' + fontSize + ' ' + fontFamily | ||||||
|  |       context.textAlign = 'center' | ||||||
|  | 
 | ||||||
|  |       context.clearRect(0, 0, canvas.width, canvas.height) | ||||||
|  |       context.fillText(e.target.value, canvas.width / 2, canvas.height / 2 + 11) | ||||||
|  |     }, | ||||||
|  |     toggleTextInput () { | ||||||
|  |       this.remove() | ||||||
|  |       this.clear() | ||||||
|  |       this.isDrawInitials = !this.isDrawInitials | ||||||
|  | 
 | ||||||
|  |       if (!this.isDrawInitials) { | ||||||
|  |         this.$nextTick(() => { | ||||||
|  |           this.$refs.textInput.focus() | ||||||
|  | 
 | ||||||
|  |           this.$emit('start') | ||||||
|  |         }) | ||||||
|  |       } | ||||||
|  |     }, | ||||||
|  |     async submit () { | ||||||
|  |       if (this.modelValue) { | ||||||
|  |         return Promise.resolve({}) | ||||||
|  |       } | ||||||
|  | 
 | ||||||
|  |       return new Promise((resolve) => { | ||||||
|  |         this.cropCanvasAndExportToPNG(this.$refs.canvas).then(async (blob) => { | ||||||
|  |           const file = new File([blob], 'initials.png', { type: 'image/png' }) | ||||||
|  | 
 | ||||||
|  |           if (this.isDirectUpload) { | ||||||
|  |             const { DirectUpload } = await import('@rails/activestorage') | ||||||
|  | 
 | ||||||
|  |             new DirectUpload( | ||||||
|  |               file, | ||||||
|  |               '/direct_uploads' | ||||||
|  |             ).create((_error, data) => { | ||||||
|  |               fetch(this.baseUrl + '/api/attachments', { | ||||||
|  |                 method: 'POST', | ||||||
|  |                 body: JSON.stringify({ | ||||||
|  |                   submitter_slug: this.submitterSlug, | ||||||
|  |                   blob_signed_id: data.signed_id, | ||||||
|  |                   name: 'attachments' | ||||||
|  |                 }), | ||||||
|  |                 headers: { 'Content-Type': 'application/json' } | ||||||
|  |               }).then((resp) => resp.json()).then((attachment) => { | ||||||
|  |                 this.$emit('update:model-value', attachment.uuid) | ||||||
|  |                 this.$emit('attached', attachment) | ||||||
|  | 
 | ||||||
|  |                 return resolve(attachment) | ||||||
|  |               }) | ||||||
|  |             }) | ||||||
|  |           } else { | ||||||
|  |             const formData = new FormData() | ||||||
|  | 
 | ||||||
|  |             formData.append('file', file) | ||||||
|  |             formData.append('submitter_slug', this.submitterSlug) | ||||||
|  |             formData.append('name', 'attachments') | ||||||
|  | 
 | ||||||
|  |             return fetch(this.baseUrl + '/api/attachments', { | ||||||
|  |               method: 'POST', | ||||||
|  |               body: formData | ||||||
|  |             }).then((resp) => resp.json()).then((attachment) => { | ||||||
|  |               this.$emit('attached', attachment) | ||||||
|  |               this.$emit('update:model-value', attachment.uuid) | ||||||
|  | 
 | ||||||
|  |               return resolve(attachment) | ||||||
|  |             }) | ||||||
|  |           } | ||||||
|  |         }) | ||||||
|  |       }) | ||||||
|  |     } | ||||||
|  |   } | ||||||
|  | } | ||||||
|  | </script> | ||||||
					Loading…
					
					
				
		Reference in new issue