mirror of
				https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
				synced 2025-11-04 04:12:45 +00:00 
			
		
		
		
	Merge branch 'development' of gitlab.ub.uni-bielefeld.de:sfb1288inf/opaque into development
This commit is contained in:
		@@ -164,11 +164,12 @@ JobList.DEFAULT_OPTIONS = {
 | 
			
		||||
 | 
			
		||||
class ResultList extends List {
 | 
			
		||||
 | 
			
		||||
  createResultRowElement(item) {
 | 
			
		||||
  createResultRowElement(item, chunk) {
 | 
			
		||||
    let values, cpos, matchRowElement, lcCellElement, lcTokenElement, token;
 | 
			
		||||
    // gather values from item
 | 
			
		||||
    values = item.values();
 | 
			
		||||
 | 
			
		||||
    console.log("CHONK");
 | 
			
		||||
    console.log(chunk);
 | 
			
		||||
    // get infos for full match row
 | 
			
		||||
    matchRowElement = document.createElement("tr");
 | 
			
		||||
    for (cpos of values["lc"]) {
 | 
			
		||||
@@ -178,10 +179,11 @@ class ResultList extends List {
 | 
			
		||||
      lcTokenElement.classList.add("token");
 | 
			
		||||
      lcTokenElement.dataset.cpos = cpos;
 | 
			
		||||
      token = chunk["cpos_lookup"][cpos];
 | 
			
		||||
      lcTokenElement = token["word"];
 | 
			
		||||
      console.log(lcTokenElement.outerHTML);
 | 
			
		||||
      lcTokenElement.innerText = token["word"];
 | 
			
		||||
      lcCellElement.appendChild(lcTokenElement);
 | 
			
		||||
      //   let hit_tokens = "";
 | 
			
		||||
    }
 | 
			
		||||
    matchRowElement.appendChild(lcCellElement);
 | 
			
		||||
    //   // get infos of match
 | 
			
		||||
    //   let textTitles = new Set();
 | 
			
		||||
    //   for (cpos of match["hit"]) {
 | 
			
		||||
@@ -222,6 +224,7 @@ class ResultList extends List {
 | 
			
		||||
    //   // matchRowElement.appendChild(rc_tokens);
 | 
			
		||||
    //   // matchRowElement.appendChild(index);
 | 
			
		||||
    // }
 | 
			
		||||
    // return matchRowElement
 | 
			
		||||
    console.log(matchRowElement.outerHTML);
 | 
			
		||||
    return matchRowElement
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user