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.
90 lines
2.7 KiB
90 lines
2.7 KiB
<template lang="pug">
|
|
extends ./annotation.pug
|
|
|
|
block annotation-area
|
|
div.card
|
|
header.card-header
|
|
div.card-header-title.has-background-royalblue
|
|
div.field.is-grouped.is-grouped-multiline
|
|
div.control(v-for="label in labels")
|
|
div.tags.has-addons
|
|
a.tag.is-medium(
|
|
v-shortkey.once="replaceNull(shortcutKey(label))"
|
|
v-bind:style="{ \
|
|
color: label.text_color, \
|
|
backgroundColor: label.background_color \
|
|
}"
|
|
v-on:click="addLabel(label)"
|
|
v-on:shortkey="addLabel(label)"
|
|
) {{ label.text }}
|
|
span.tag.is-medium
|
|
kbd {{ shortcutKey(label) | simpleShortcut }}
|
|
|
|
div.card-content
|
|
div.field.is-grouped.is-grouped-multiline
|
|
div.control(v-for="annotation in annotations[pageNumber]")
|
|
div.tags.has-addons(v-if="id2label[annotation.label]")
|
|
span.tag.is-medium(
|
|
v-bind:style="{ \
|
|
color: id2label[annotation.label].text_color, \
|
|
backgroundColor: id2label[annotation.label].background_color \
|
|
}"
|
|
) {{ id2label[annotation.label].text }}
|
|
button.delete.is-small(v-on:click="removeLabel(annotation)")
|
|
|
|
hr
|
|
div.content
|
|
div.text.scrollable(ref="textbox", v-if="docs[pageNumber]") {{ docs[pageNumber].text }}
|
|
</template>
|
|
|
|
<style scoped>
|
|
hr {
|
|
margin: 0.8rem 0;
|
|
}
|
|
|
|
.card-header-title {
|
|
padding: 1.5rem;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import annotationMixin from './annotationMixin';
|
|
import HTTP from './http';
|
|
import { simpleShortcut } from './filter';
|
|
|
|
export default {
|
|
filters: { simpleShortcut },
|
|
|
|
mixins: [annotationMixin],
|
|
|
|
methods: {
|
|
async submit() {
|
|
const state = this.getState();
|
|
this.url = `docs?q=${this.searchQuery}&doc_annotations__isnull=${state}&offset=${this.offset}&ordering=${this.ordering}`;
|
|
await this.search();
|
|
this.pageNumber = 0;
|
|
},
|
|
|
|
async addLabel(label) {
|
|
const annotations = this.annotations[this.pageNumber];
|
|
const annotation = annotations.find(item => item.label === label.id);
|
|
|
|
if (annotation) {
|
|
this.removeLabel(annotation);
|
|
} else {
|
|
if (this.singleClassClassification && annotations.length >= 1) {
|
|
await Promise.all(annotations.map(item => this.removeLabel(item)));
|
|
}
|
|
|
|
const docId = this.docs[this.pageNumber].id;
|
|
const payload = {
|
|
label: label.id,
|
|
};
|
|
await HTTP.post(`docs/${docId}/annotations`, payload).then((response) => {
|
|
this.annotations[this.pageNumber].push(response.data);
|
|
});
|
|
}
|
|
},
|
|
},
|
|
};
|
|
</script>
|