diff --git a/static/abaev.js b/static/abaev.js
index 63ce6a2..c2aa5f7 100644
--- a/static/abaev.js
+++ b/static/abaev.js
@@ -98,6 +98,34 @@ $( document ).ready(function() {
});
// ENTRY LIST SIDE PANEL
+
+ // Function to produce HTML for the entry list
+ function filterEntryList(list, filter, showSubentries) {
+ let listHtml = "";
+ for (entry of list) {
+ let entryID = entry.xmlid;
+ let entryForm = entry.form;
+ if (entryForm.toLowerCase().normalize("NFD").replace(/[\u0300-\u036f]/g, "").startsWith(filter)
+ && (!entry.subentry || showSubentries)
+ ) {
+ listHtml += `
`
+ }
+ }
+ listHtml = $(``);
+ $("#entrylist").append(listHtml);
+ }
+
+ // Fetch entries from the server when page loads
+ var entries = [];
+
+ fetch('./api/entries')
+ .then(res => res.json())
+ .then(out => {
+ entries = out;
+ filterEntryList(entries, '', false);
+ })
+ .then(err => console.log(err));
+
// Function to scroll the entry list to the selected entry OR to the first entry displayed on the current page if there is no hash in the URL
function scrollView() {
var $container = $('#entrylist')
@@ -113,10 +141,7 @@ $( document ).ready(function() {
// Click to open the offcanvas entry list
$( '#open-leftbar' ).on('click', function() {
- // $("#leftbar")[0].style.width = "250px";
$("#leftbar").show();
- // $("#leftbar")[0].style.paddingLeft = "10px";
-
$("main")[0].style.marginLeft = "250px";
$("header nav")[0].style.marginLeft = "250px";
$("footer nav")[0].style.marginLeft = "250px";
@@ -139,27 +164,26 @@ $( document ).ready(function() {
// Quick filter functionality
$('#filter-entries').on("keyup", function () {
+ $("#entrylist > ul").remove();
var value = $(this).val().toLowerCase();
- if (value.length > 0) {
- $("#entrylist > ul > li:not([hidden])").filter(function () {
- return $(this).toggle($(this).children('a').text().toLowerCase().normalize("NFD").replace(/[\u0300-\u036f]/g, "").startsWith(value))
- });
- }
- else {
- $("#entrylist > ul > li").show();
- }
-
- return false;
+ filterEntryList(entries, value, $('#show-re').prop('checked'))
+ // var value = $(this).val().toLowerCase();
+ // if (value.length > 0) {
+ // $("#entrylist > ul > li:not([hidden])").filter(function () {
+ // return $(this).toggle($(this).children('a').text().toLowerCase().normalize("NFD").replace(/[\u0300-\u036f]/g, "").startsWith(value))
+ // });
+ // }
+ // else {
+ // $("#entrylist > ul > li").show();
+ // }
+ //
+ // return false;
});
// Event handler to show subentries
$('#show-re').on("change", function () {
- if($(this).prop('checked')) {
- console.log('haha')
- $('li.abv-menu-re').removeAttr('hidden');
- }
- else {
- $('li.abv-menu-re').prop('hidden',true);
- }
+ $("#entrylist > ul").remove();
+ filterEntryList(entries, $("#filter-entries").val().toLowerCase(), $(this).prop('checked'));
+ scrollView();
});
});
diff --git a/xq/restx_api.xq b/xq/restx_api.xq
index 5f75851..6d8cea0 100644
--- a/xq/restx_api.xq
+++ b/xq/restx_api.xq
@@ -23,9 +23,11 @@ declare function api:ment-index($db-lang as xs:string) {
some Unicode characters very well in this system :)
declare function api:entry-info-short($n as node())
as map(xs:string, item()) {
- map{'id': string(hash($n/@xml:id)),
- 'xmlid': string($n/@xml:id),
- 'form': $n/text()
+ let $id := if (name($n) = 're') then string($n/@corresp) else string($n/@xml:id)
+ return map{'id': hash($id),
+ 'xmlid': $id,
+ 'form': $n/text(),
+ 'subentry': if (name($n) = 're') then true() else false()
}
};
@@ -173,7 +175,7 @@ declare %rest:path("{$db-lang}/api/entries")
%rest:GET
function api:entries($db-lang as xs:string) {
array:build(
- $lookup/tei:table[1]/tei:entry,
+ $lookup/tei:table[1]/*,
api:entry-info-short#1
)
};
@@ -183,7 +185,7 @@ declare %rest:path("{$db-lang}/api/entries/{$entry-id}")
function api:entries($db-lang as xs:string,
$entry-id as xs:string) {
api:entry-info-long(
- $lookup/tei:table[1]/tei:entry[string(hash(@xml:id))=$entry-id],
+ $lookup/tei:table[1]/*[string(hash(@xml:id))=$entry-id],
$db-lang)
};
diff --git a/xq/restx_dict_cached.xq b/xq/restx_dict_cached.xq
index d8d2d39..5244e76 100644
--- a/xq/restx_dict_cached.xq
+++ b/xq/restx_dict_cached.xq
@@ -503,23 +503,7 @@ declare %rest:path("{$lang}/dict")
{if ($lang = 'ru') then 'Производные' else 'Show subentries'}
-
-
- {for $doc in $page:lookup-all
- let $id := if ($doc/name() = 'entry') then $doc/@xml:id
- else $doc/@corresp
- return element li {
- if ($doc/name() = 're') then
- (attribute hidden {'true'},
- attribute class {'abv-menu-re'}) else (),
- attribute id {`link_{$id}`},
-
- {$doc/text()}
-
- }
- }
-
-
+