fix js errors

pull/289/head
Alex Turchyn 1 year ago committed by Pete Matsyburka
parent c56f8cb38f
commit 7080e8ea33

@ -4,7 +4,9 @@ class TemplateDocumentsController < ApplicationController
load_and_authorize_resource :template load_and_authorize_resource :template
def create def create
return head :unprocessable_entity if params[:blobs].blank? && params[:files].blank? if params[:blobs].blank? && params[:files].blank?
return render json: { error: 'File is missing' }, status: :unprocessable_entity
end
old_fields_hash = @template.fields.hash old_fields_hash = @template.fields.hash

@ -17,7 +17,9 @@ export default targetable(class extends HTMLElement {
this.toggleState() this.toggleState()
fetch(this.dataset.src).then((response) => response.json()).then((urls) => { fetch(this.dataset.src).then(async (response) => {
if (response.ok) {
const urls = await response.json()
const isSafariIos = /iPhone|iPad|iPod/i.test(navigator.userAgent) const isSafariIos = /iPhone|iPad|iPod/i.test(navigator.userAgent)
if (isSafariIos && urls.length > 1) { if (isSafariIos && urls.length > 1) {
@ -25,6 +27,9 @@ export default targetable(class extends HTMLElement {
} else { } else {
this.downloadUrls(urls) this.downloadUrls(urls)
} }
} else {
alert('Failed to download files')
}
}) })
} }

@ -197,7 +197,9 @@ export default {
download () { download () {
this.isDownloading = true this.isDownloading = true
fetch(this.baseUrl + `/submitters/${this.submitterSlug}/download`).then((response) => response.json()).then((urls) => { fetch(this.baseUrl + `/submitters/${this.submitterSlug}/download`).then(async (response) => {
if (response.ok) {
const urls = await response.json()
const isSafariIos = /iPhone|iPad|iPod/i.test(navigator.userAgent) const isSafariIos = /iPhone|iPad|iPod/i.test(navigator.userAgent)
if (isSafariIos && urls.length > 1) { if (isSafariIos && urls.length > 1) {
@ -205,6 +207,9 @@ export default {
} else { } else {
this.downloadUrls(urls) this.downloadUrls(urls)
} }
} else {
alert('Failed to download files')
}
}) })
}, },
downloadUrls (urls) { downloadUrls (urls) {

@ -972,6 +972,7 @@ export default {
this.$nextTick(() => { this.$nextTick(() => {
this.recalculateButtonDisabledKey = Math.random() this.recalculateButtonDisabledKey = Math.random()
if (!this.isCompleted) {
if (scrollToArea) { if (scrollToArea) {
this.scrollIntoField(step[0]) this.scrollIntoField(step[0])
@ -981,6 +982,7 @@ export default {
if (clickUpload && !this.values[this.currentField.uuid] && ['file', 'image'].includes(this.currentField.type)) { if (clickUpload && !this.values[this.currentField.uuid] && ['file', 'image'].includes(this.currentField.type)) {
this.$refs.form.querySelector('input[type="file"]')?.click() this.$refs.form.querySelector('input[type="file"]')?.click()
} }
}
}) })
}, },
saveStep (formData) { saveStep (formData) {

Loading…
Cancel
Save