mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
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.
76 lines
1.7 KiB
76 lines
1.7 KiB
<template>
|
|
<div>
|
|
<action-menu
|
|
:items="menuItems"
|
|
:text="$t('dataset.actions')"
|
|
@create="createDialog=true"
|
|
@upload="importDialog=true"
|
|
@download="handleDownload"
|
|
/>
|
|
<v-dialog
|
|
v-model="createDialog"
|
|
width="800"
|
|
>
|
|
<label-creation-form
|
|
:create-label="createLabel"
|
|
:keys="shortkeys"
|
|
@close="createDialog=false"
|
|
/>
|
|
</v-dialog>
|
|
<v-dialog
|
|
v-model="importDialog"
|
|
width="800"
|
|
>
|
|
<label-import-form
|
|
:upload-label="uploadLabel"
|
|
@close="importDialog=false"
|
|
/>
|
|
</v-dialog>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapActions, mapGetters } from 'vuex'
|
|
import ActionMenu from '@/components/molecules/ActionMenu'
|
|
import LabelCreationForm from '@/components/organisms/labels/LabelCreationForm'
|
|
import LabelImportForm from '@/components/organisms/labels/LabelImportForm'
|
|
|
|
export default {
|
|
components: {
|
|
ActionMenu,
|
|
LabelCreationForm,
|
|
LabelImportForm
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
createDialog: false,
|
|
importDialog: false,
|
|
menuItems: [
|
|
{ title: this.$t('labels.createLabel'), icon: 'mdi-pencil', event: 'create' },
|
|
{ title: this.$t('labels.importLabels'), icon: 'mdi-upload', event: 'upload' },
|
|
{ title: this.$t('labels.exportLabels'), icon: 'mdi-download', event: 'download' }
|
|
]
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
...mapGetters('labels', ['shortkeys'])
|
|
},
|
|
|
|
created() {
|
|
this.setCurrentProject(this.$route.params.id)
|
|
},
|
|
|
|
methods: {
|
|
...mapActions('labels', ['createLabel', 'uploadLabel', 'exportLabels']),
|
|
...mapActions('projects', ['setCurrentProject']),
|
|
|
|
handleDownload() {
|
|
this.exportLabels({
|
|
projectId: this.$route.params.id
|
|
})
|
|
}
|
|
}
|
|
}
|
|
</script>
|