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.
 
 
 
 
 
 

57 lines
1.1 KiB

<template>
<form-import :error-message="errorMessage" @clear="clearErrorMessage" @upload="upload" />
</template>
<script lang="ts">
import Vue from 'vue'
import FormImport from '~/components/label/FormImport.vue'
import { validateItemPage } from '~/plugins/labelType/validators'
export default Vue.extend({
components: {
FormImport
},
layout: 'project',
validate: validateItemPage,
data() {
return {
errorMessage: ''
}
},
computed: {
projectId(): string {
return this.$route.params.id
},
service(): any {
const type = this.$route.query.type
if (type === 'category') {
return this.$services.categoryType
} else if (type === 'span') {
return this.$services.spanType
} else {
return this.$services.relationType
}
}
},
methods: {
async upload(file: File) {
try {
await this.service.upload(this.projectId, file)
this.$router.push(`/projects/${this.projectId}/labels`)
} catch (e) {
this.errorMessage = e.message
}
},
clearErrorMessage() {
this.errorMessage = ''
}
}
})
</script>