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.
227 lines
5.8 KiB
227 lines
5.8 KiB
<template>
|
|
<v-data-table
|
|
:value="value"
|
|
:headers="headers"
|
|
:items="items"
|
|
:options.sync="options"
|
|
:server-items-length="total"
|
|
:search="search"
|
|
:loading="isLoading"
|
|
:loading-text="$t('generic.loading')"
|
|
:no-data-text="$t('vuetify.noDataAvailable')"
|
|
:footer-props="{
|
|
showFirstLastPage: true,
|
|
'items-per-page-options': [10, 50, 100],
|
|
'items-per-page-text': $t('vuetify.itemsPerPageText'),
|
|
'page-text': $t('dataset.pageText')
|
|
}"
|
|
item-key="id"
|
|
show-select
|
|
@input="$emit('input', $event)"
|
|
>
|
|
<template #top>
|
|
<v-text-field
|
|
v-model="search"
|
|
:prepend-inner-icon="mdiMagnify"
|
|
:label="$t('generic.search') + ' (e.g. label:positive)'"
|
|
single-line
|
|
hide-details
|
|
filled
|
|
/>
|
|
</template>
|
|
<template #[`item.isConfirmed`]="{ item }">
|
|
<v-chip :color="item.isConfirmed ? 'success' : 'warning'" text small>
|
|
{{ item.isConfirmed ? 'Finished' : 'In progress' }}
|
|
</v-chip>
|
|
</template>
|
|
<template #[`item.url`]="{ item }">
|
|
<audio controls :src="item.url" class="mt-2">
|
|
Your browser does not support the
|
|
<code>audio</code> element.
|
|
</audio>
|
|
</template>
|
|
<template #[`item.meta`]="{ item }">
|
|
{{ JSON.stringify(item.meta, null, 4) }}
|
|
</template>
|
|
<template #[`item.assignee`]="{ item }">
|
|
<v-combobox
|
|
:value="toSelected(item)"
|
|
:items="members"
|
|
item-text="username"
|
|
no-data-text="No one"
|
|
multiple
|
|
chips
|
|
dense
|
|
flat
|
|
hide-selected
|
|
hide-details
|
|
small-chips
|
|
solo
|
|
style="width: 200px"
|
|
@change="onAssignOrUnassign(item, $event)"
|
|
>
|
|
<template #selection="{ attrs, item, parent, selected }">
|
|
<v-chip v-bind="attrs" :input-value="selected" small class="mt-1 mb-1">
|
|
<span class="pr-1">{{ item.username }}</span>
|
|
<v-icon small @click="parent.selectItem(item)"> $delete </v-icon>
|
|
</v-chip>
|
|
</template>
|
|
</v-combobox>
|
|
</template>
|
|
<template #[`item.action`]="{ item }">
|
|
<v-btn small color="primary text-capitalize" @click="toLabeling(item)">
|
|
{{ $t('dataset.annotate') }}
|
|
</v-btn>
|
|
</template>
|
|
</v-data-table>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { mdiMagnify } from '@mdi/js'
|
|
import type { PropType } from 'vue'
|
|
import Vue from 'vue'
|
|
import { DataOptions } from 'vuetify/types'
|
|
import { ExampleDTO } from '~/services/application/example/exampleData'
|
|
import { MemberItem } from '~/domain/models/member/member'
|
|
|
|
export default Vue.extend({
|
|
props: {
|
|
isLoading: {
|
|
type: Boolean,
|
|
default: false,
|
|
required: true
|
|
},
|
|
items: {
|
|
type: Array as PropType<ExampleDTO[]>,
|
|
default: () => [],
|
|
required: true
|
|
},
|
|
value: {
|
|
type: Array as PropType<ExampleDTO[]>,
|
|
default: () => [],
|
|
required: true
|
|
},
|
|
total: {
|
|
type: Number,
|
|
default: 0,
|
|
required: true
|
|
},
|
|
members: {
|
|
type: Array as PropType<MemberItem[]>,
|
|
default: () => [],
|
|
required: true
|
|
},
|
|
isAdmin: {
|
|
type: Boolean,
|
|
default: false
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
search: this.$route.query.q,
|
|
options: {} as DataOptions,
|
|
mdiMagnify
|
|
}
|
|
},
|
|
|
|
computed: {
|
|
headers() {
|
|
const headers = [
|
|
{
|
|
text: 'Status',
|
|
value: 'isConfirmed',
|
|
sortable: false
|
|
},
|
|
{
|
|
text: 'Audio',
|
|
value: 'url',
|
|
sortable: false
|
|
},
|
|
{
|
|
text: 'Filename',
|
|
value: 'filename',
|
|
sortable: false
|
|
},
|
|
{
|
|
text: this.$t('dataset.metadata'),
|
|
value: 'meta',
|
|
sortable: false
|
|
},
|
|
{
|
|
text: this.$t('dataset.action'),
|
|
value: 'action',
|
|
sortable: false
|
|
}
|
|
]
|
|
if (this.isAdmin) {
|
|
headers.splice(4, 0, {
|
|
text: 'Assignee',
|
|
value: 'assignee',
|
|
sortable: false
|
|
})
|
|
}
|
|
return headers
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
options: {
|
|
handler() {
|
|
this.$emit('update:query', {
|
|
query: {
|
|
limit: this.options.itemsPerPage.toString(),
|
|
offset: ((this.options.page - 1) * this.options.itemsPerPage).toString(),
|
|
q: this.search
|
|
}
|
|
})
|
|
},
|
|
deep: true
|
|
},
|
|
search() {
|
|
this.$emit('update:query', {
|
|
query: {
|
|
limit: this.options.itemsPerPage.toString(),
|
|
offset: '0',
|
|
q: this.search
|
|
}
|
|
})
|
|
this.options.page = 1
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
toLabeling(item: ExampleDTO) {
|
|
const index = this.items.indexOf(item)
|
|
const offset = (this.options.page - 1) * this.options.itemsPerPage
|
|
const page = (offset + index + 1).toString()
|
|
this.$emit('click:labeling', { page, q: this.search })
|
|
},
|
|
|
|
toSelected(item: ExampleDTO) {
|
|
const assigneeIds = item.assignments.map((assignment) => assignment.assignee_id)
|
|
return this.members.filter((member) => assigneeIds.includes(member.user))
|
|
},
|
|
|
|
onAssignOrUnassign(item: ExampleDTO, newAssignees: MemberItem[]) {
|
|
const newAssigneeIds = newAssignees.map((assignee) => assignee.user)
|
|
const oldAssigneeIds = item.assignments.map((assignment) => assignment.assignee_id)
|
|
if (oldAssigneeIds.length > newAssigneeIds.length) {
|
|
// unassign
|
|
for (const assignment of item.assignments) {
|
|
if (!newAssigneeIds.includes(assignment.assignee_id)) {
|
|
this.$emit('unassign', assignment.id)
|
|
}
|
|
}
|
|
} else {
|
|
// assign
|
|
for (const newAssigneeId of newAssigneeIds) {
|
|
if (!oldAssigneeIds.includes(newAssigneeId)) {
|
|
this.$emit('assign', item.id, newAssigneeId)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
})
|
|
</script>
|