mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-03 20:02:47 +00:00 
			
		
		
		
	Easy fix
This commit is contained in:
		@@ -128,7 +128,7 @@ function recieveResults(response) {
 | 
			
		||||
  result["loaded_match_count"] += Object.keys(chunk["matches"]).length;
 | 
			
		||||
  console.log("After current match count", result["loaded_match_count"]);
 | 
			
		||||
  let queryResultsMetadataElement = document.getElementById("query-results-metadata");
 | 
			
		||||
  queryResultsMetadataElement.innerHTML = `<p>The query resulted in a total of ${chunk["match_count"]} matches. </p> <p> ${result["loaded_match_count"]} of ${result["match_count"]} matches in ${count_corpus_files} corpus files have been loaded.<i class="material-icons" id="tool-tip-info">help</i></p>`;
 | 
			
		||||
  queryResultsMetadataElement.innerHTML = `<p>The query resulted in a total of ${chunk["match_count"]} matches. </p> <p> ${result["loaded_match_count"]} of ${result["match_count"]} matches in ${count_corpus_files} corpus files have been loaded.</p><p><i class="material-icons" id="tooltip-info">help</i>The Server is still sending your results. Functions like "Export Results" and "Match Inspect" will be available after all matches have been loaded.</p>`;
 | 
			
		||||
  let queryResultsInteractionElement = document.getElementById("interaction-elements");
 | 
			
		||||
  queryResultsInteractionElement.appendChild(exportQueryResultsElement);
 | 
			
		||||
  let queryResultsHeadElement = document.getElementById("query-results-head");
 | 
			
		||||
@@ -137,19 +137,13 @@ function recieveResults(response) {
 | 
			
		||||
  console.log(queryStatus);
 | 
			
		||||
  queryResultsDeterminateElement.style["width"] = `${queryStatus}%`;
 | 
			
		||||
  console.log(queryResultsDeterminateElement.style["width"]);
 | 
			
		||||
  toolTipInfoElement = document.getElementById("tool-tip-info");
 | 
			
		||||
  M.Tooltip.init(toolTipInfoElement, {"html": `<p>The Server is still sending you your results. Functions like "Export Results" and "Match Inspect" will be available after all matches have been loaded.</p>`,
 | 
			
		||||
  "inDuration": 1500,
 | 
			
		||||
  "margin": 15,
 | 
			
		||||
  "position": "top",
 | 
			
		||||
  "transitionMovement": 0});
 | 
			
		||||
 | 
			
		||||
  // enable download and inspect when query is finished
 | 
			
		||||
  // also sets queryFinished to true
 | 
			
		||||
  if (queryStatus === 100) {
 | 
			
		||||
    queryFinished = true; // global declaration to set downlaod button and inspects buttons back to disabled for new queries
 | 
			
		||||
    queryResultsDeterminateElement.parentNode.parentNode.classList.add("hide");
 | 
			
		||||
    exportQueryResultsElement.classList.remove("disabled");
 | 
			
		||||
    toolTipInfoElement.classList.add("hide");
 | 
			
		||||
    queryResultsMetadataElement.innerHTML = `<p>The query resulted in a total of ${chunk["match_count"]} matches. </p> <p> ${result["loaded_match_count"]} of ${result["match_count"]} matches in ${count_corpus_files} corpus files have been loaded.<i class="material-icons">check_circle</i></p>`;
 | 
			
		||||
    activateInspect();
 | 
			
		||||
  }
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user