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.
134 lines
3.5 KiB
134 lines
3.5 KiB
<template>
|
|
<base-card
|
|
:disabled="!valid"
|
|
:title="$t('overview.createProjectTitle')"
|
|
:agree-text="$t('generic.save')"
|
|
:cancel-text="$t('generic.cancel')"
|
|
@agree="$emit('save')"
|
|
@cancel="$emit('cancel')"
|
|
>
|
|
<template #content>
|
|
<v-form v-model="valid">
|
|
<v-text-field
|
|
:value="name"
|
|
:rules="projectNameRules($t('rules.projectNameRules'))"
|
|
:label="$t('overview.projectName')"
|
|
prepend-icon="mdi-account-multiple"
|
|
required
|
|
autofocus
|
|
@input="updateValue('name', $event)"
|
|
/>
|
|
<v-text-field
|
|
:value="description"
|
|
:rules="descriptionRules($t('rules.descriptionRules'))"
|
|
:label="$t('generic.description')"
|
|
prepend-icon="mdi-clipboard-text"
|
|
required
|
|
@input="updateValue('description', $event)"
|
|
/>
|
|
<v-select
|
|
:value="projectType"
|
|
:items="projectTypes"
|
|
:rules="projectTypeRules($t('rules.projectTypeRules'))"
|
|
:label="$t('overview.projectType')"
|
|
prepend-icon="mdi-keyboard"
|
|
required
|
|
@input="updateValue('projectType', $event)"
|
|
>
|
|
<template v-slot:item="props">
|
|
{{ translateTypeName(props.item, $t('overview.projectTypes')) }}
|
|
</template>
|
|
<template v-slot:selection="props">
|
|
{{ translateTypeName(props.item, $t('overview.projectTypes')) }}
|
|
</template>
|
|
</v-select>
|
|
<v-checkbox
|
|
v-if="projectType === 'DocumentClassification'"
|
|
:value="singleClassClassification"
|
|
label="Allow single label"
|
|
@change="updateValue('singleClassClassification', $event === true)"
|
|
/>
|
|
<v-checkbox
|
|
:value="enableRandomizeDocOrder"
|
|
:label="$t('overview.randomizeDocOrder')"
|
|
@change="updateValue('enableRandomizeDocOrder', $event === true)"
|
|
/>
|
|
<v-checkbox
|
|
:value="enableShareAnnotation"
|
|
:label="$t('overview.shareAnnotations')"
|
|
@change="updateValue('enableShareAnnotation', $event === true)"
|
|
/>
|
|
</v-form>
|
|
</template>
|
|
</base-card>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue'
|
|
import BaseCard from '@/components/utils/BaseCard.vue'
|
|
import { projectNameRules, descriptionRules, projectTypeRules } from '@/rules/index'
|
|
|
|
export default Vue.extend({
|
|
components: {
|
|
BaseCard
|
|
},
|
|
|
|
props: {
|
|
name: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
description: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
projectType: {
|
|
type: String,
|
|
default: '',
|
|
required: true
|
|
},
|
|
enableRandomizeDocOrder: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: true
|
|
},
|
|
enableShareAnnotation: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: true
|
|
},
|
|
singleClassClassification: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: true
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
valid: false,
|
|
projectNameRules,
|
|
projectTypeRules,
|
|
descriptionRules
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
projectTypes() {
|
|
return ['DocumentClassification', 'SequenceLabeling', 'Seq2seq']
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
updateValue(key: string, value: string) {
|
|
this.$emit(`update:${key}`, value);
|
|
},
|
|
translateTypeName(type: string, types: string[]): string {
|
|
const index = this.projectTypes.indexOf(type)
|
|
return types[index]
|
|
}
|
|
}
|
|
})
|
|
</script>
|