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.
146 lines
3.5 KiB
146 lines
3.5 KiB
<template>
|
|
<v-data-table
|
|
:value="selected"
|
|
:headers="headers"
|
|
:items="items"
|
|
item-key="id"
|
|
:options.sync="options"
|
|
:server-items-length="total"
|
|
:search="search"
|
|
:loading="loading"
|
|
:footer-props="{
|
|
'items-per-page-options': [10, 50, 100]
|
|
}"
|
|
loading-text="Loading... Please wait"
|
|
show-select
|
|
@input="updateSelected"
|
|
>
|
|
<template v-slot:top>
|
|
<v-text-field
|
|
v-model="search"
|
|
prepend-inner-icon="search"
|
|
label="Search"
|
|
single-line
|
|
hide-details
|
|
filled
|
|
/>
|
|
</template>
|
|
<template v-slot:item.text="{ item }">
|
|
<v-edit-dialog>
|
|
<span class="d-flex d-sm-none">{{ item.text | truncate(50) }}</span>
|
|
<span class="d-none d-sm-flex">{{ item.text | truncate(200) }}</span>
|
|
<template v-slot:input>
|
|
<v-textarea
|
|
:value="item.text"
|
|
label="Edit"
|
|
autofocus
|
|
@change="handleUpdateDocument({ id: item.id, text: $event })"
|
|
/>
|
|
</template>
|
|
</v-edit-dialog>
|
|
</template>
|
|
<template v-slot:item.action="{ item }">
|
|
<v-btn
|
|
small
|
|
color="primary text-capitalize"
|
|
@click="goToAnnotationPage(item)"
|
|
>
|
|
Annotate
|
|
</v-btn>
|
|
</template>
|
|
</v-data-table>
|
|
</template>
|
|
|
|
<script>
|
|
import { mapState, mapActions, mapMutations, mapGetters } from 'vuex'
|
|
|
|
export default {
|
|
data() {
|
|
return {
|
|
search: '',
|
|
options: {},
|
|
headers: [
|
|
{
|
|
text: 'Text',
|
|
align: 'left',
|
|
value: 'text',
|
|
sortable: false
|
|
},
|
|
{
|
|
text: 'Metadata',
|
|
align: 'left',
|
|
value: 'meta',
|
|
sortable: false
|
|
},
|
|
{
|
|
text: 'Action',
|
|
align: 'left',
|
|
value: 'action',
|
|
sortable: false
|
|
}
|
|
]
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
...mapState('documents', ['items', 'selected', 'loading', 'total']),
|
|
...mapGetters('projects', ['getLink'])
|
|
},
|
|
|
|
watch: {
|
|
options: {
|
|
handler() {
|
|
this.updateSearchOptions({
|
|
limit: this.options.itemsPerPage,
|
|
offset: (this.options.page - 1) * this.options.itemsPerPage
|
|
})
|
|
this.getDocumentList({
|
|
projectId: this.$route.params.id
|
|
})
|
|
},
|
|
deep: true
|
|
},
|
|
search() {
|
|
this.updateSearchOptions({
|
|
q: this.search
|
|
})
|
|
this.getDocumentList({
|
|
projectId: this.$route.params.id
|
|
})
|
|
}
|
|
},
|
|
|
|
created() {
|
|
this.initSearchOptions()
|
|
this.getDocumentList({
|
|
projectId: this.$route.params.id
|
|
})
|
|
},
|
|
|
|
methods: {
|
|
...mapActions('documents', ['getDocumentList', 'updateDocument']),
|
|
...mapMutations('documents', ['updateSelected', 'updateSearchOptions', 'setCurrent', 'initSearchOptions']),
|
|
|
|
handleUpdateDocument(payload) {
|
|
const data = {
|
|
projectId: this.$route.params.id,
|
|
...payload
|
|
}
|
|
this.updateDocument(data)
|
|
},
|
|
|
|
goToAnnotationPage(doc) {
|
|
const index = this.items.findIndex(item => item.id === doc.id)
|
|
const limit = this.options.itemsPerPage
|
|
const offset = (this.options.page - 1) * limit
|
|
const q = this.search
|
|
this.updateSearchOptions({ limit, offset, q })
|
|
this.$router.push('/projects/' + this.$route.params.id + '/' + this.getLink)
|
|
this.setCurrent(index)
|
|
const checkpoint = {}
|
|
checkpoint[this.$route.params.id] = index + 1
|
|
localStorage.setItem('checkpoint', JSON.stringify(checkpoint))
|
|
}
|
|
}
|
|
}
|
|
</script>
|