You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

115 lines
2.3 KiB

<template>
<base-card
:disabled="!valid"
:title="$t('labels.importTitle')"
:agree-text="$t('generic.upload')"
:cancel-text="$t('generic.cancel')"
@agree="create"
@cancel="cancel"
>
<template #content>
<v-form
ref="form"
v-model="valid"
>
<v-alert
v-show="showError"
v-model="showError"
type="error"
dismissible
>
{{ $t('errors.fileCannotUpload') }}
</v-alert>
<h2>{{ $t('labels.importMessage1') }}</h2>
<v-sheet
v-if="exampleFormat"
:dark="!$vuetify.theme.dark"
:light="$vuetify.theme.dark"
class="mb-5 pa-5"
>
<pre>{{ exampleFormat }}</pre>
</v-sheet>
<h2>{{ $t('labels.importMessage2') }}</h2>
<v-file-input
v-model="file"
:rules="uploadFileRules($t('rules.uploadFileRules'))"
accept=".json"
:label="$t('labels.filePlaceholder')"
/>
</v-form>
</template>
</base-card>
</template>
<script>
import BaseCard from '@/components/molecules/BaseCard'
import { uploadFileRules } from '@/rules/index'
export default {
components: {
BaseCard
},
props: {
uploadLabel: {
type: Function,
default: () => {},
required: true
}
},
data() {
return {
valid: false,
file: null,
uploadFileRules,
showError: false
}
},
computed: {
exampleFormat() {
const data = [
{
text: 'Dog',
suffix_key: 'a',
background_color: '#FF0000',
text_color: '#ffffff'
},
{
text: 'Cat',
suffix_key: 'c',
background_color: '#FF0000',
text_color: '#ffffff'
}
]
return JSON.stringify(data, null, 4)
}
},
methods: {
cancel() {
this.$emit('close')
},
validate() {
return this.$refs.form.validate()
},
reset() {
this.$refs.form.reset()
},
create() {
if (this.validate()) {
this.uploadLabel({
projectId: this.$route.params.id,
file: this.file
})
.then((response) => {
this.reset()
this.cancel()
})
.catch(() => {
this.showError = true
})
}
}
}
}
</script>