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.
96 lines
2.3 KiB
96 lines
2.3 KiB
<template lang="pug">
|
|
extends ../annotation.pug
|
|
|
|
block annotation-area
|
|
div
|
|
div.card.has-text-weight-bold.has-text-white.has-background-royalblue
|
|
div.card-content
|
|
div.content(v-if="docs[pageNumber]") {{ docs[pageNumber].text }}
|
|
|
|
section.todoapp
|
|
header.header
|
|
input.textarea.new-todo(
|
|
v-model="newTodo"
|
|
v-on:keyup.enter="addTodo"
|
|
type="text"
|
|
placeholder="What is your response?"
|
|
)
|
|
section.main(v-cloak="")
|
|
ul.todo-list
|
|
li.todo(
|
|
v-for="todo in annotations[pageNumber]"
|
|
v-bind:key="todo.id"
|
|
v-bind:class="{ \
|
|
editing: todo == editedTodo \
|
|
}"
|
|
)
|
|
div.view
|
|
label(v-on:dblclick="editTodo(todo)") {{ todo.text }}
|
|
button.delete.destroy.is-large(v-on:click="removeTodo(todo)")
|
|
|
|
input.textarea.edit(
|
|
v-model="todo.text"
|
|
v-todo-focus="todo == editedTodo"
|
|
v-on:blur="doneEdit(todo)"
|
|
v-on:keyup.enter="doneEdit(todo)"
|
|
v-on:keyup.esc="cancelEdit(todo)"
|
|
type="text"
|
|
)
|
|
</template>
|
|
|
|
<script>
|
|
import annotationMixin from './demo_mixin';
|
|
import todoFocus from '../directives';
|
|
import { demoTranslation } from './demo_data';
|
|
|
|
export default {
|
|
directives: { todoFocus },
|
|
|
|
mixins: [annotationMixin],
|
|
|
|
data: () => ({ ...demoTranslation }),
|
|
|
|
methods: {
|
|
addTodo() {
|
|
const value = this.newTodo && this.newTodo.trim();
|
|
if (!value) {
|
|
return;
|
|
}
|
|
|
|
const payload = {
|
|
text: value,
|
|
id: this.annotationId++,
|
|
};
|
|
this.annotations[this.pageNumber].push(payload);
|
|
|
|
this.newTodo = '';
|
|
},
|
|
|
|
removeTodo(todo) {
|
|
const index = this.annotations[this.pageNumber].indexOf(todo);
|
|
this.annotations[this.pageNumber].splice(index, 1);
|
|
},
|
|
|
|
editTodo(todo) {
|
|
this.beforeEditCache = todo.text;
|
|
this.editedTodo = todo;
|
|
},
|
|
|
|
doneEdit(todo) {
|
|
if (!this.editedTodo) {
|
|
return;
|
|
}
|
|
this.editedTodo = null;
|
|
todo.text = todo.text.trim();
|
|
if (!todo.text) {
|
|
this.removeTodo(todo);
|
|
}
|
|
},
|
|
|
|
cancelEdit(todo) {
|
|
this.editedTodo = null;
|
|
todo.text = this.beforeEditCache;
|
|
},
|
|
},
|
|
};
|
|
</script>
|