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.
136 lines
3.3 KiB
136 lines
3.3 KiB
<template>
|
|
<base-card
|
|
:disabled="!valid"
|
|
@agree="create"
|
|
@cancel="cancel"
|
|
title="Add Project"
|
|
agree-text="Create"
|
|
cancel-text="Cancel"
|
|
>
|
|
<template #content>
|
|
<v-form
|
|
ref="form"
|
|
v-model="valid"
|
|
>
|
|
<v-text-field
|
|
v-model="name"
|
|
:rules="projectNameRules"
|
|
label="Project name"
|
|
prepend-icon="mdi-account-multiple"
|
|
data-test="project-name"
|
|
required
|
|
autofocus
|
|
/>
|
|
<v-text-field
|
|
v-model="description"
|
|
:rules="descriptionRules"
|
|
label="Description"
|
|
prepend-icon="mdi-clipboard-text"
|
|
data-test="project-description"
|
|
required
|
|
/>
|
|
<v-select
|
|
v-model="projectType"
|
|
:items="projectTypes"
|
|
:rules="projectTypeRules"
|
|
label="projectType"
|
|
prepend-icon="mdi-keyboard"
|
|
data-test="project-type"
|
|
required
|
|
/>
|
|
<v-checkbox
|
|
v-model="enableRandomizeDocOrder"
|
|
label="Randomize document order"
|
|
/>
|
|
<v-checkbox
|
|
v-model="enableShareAnnotation"
|
|
label="Share annotations across all users"
|
|
/>
|
|
</v-form>
|
|
</template>
|
|
</base-card>
|
|
</template>
|
|
|
|
<script>
|
|
import BaseCard from '@/components/molecules/BaseCard'
|
|
import { projectNameRules, descriptionRules, projectTypeRules } from '@/rules/index'
|
|
|
|
export default {
|
|
components: {
|
|
BaseCard
|
|
},
|
|
props: {
|
|
createProject: {
|
|
type: Function,
|
|
default: () => {},
|
|
required: true
|
|
},
|
|
projectTypes: {
|
|
type: Array,
|
|
default: () => [
|
|
'Text Classification',
|
|
'Sequence Labeling',
|
|
'Sequence to sequence'
|
|
] // Todo: Get project types from backend server.
|
|
}
|
|
},
|
|
data() {
|
|
return {
|
|
valid: false,
|
|
name: '',
|
|
description: '',
|
|
projectType: null,
|
|
enableShareAnnotation: false,
|
|
enableRandomizeDocOrder: false,
|
|
projectNameRules,
|
|
projectTypeRules,
|
|
descriptionRules
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
cancel() {
|
|
this.$emit('close')
|
|
},
|
|
getServerType() {
|
|
if (this.projectType === 'Text Classification') {
|
|
return 'DocumentClassification'
|
|
} else if (this.projectType === 'Sequence Labeling') {
|
|
return 'SequenceLabeling'
|
|
} else if (this.projectType === 'Sequence to sequence') {
|
|
return 'Seq2seq'
|
|
}
|
|
},
|
|
getResourceType() {
|
|
if (this.projectType === 'Text Classification') {
|
|
return 'TextClassificationProject'
|
|
} else if (this.projectType === 'Sequence Labeling') {
|
|
return 'SequenceLabelingProject'
|
|
} else if (this.projectType === 'Sequence to sequence') {
|
|
return 'Seq2seqProject'
|
|
}
|
|
},
|
|
validate() {
|
|
return this.$refs.form.validate()
|
|
},
|
|
reset() {
|
|
this.$refs.form.reset()
|
|
},
|
|
create() {
|
|
if (this.validate()) {
|
|
this.createProject({
|
|
name: this.name,
|
|
description: this.description,
|
|
project_type: this.getServerType(),
|
|
guideline: 'Please write annotation guideline.',
|
|
resourcetype: this.getResourceType(),
|
|
randomize_document_order: this.enableRandomizeDocOrder,
|
|
collaborative_annotation: this.enableShareAnnotation
|
|
})
|
|
this.reset()
|
|
this.cancel()
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</script>
|