mirror of https://github.com/doccano/doccano.git
pythonannotation-tooldatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learning
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.
254 lines
5.9 KiB
254 lines
5.9 KiB
<template>
|
|
<v-card>
|
|
<v-tabs v-if="hasMultiType" v-model="tab">
|
|
<v-tab class="text-capitalize">Category</v-tab>
|
|
<v-tab class="text-capitalize">Span</v-tab>
|
|
</v-tabs>
|
|
<v-card-title>
|
|
<action-menu
|
|
@create="dialogCreate=true"
|
|
@upload="dialogUpload=true"
|
|
@download="download"
|
|
/>
|
|
<v-btn
|
|
class="text-capitalize ms-2"
|
|
:disabled="!canDelete"
|
|
outlined
|
|
@click.stop="dialogDelete=true"
|
|
>
|
|
{{ $t('generic.delete') }}
|
|
</v-btn>
|
|
<v-dialog v-model="dialogCreate">
|
|
<form-create
|
|
v-bind.sync="editedItem"
|
|
:used-keys="usedKeys"
|
|
:used-names="usedNames"
|
|
@cancel="close"
|
|
@save="save"
|
|
/>
|
|
</v-dialog>
|
|
<v-dialog v-model="dialogUpload">
|
|
<form-upload
|
|
:error-message="errorMessage"
|
|
@cancel="closeUpload"
|
|
@clear="clearErrorMessage"
|
|
@upload="upload"
|
|
/>
|
|
</v-dialog>
|
|
<v-dialog v-model="dialogDelete">
|
|
<form-delete
|
|
:selected="selected"
|
|
@cancel="dialogDelete=false"
|
|
@remove="remove"
|
|
/>
|
|
</v-dialog>
|
|
</v-card-title>
|
|
<label-list
|
|
v-model="selected"
|
|
:items="items"
|
|
:is-loading="isLoading"
|
|
@edit="editItem"
|
|
/>
|
|
</v-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
import ActionMenu from '@/components/label/ActionMenu.vue'
|
|
import FormCreate from '@/components/label/FormCreate.vue'
|
|
import FormDelete from '@/components/label/FormDelete.vue'
|
|
import FormUpload from '@/components/label/FormUpload.vue'
|
|
import LabelList from '@/components/label/LabelList.vue'
|
|
import { LabelDTO } from '~/services/application/label/labelData'
|
|
import { ProjectDTO } from '~/services/application/project/projectData'
|
|
|
|
export default Vue.extend({
|
|
|
|
components: {
|
|
ActionMenu,
|
|
FormCreate,
|
|
FormDelete,
|
|
FormUpload,
|
|
LabelList
|
|
},
|
|
layout: 'project',
|
|
|
|
validate({ params, app }) {
|
|
if (/^\d+$/.test(params.id)) {
|
|
return app.$services.project.findById(params.id)
|
|
.then((res:ProjectDTO) => {
|
|
return res.canDefineLabel
|
|
})
|
|
}
|
|
return false
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
dialogCreate: false,
|
|
dialogDelete: false,
|
|
dialogUpload: false,
|
|
editedIndex: -1,
|
|
editedItem: {
|
|
text: '',
|
|
prefixKey: null,
|
|
suffixKey: null,
|
|
backgroundColor: '#2196F3',
|
|
textColor: '#ffffff'
|
|
} as LabelDTO,
|
|
defaultItem: {
|
|
text: '',
|
|
prefixKey: null,
|
|
suffixKey: null,
|
|
backgroundColor: '#2196F3',
|
|
textColor: '#ffffff'
|
|
} as LabelDTO,
|
|
items: [] as LabelDTO[],
|
|
selected: [] as LabelDTO[],
|
|
isLoading: false,
|
|
errorMessage: '',
|
|
tab: null,
|
|
project: {} as ProjectDTO,
|
|
}
|
|
},
|
|
|
|
// async fetch() {
|
|
// this.items = []
|
|
// this.isLoading = true
|
|
// console.log('start fetch')
|
|
// this.items = await this.service.list(this.projectId)
|
|
// console.log('end fetch')
|
|
// this.isLoading = false
|
|
// },
|
|
|
|
computed: {
|
|
canDelete(): boolean {
|
|
return this.selected.length > 0
|
|
},
|
|
projectId(): string {
|
|
return this.$route.params.id
|
|
},
|
|
usedNames(): string[] {
|
|
const item = this.items[this.editedIndex] // to remove myself
|
|
return this.items.filter(_ => _ !== item).map(item => item.text)
|
|
},
|
|
usedKeys(): string[] {
|
|
const item = this.items[this.editedIndex] // to remove myself
|
|
return this.items.filter(_ => _ !== item).map(item => item.suffixKey)
|
|
.filter(item => item !==null) as string[]
|
|
},
|
|
hasMultiType(): boolean {
|
|
if ('projectType' in this.project) {
|
|
return this.project.projectType === 'IntentDetectionAndSlotFilling'
|
|
} else {
|
|
return false
|
|
}
|
|
},
|
|
|
|
service(): any {
|
|
if (!('projectType' in this.project)) {
|
|
return
|
|
}
|
|
if (this.hasMultiType) {
|
|
if (this.tab === 0) {
|
|
return this.$services.categoryType
|
|
} else {
|
|
return this.$services.spanType
|
|
}
|
|
} else if (this.project.projectType.endsWith('Classification')) {
|
|
return this.$services.categoryType
|
|
} else {
|
|
return this.$services.spanType
|
|
}
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
tab() {
|
|
this.list()
|
|
}
|
|
},
|
|
|
|
async created() {
|
|
this.project = await this.$services.project.findById(this.projectId)
|
|
this.list()
|
|
},
|
|
|
|
methods: {
|
|
async list() {
|
|
this.items = []
|
|
this.isLoading = true
|
|
this.items = await this.service.list(this.projectId)
|
|
this.isLoading = false
|
|
},
|
|
|
|
async create() {
|
|
await this.service.create(this.projectId, this.editedItem)
|
|
},
|
|
|
|
async update() {
|
|
await this.service.update(this.projectId, this.editedItem)
|
|
},
|
|
|
|
async save() {
|
|
if (this.editedIndex > -1) {
|
|
await this.update()
|
|
} else {
|
|
await this.create()
|
|
}
|
|
await this.list()
|
|
this.close()
|
|
},
|
|
|
|
close() {
|
|
this.dialogCreate = false
|
|
this.$nextTick(() => {
|
|
this.editedItem = Object.assign({}, this.defaultItem)
|
|
this.editedIndex = -1
|
|
})
|
|
},
|
|
|
|
async remove() {
|
|
await this.service.bulkDelete(this.projectId, this.selected)
|
|
this.list()
|
|
this.dialogDelete = false
|
|
this.selected = []
|
|
},
|
|
|
|
async download() {
|
|
await this.service.export(this.projectId)
|
|
},
|
|
|
|
async upload(file: File) {
|
|
try {
|
|
await this.service.upload(this.projectId, file)
|
|
this.list()
|
|
this.closeUpload()
|
|
} catch(e) {
|
|
this.errorMessage = e.message
|
|
}
|
|
},
|
|
|
|
closeUpload() {
|
|
this.clearErrorMessage()
|
|
this.dialogUpload = false
|
|
},
|
|
|
|
clearErrorMessage() {
|
|
this.errorMessage = ''
|
|
},
|
|
|
|
editItem(item: LabelDTO) {
|
|
this.editedIndex = this.items.indexOf(item)
|
|
this.editedItem = Object.assign({}, item)
|
|
this.dialogCreate = true
|
|
}
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style scoped>
|
|
::v-deep .v-dialog {
|
|
width: 800px;
|
|
}
|
|
</style>
|