adjust page preview

This commit is contained in:
Pete Matsyburka
2026-04-24 21:44:57 +03:00
parent 3b040d558d
commit 39407557f2
6 changed files with 17 additions and 4 deletions
+1
View File
@@ -181,6 +181,7 @@ safeRegisterElement('template-builder', class extends HTMLElement {
withConditions: this.dataset.withConditions === 'true',
withDynamicDocuments: this.dataset.withDynamicDocuments === 'true',
withGoogleDrive: this.dataset.withGoogleDrive === 'true',
pagePreviewFormat: this.dataset.pagePreviewFormat || '.jpg',
withReplaceAndCloneUpload: true,
withDownload: true,
currencies: (this.dataset.currencies || '').split(',').filter(Boolean),
@@ -383,6 +383,7 @@
:input-mode="inputMode"
:conditional-field-index="conditionalFieldIndex"
:formula-values-index="formulaValuesIndex"
:page-preview-format="pagePreviewFormat"
:default-fields="[...defaultRequiredFields, ...defaultFields]"
:allow-draw="!onlyDefinedFields || drawField || drawCustomField"
:with-signature-id="withSignatureId"
@@ -839,6 +840,11 @@ export default {
required: false,
default: () => []
},
pagePreviewFormat: {
type: String,
required: false,
default: '.jpg'
},
acceptFileTypes: {
type: String,
required: false,
+6 -1
View File
@@ -150,6 +150,11 @@ export default {
required: false,
default: false
},
pagePreviewFormat: {
type: String,
required: false,
default: '.jpg'
},
withFieldsDetection: {
type: Boolean,
required: false,
@@ -180,7 +185,7 @@ export default {
return this.previewImagesIndex[i] || reactive({
metadata: { ...lazyloadMetadata },
id: Math.random().toString(),
url: this.basePreviewUrl + `/preview/${this.document.signed_key || this.document.signed_uuid || this.document.uuid}/${i}.jpg`
url: this.basePreviewUrl + `/preview/${this.document.signed_key || this.document.signed_uuid || this.document.uuid}/${i}${this.pagePreviewFormat}`
})
})
},