mirror of https://github.com/doccano/doccano.git
Hironsan
5 years ago
4 changed files with 296 additions and 0 deletions
Split View
Diff Options
-
38frontend/components/containers/TextClassification.vue
-
10frontend/components/molecules/BaseTextArea.vue
-
47frontend/components/organisms/MultiClassClassification.vue
-
201frontend/pages/projects/_id/classification/index.vue
@ -0,0 +1,38 @@ |
|||
<template> |
|||
<base-text-area> |
|||
<template #title> |
|||
<multi-class-classification |
|||
:labels="items" |
|||
/> |
|||
</template> |
|||
<template #content> |
|||
<div class="title"> |
|||
Text area |
|||
</div> |
|||
</template> |
|||
</base-text-area> |
|||
</template> |
|||
|
|||
<script> |
|||
import BaseTextArea from '@/components/molecules/BaseTextArea' |
|||
import MultiClassClassification from '@/components/organisms/MultiClassClassification' |
|||
|
|||
export default { |
|||
components: { |
|||
BaseTextArea, |
|||
MultiClassClassification |
|||
}, |
|||
|
|||
computed: { |
|||
items() { |
|||
return ['foo', 'bar'] |
|||
} |
|||
}, |
|||
|
|||
created() { |
|||
}, |
|||
|
|||
methods: { |
|||
} |
|||
} |
|||
</script> |
@ -0,0 +1,10 @@ |
|||
<template> |
|||
<v-card> |
|||
<v-card-title> |
|||
<slot name="title" /> |
|||
</v-card-title> |
|||
<v-card-text> |
|||
<slot name="content" /> |
|||
</v-card-text> |
|||
</v-card> |
|||
</template> |
@ -0,0 +1,47 @@ |
|||
<template> |
|||
<v-combobox |
|||
v-model="chips" |
|||
:items="labels" |
|||
chips |
|||
clearable |
|||
label="Label" |
|||
multiple |
|||
> |
|||
<template v-slot:selection="{ attrs, item, select, selected }"> |
|||
<v-chip |
|||
v-bind="attrs" |
|||
:input-value="selected" |
|||
close |
|||
@click="select" |
|||
@click:close="remove(item)" |
|||
> |
|||
{{ item }} |
|||
</v-chip> |
|||
</template> |
|||
</v-combobox> |
|||
</template> |
|||
|
|||
<script> |
|||
export default { |
|||
props: { |
|||
labels: { |
|||
type: Array, |
|||
default: () => [], |
|||
required: true |
|||
} |
|||
}, |
|||
|
|||
data() { |
|||
return { |
|||
chips: [] |
|||
} |
|||
}, |
|||
|
|||
methods: { |
|||
remove(item) { |
|||
this.chips.splice(this.chips.indexOf(item), 1) |
|||
this.chips = [...this.chips] |
|||
} |
|||
} |
|||
} |
|||
</script> |
@ -0,0 +1,201 @@ |
|||
<template> |
|||
<div> |
|||
<side-bar-labeling |
|||
:labels="labels" |
|||
:progress="progress" |
|||
:metadata="metadata" |
|||
/> |
|||
<v-content> |
|||
<v-container fluid fill-height> |
|||
<v-layout justify-center> |
|||
<v-flex> |
|||
<text-classification /> |
|||
</v-flex> |
|||
</v-layout> |
|||
</v-container> |
|||
</v-content> |
|||
</div> |
|||
</template> |
|||
|
|||
<script> |
|||
import TextClassification from '~/components/containers/TextClassification' |
|||
import SideBarLabeling from '~/components/organisms/SideBarLabeling' |
|||
|
|||
export default { |
|||
layout: 'annotation', |
|||
components: { |
|||
TextClassification, |
|||
SideBarLabeling |
|||
}, |
|||
data: () => ({ |
|||
progress: 30, |
|||
metadata: '{"wikiPageId":2}', |
|||
search: '', |
|||
content: 'Sony', |
|||
text: |
|||
'Barack Hussein Obama II (born August 4, 1961) is an American attorney and politician who served as the 44th president of the United States from 2009 to 2017. A member of the Democratic Party, he was the first African American to be elected to the presidency. He previously served as a U.S. senator from Illinois from 2005 to 2008 and an Illinois state senator from 1997 to 2004.', |
|||
labelName: 'ORG', |
|||
labels: [ |
|||
{ |
|||
id: 1, |
|||
name: 'Location', |
|||
color: '#E91E63', |
|||
shortcut: 'l' |
|||
}, |
|||
{ |
|||
id: 2, |
|||
name: 'Organization', |
|||
color: '#03A9F4', |
|||
shortcut: 'o' |
|||
}, |
|||
{ |
|||
id: 3, |
|||
name: 'Person', |
|||
color: '#009688', |
|||
shortcut: 'p' |
|||
}, |
|||
{ |
|||
id: 4, |
|||
name: 'Date', |
|||
color: '#FF6F00', |
|||
shortcut: 'd' |
|||
}, |
|||
{ |
|||
id: 5, |
|||
name: 'Other', |
|||
color: '#333333', |
|||
shortcut: 't' |
|||
} |
|||
], |
|||
annotations: [ |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 3, |
|||
start_offset: 0, |
|||
end_offset: 23, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 3, |
|||
prob: 0.0, |
|||
label: 4, |
|||
start_offset: 30, |
|||
end_offset: 44, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 1, |
|||
start_offset: 125, |
|||
end_offset: 138, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 4, |
|||
start_offset: 144, |
|||
end_offset: 148, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 4, |
|||
start_offset: 152, |
|||
end_offset: 156, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 2, |
|||
start_offset: 174, |
|||
end_offset: 190, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 1, |
|||
start_offset: 285, |
|||
end_offset: 289, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 1, |
|||
start_offset: 303, |
|||
end_offset: 311, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 4, |
|||
start_offset: 317, |
|||
end_offset: 321, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 4, |
|||
start_offset: 325, |
|||
end_offset: 329, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 1, |
|||
start_offset: 337, |
|||
end_offset: 345, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 4, |
|||
start_offset: 365, |
|||
end_offset: 369, |
|||
user: 1, |
|||
document: 1 |
|||
}, |
|||
{ |
|||
id: 2, |
|||
prob: 0.0, |
|||
label: 4, |
|||
start_offset: 373, |
|||
end_offset: 377, |
|||
user: 1, |
|||
document: 1 |
|||
} |
|||
] |
|||
}), |
|||
|
|||
methods: { |
|||
save() {}, |
|||
cancel() {}, |
|||
open() {}, |
|||
close() {} |
|||
} |
|||
} |
|||
</script> |
|||
|
|||
<style scoped> |
|||
</style> |
Write
Preview
Loading…
Cancel
Save