fix: opt in to import.meta.* properties (#364)

This commit is contained in:
Daniel Roe
2024-03-28 16:59:41 +00:00
committed by GitHub
parent 2191f46214
commit d9996e0d9d
25 changed files with 40 additions and 40 deletions

View File

@@ -152,7 +152,7 @@ export default {
computed: {
isEmbedPopup () {
return process.client && window.location.href.includes('popup=true')
return import.meta.client && window.location.href.includes('popup=true')
},
theme () {
return this.themes[this.themes.hasOwnProperty(this.form.theme) ? this.form.theme : 'default']
@@ -161,7 +161,7 @@ export default {
return this.$route.name === 'forms-slug'
},
isHideTitle () {
return this.form.hide_title || (process.client && window.location.href.includes('hide_title=true'))
return this.form.hide_title || (import.meta.client && window.location.href.includes('hide_title=true'))
}
},

View File

@@ -267,7 +267,7 @@ export default {
mounted () {
this.initForm()
if (process.client && window.location.href.includes('auto_submit=true')) {
if (import.meta.client && window.location.href.includes('auto_submit=true')) {
this.isAutoSubmit = true
this.submitForm()
}
@@ -279,7 +279,7 @@ export default {
return
}
if (this.form.use_captcha && process.client) {
if (this.form.use_captcha && import.meta.client) {
this.dataForm['h-captcha-response'] = document.getElementsByName('h-captcha-response')[0].value
this.$refs.hcaptcha.reset()
}
@@ -311,7 +311,7 @@ export default {
}
// Scroll to error
if (process.server) return
if (import.meta.server) return
const elements = document.getElementsByClassName('has-error')
if (elements.length > 0) {
window.scroll({

View File

@@ -37,7 +37,7 @@ const props = defineProps({
})
const copyToClipboard = () => {
if (process.server) return
if (import.meta.server) return
copy(props.content)
if(props.isDraft){
useAlert().warning('Copied! But other people won\'t be able to see the form since it\'s currently in draft mode')

View File

@@ -145,7 +145,7 @@ export default {
},
computed: {
parentPage() {
if (process.server) {
if (import.meta.server) {
return null
}
return window
@@ -261,7 +261,7 @@ export default {
this.properties = columns
},
onChangeDisplayColumns() {
if (!process.client) return
if (!import.meta.client) return
window.localStorage.setItem('display-columns-formid-' + this.form.id, JSON.stringify(this.displayColumns))
this.properties = clonedeep(this.form.properties).concat(this.removed_properties).filter((field) => {
return this.displayColumns[field.id] === true

View File

@@ -59,7 +59,7 @@ const preFillUrl = computed(() => {
})
const copyToClipboard = () => {
if (process.server) return
if (import.meta.server) return
copy(preFillUrl.value)
useAlert().success('Copied!')
}

View File

@@ -32,7 +32,7 @@ export default {
methods: {
mouseDownHandler(e) {
if (process.server) return
if (import.meta.server) return
// Get the current mouse position
this.x = e.clientX