mirror of
				https://github.com/NotAShelf/nvf.git
				synced 2025-11-03 20:22:21 +00:00 
			
		
		
		
	deploy: 314962bcb4
		
	This commit is contained in:
		
					parent
					
						
							
								69056a90c4
							
						
					
				
			
			
				commit
				
					
						9ff52ef5bd
					
				
			
		
					 97 changed files with 2 additions and 451197 deletions
				
			
		| 
						 | 
				
			
			@ -1,58 +0,0 @@
 | 
			
		|||
document.addEventListener("DOMContentLoaded", () => {
 | 
			
		||||
  if (!window.location.pathname.endsWith("options.html")) return;
 | 
			
		||||
 | 
			
		||||
  const searchDiv = document.createElement("div");
 | 
			
		||||
  searchDiv.id = "search-bar";
 | 
			
		||||
  searchDiv.innerHTML = `
 | 
			
		||||
    <input type="text" id="search-input" placeholder="Search options by ID..." />
 | 
			
		||||
    <div id="search-results"></div>
 | 
			
		||||
  `;
 | 
			
		||||
  document.body.prepend(searchDiv);
 | 
			
		||||
 | 
			
		||||
  const dtElements = Array.from(document.querySelectorAll("dt"));
 | 
			
		||||
  const ddElements = Array.from(document.querySelectorAll("dd"));
 | 
			
		||||
  const dtOptionIds = dtElements.map(
 | 
			
		||||
    (dt) => dt.querySelector("a")?.id.toLowerCase() || "",
 | 
			
		||||
  );
 | 
			
		||||
 | 
			
		||||
  if (dtElements.length === 0 || ddElements.length === 0) {
 | 
			
		||||
    console.warn("Something went wrong, page may be loaded incorrectly.");
 | 
			
		||||
    return;
 | 
			
		||||
  }
 | 
			
		||||
 | 
			
		||||
  const dtElementsData = dtElements.map((dt, index) => ({
 | 
			
		||||
    element: dt,
 | 
			
		||||
    id: dtOptionIds[index],
 | 
			
		||||
    ddElement: ddElements[index],
 | 
			
		||||
  }));
 | 
			
		||||
 | 
			
		||||
  const hiddenClass = "hidden";
 | 
			
		||||
  const hiddenStyle = document.createElement("style");
 | 
			
		||||
  hiddenStyle.innerHTML = `.${hiddenClass} { display: none; }`;
 | 
			
		||||
  document.head.appendChild(hiddenStyle);
 | 
			
		||||
 | 
			
		||||
  let debounceTimeout;
 | 
			
		||||
  document.getElementById("search-input").addEventListener("input", (event) => {
 | 
			
		||||
    clearTimeout(debounceTimeout);
 | 
			
		||||
    debounceTimeout = setTimeout(() => {
 | 
			
		||||
      const query = event.target.value.toLowerCase();
 | 
			
		||||
 | 
			
		||||
      const matches = [];
 | 
			
		||||
      const nonMatches = [];
 | 
			
		||||
 | 
			
		||||
      dtElementsData.forEach(({ element, id, ddElement }) => {
 | 
			
		||||
        const isMatch = id.includes(query);
 | 
			
		||||
        if (isMatch) {
 | 
			
		||||
          matches.push(element, ddElement);
 | 
			
		||||
        } else {
 | 
			
		||||
          nonMatches.push(element, ddElement);
 | 
			
		||||
        }
 | 
			
		||||
      });
 | 
			
		||||
 | 
			
		||||
      requestAnimationFrame(() => {
 | 
			
		||||
        matches.forEach((el) => el?.classList.remove(hiddenClass));
 | 
			
		||||
        nonMatches.forEach((el) => el?.classList.add(hiddenClass));
 | 
			
		||||
      });
 | 
			
		||||
    }, 200);
 | 
			
		||||
  });
 | 
			
		||||
});
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue