Finishes first version of taxonomies checkbox modal list inside the item edition form. #387.
This commit is contained in:
parent
8337cd5bfe
commit
de97037980
|
@ -13,15 +13,23 @@
|
||||||
<h2 v-else>{{ $i18n.get('metadatum') }} <em>{{ metadatum.name }}</em></h2>
|
<h2 v-else>{{ $i18n.get('metadatum') }} <em>{{ metadatum.name }}</em></h2>
|
||||||
<hr>
|
<hr>
|
||||||
</header>
|
</header>
|
||||||
<div class="tainacan-form">
|
|
||||||
|
<div
|
||||||
|
:style="isModal ? '' : 'margin-top: 12px'"
|
||||||
|
class="tainacan-form">
|
||||||
<b-tabs
|
<b-tabs
|
||||||
|
:size="isModal ? '' : 'is-small'"
|
||||||
animated
|
animated
|
||||||
@input="fetchSelectedLabels()"
|
@input="fetchSelectedLabels()"
|
||||||
v-model="activeTab">
|
v-model="activeTab">
|
||||||
<b-tab-item :label="isTaxonomy ? $i18n.get('label_all_terms') : $i18n.get('label_all_metadatum_values')">
|
<b-tab-item
|
||||||
|
:style="{ margin: isModal ? '0' : '0 -1.5rem' }"
|
||||||
|
:label="isTaxonomy ? $i18n.get('label_all_terms') : $i18n.get('label_all_metadatum_values')">
|
||||||
|
|
||||||
<!-- Search input -->
|
<!-- Search input -->
|
||||||
<div class="is-clearfix tainacan-checkbox-search-section">
|
<div
|
||||||
|
:class="!isModal && isSearchInputHidden ? 'hidden-search-input' : ''"
|
||||||
|
class="is-clearfix tainacan-checkbox-search-section">
|
||||||
<input
|
<input
|
||||||
autocomplete="on"
|
autocomplete="on"
|
||||||
:placeholder="$i18n.get('instruction_search')"
|
:placeholder="$i18n.get('instruction_search')"
|
||||||
|
@ -29,8 +37,11 @@
|
||||||
v-model="optionName"
|
v-model="optionName"
|
||||||
@input="autoComplete"
|
@input="autoComplete"
|
||||||
class="input">
|
class="input">
|
||||||
<span class="icon is-right">
|
<span
|
||||||
<i class="tainacan-icon tainacan-icon-1-25em tainacan-icon-search" />
|
:class="isModal ? '' : 'has-text-gray'"
|
||||||
|
class="icon is-right"
|
||||||
|
@click="isSearchInputHidden = !isSearchInputHidden">
|
||||||
|
<i class="tainacan-icon tainacan-icon-1-125em tainacan-icon-search" />
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -347,20 +358,24 @@
|
||||||
isSelectedTermsLoading: false,
|
isSelectedTermsLoading: false,
|
||||||
isUsingElasticSearch: tainacan_plugin.wp_elasticpress == "1" ? true : false,
|
isUsingElasticSearch: tainacan_plugin.wp_elasticpress == "1" ? true : false,
|
||||||
previousLastTerms: [],
|
previousLastTerms: [],
|
||||||
lastTermOnFisrtPage: null
|
lastTermOnFisrtPage: null,
|
||||||
|
isSearchInputHidden: true
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
watch: {
|
watch: {
|
||||||
selected() {
|
selected() {
|
||||||
|
if (this.isModal)
|
||||||
this.$emit('input', this.selected);
|
this.$emit('input', this.selected);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
updated(){
|
updated(){
|
||||||
if(!this.isSearching){
|
if (!this.isSearching)
|
||||||
this.highlightHierarchyPath();
|
this.highlightHierarchyPath();
|
||||||
}
|
|
||||||
},
|
},
|
||||||
created() {
|
created() {
|
||||||
|
if (!this.isModal)
|
||||||
|
this.maxNumOptionsCheckboxFinderColumns = 10;
|
||||||
|
|
||||||
if (this.isTaxonomy) {
|
if (this.isTaxonomy) {
|
||||||
this.getOptionChildren();
|
this.getOptionChildren();
|
||||||
} else {
|
} else {
|
||||||
|
@ -419,14 +434,13 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
saveSelectedTagName(value, label){
|
saveSelectedTagName(value, label){
|
||||||
if (!this.selectedTagsName[value]) {
|
if (!this.selectedTagsName[value])
|
||||||
this.$set(this.selectedTagsName, `${value}`, label);
|
this.$set(this.selectedTagsName, `${value}`, label);
|
||||||
}
|
|
||||||
},
|
},
|
||||||
limitChars(label){
|
limitChars(label){
|
||||||
if (label.length > this.maxTextToShow){
|
if (label.length > this.maxTextToShow)
|
||||||
return label.slice(0, this.maxTextToShow)+'...';
|
return label.slice(0, this.maxTextToShow)+'...';
|
||||||
}
|
else
|
||||||
return label;
|
return label;
|
||||||
},
|
},
|
||||||
previousPage() {
|
previousPage() {
|
||||||
|
@ -458,12 +472,11 @@
|
||||||
|
|
||||||
if (!this.noMorePage && !this.isUsingElasticSearch) {
|
if (!this.noMorePage && !this.isUsingElasticSearch) {
|
||||||
// LIMIT 0, 20 / LIMIT 19, 20 / LIMIT 39, 20 / LIMIT 59, 20
|
// LIMIT 0, 20 / LIMIT 19, 20 / LIMIT 39, 20 / LIMIT 59, 20
|
||||||
if (this.checkboxListOffset === this.maxNumOptionsCheckboxList){
|
if (this.checkboxListOffset === this.maxNumOptionsCheckboxList)
|
||||||
this.checkboxListOffset += this.maxNumOptionsCheckboxList - 1;
|
this.checkboxListOffset += this.maxNumOptionsCheckboxList - 1;
|
||||||
} else {
|
else
|
||||||
this.checkboxListOffset += this.maxNumOptionsCheckboxList;
|
this.checkboxListOffset += this.maxNumOptionsCheckboxList;
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
this.isCheckboxListLoading = true;
|
this.isCheckboxListLoading = true;
|
||||||
|
|
||||||
|
@ -589,9 +602,8 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
removeLevelsAfter(key){
|
removeLevelsAfter(key){
|
||||||
if(key != undefined){
|
if (key != undefined)
|
||||||
this.finderColumns.splice(key+1);
|
this.finderColumns.splice(key+1);
|
||||||
}
|
|
||||||
},
|
},
|
||||||
createColumn(res, column) {
|
createColumn(res, column) {
|
||||||
let children = res.data.values;
|
let children = res.data.values;
|
||||||
|
@ -613,24 +625,22 @@
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (first != undefined) {
|
if (first != undefined)
|
||||||
this.finderColumns.splice(first, 1, { children: children, lastTerm: res.data.last_term });
|
this.finderColumns.splice(first, 1, { children: children, lastTerm: res.data.last_term });
|
||||||
} else {
|
else
|
||||||
this.finderColumns.push({ children: children, lastTerm: res.data.last_term });
|
this.finderColumns.push({ children: children, lastTerm: res.data.last_term });
|
||||||
}
|
|
||||||
},
|
},
|
||||||
appendMore(options, key, lastTerm) {
|
appendMore(options, key, lastTerm) {
|
||||||
for (let option of options) {
|
for (let option of options)
|
||||||
this.finderColumns[key].children.push(option);
|
this.finderColumns[key].children.push(option);
|
||||||
}
|
|
||||||
this.finderColumns[key].lastTerm = lastTerm;
|
this.finderColumns[key].lastTerm = lastTerm;
|
||||||
},
|
},
|
||||||
getOptionChildren(option, key, index) {
|
getOptionChildren(option, key, index) {
|
||||||
let query_items = { 'current_query': this.query };
|
let query_items = { 'current_query': this.query };
|
||||||
|
|
||||||
if(key != undefined) {
|
if (key != undefined)
|
||||||
this.addToHierarchicalPath(key, index, option);
|
this.addToHierarchicalPath(key, index, option);
|
||||||
}
|
|
||||||
|
|
||||||
let parent = 0;
|
let parent = 0;
|
||||||
|
|
||||||
|
@ -646,9 +656,8 @@
|
||||||
|
|
||||||
let route = `/collection/${this.collectionId}/facets/${this.metadatumId}${query}`;
|
let route = `/collection/${this.collectionId}/facets/${this.metadatumId}${query}`;
|
||||||
|
|
||||||
if (this.collectionId == 'default'){
|
if (this.collectionId == 'default')
|
||||||
route = `/facets/${this.metadatumId}${query}`
|
route = `/facets/${this.metadatumId}${query}`
|
||||||
}
|
|
||||||
|
|
||||||
axios.get(route)
|
axios.get(route)
|
||||||
.then(res => {
|
.then(res => {
|
||||||
|
@ -683,9 +692,8 @@
|
||||||
|
|
||||||
let route = `/collection/${this.collectionId}/facets/${this.metadatumId}${query}`;
|
let route = `/collection/${this.collectionId}/facets/${this.metadatumId}${query}`;
|
||||||
|
|
||||||
if (this.collectionId == 'default'){
|
if (this.collectionId == 'default')
|
||||||
route = `/facets/${this.metadatumId}${query}`
|
route = `/facets/${this.metadatumId}${query}`
|
||||||
}
|
|
||||||
|
|
||||||
axios.get(route)
|
axios.get(route)
|
||||||
.then(res => {
|
.then(res => {
|
||||||
|
@ -879,7 +887,7 @@
|
||||||
overflow: auto;
|
overflow: auto;
|
||||||
padding: 0 !important;
|
padding: 0 !important;
|
||||||
min-height: 232px;
|
min-height: 232px;
|
||||||
max-height: 35vh;
|
max-height: 40vh;
|
||||||
|
|
||||||
&:focus {
|
&:focus {
|
||||||
outline: none;
|
outline: none;
|
||||||
|
@ -921,6 +929,31 @@
|
||||||
align-items: center;
|
align-items: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
|
&.hidden-search-input {
|
||||||
|
input {
|
||||||
|
min-width: 0px;
|
||||||
|
width: 0px;
|
||||||
|
padding: 0;
|
||||||
|
height: 0;
|
||||||
|
margin-left: auto;
|
||||||
|
opacity: 0;
|
||||||
|
}
|
||||||
|
.icon {
|
||||||
|
background: var(--tainacan-input-background-color);
|
||||||
|
border: 1px solid var(--tainacan-input-border-color);
|
||||||
|
padding: 14px;
|
||||||
|
top: -0.75em;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
color: var(--tainacan-secondary) !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
input {
|
||||||
|
transition: width .5s ease, padding .3s ease, height .3s ease, margin-left .5s ease, opacity .3s ease;
|
||||||
|
}
|
||||||
|
|
||||||
.icon {
|
.icon {
|
||||||
pointer-events: all;
|
pointer-events: all;
|
||||||
color: var(--tainacan-blue5);
|
color: var(--tainacan-blue5);
|
||||||
|
@ -930,6 +963,7 @@
|
||||||
width: 30px !important;
|
width: 30px !important;
|
||||||
position: absolute;
|
position: absolute;
|
||||||
right: 0;
|
right: 0;
|
||||||
|
transition: top .3s ease, padding .3s ease, border .3s ease, right .3s ease;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -983,6 +1017,11 @@
|
||||||
padding: 0 20px !important;
|
padding: 0 20px !important;
|
||||||
min-height: 253px;
|
min-height: 253px;
|
||||||
|
|
||||||
|
.control {
|
||||||
|
margin-bottom: 0.25rem;
|
||||||
|
margin-right: 0.25rem;
|
||||||
|
}
|
||||||
|
|
||||||
.tags.is-small {
|
.tags.is-small {
|
||||||
font-size: 0.875em;
|
font-size: 0.875em;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue