add a button to display or hide the facets

This commit is contained in:
tamo 2021-03-31 16:17:34 +02:00
parent 529c8f0eb1
commit bcc131e866
No known key found for this signature in database
GPG Key ID: 20CD8020AFA88D69
3 changed files with 27 additions and 1 deletions

View File

@ -114,6 +114,23 @@ function selectedFacetsToArray(facets_obj) {
return array;
}
display_facets = false;
$('#display_facets').click(function() {
if (display_facets) {
display_facets = false;
$('#display_facets').html("Display facets")
$('#display_facets').removeClass("is-danger");
$('#display_facets').addClass("is-success");
$('#facets').hide();
} else {
display_facets = true;
$('#display_facets').html("Hide facets")
$('#display_facets').addClass("is-danger");
$('#display_facets').removeClass("is-success");
$('#facets').show();
}
});
// Make the number of document a little bit prettier
$('#docs-count').text(function(index, text) {
return parseInt(text).toLocaleString()

View File

@ -10,11 +10,19 @@
}
#facets {
display: none;
max-width: 900px;
margin: 20px auto 0 auto;
padding: 0;
max-height: 16em;
overflow: scroll;
overflow: scroll;
}
#display_facets {
margin: 20px auto 0 auto;
padding: 5px;
max-height: 16em;
overflow: scroll;
}
#facets .tag:hover {

View File

@ -41,6 +41,7 @@
<p class="heading">Number of Documents</p>
<p class="title" id="docs-count">{{ docs_count }}</p>
</div>
<button id="display_facets" class="button is-success">display facets</button>
</div>
</nav>
</div>