import wixData from 'wix-data'; $w.onReady(function () { $w("#errorText").hide(); $w("#loader").hide(); $w("#searchButton").onClick(() => { searchDocument(); }); $w("#searchInput").onKeyPress((event) => { if (event.key === "Enter") { searchDocument(); } }); }); async function searchDocument() { let userInput = $w("#searchInput").value.trim().toLowerCase(); if (!userInput) return; $w("#errorText").hide(); $w("#loader").show(); try { let result = await wixData.query("PDFDocuments") .eq("searchKey", userInput) .limit(1) .find(); $w("#loader").hide(); if (result.items.length > 0) { let pdfLink = result.items[0].pdfUrl; // Open in new tab using Adobe/browser viewer window.open(pdfLink, "_blank"); } else { $w("#errorText").text = "No document found. Please check your entry."; $w("#errorText").show(); } } catch (error) { console.error(error); $w("#loader").hide(); $w("#errorText").text = "Something went wrong."; $w("#errorText").show(); } }
top of page

Search Results

No results found for empty search. Try a new search.

© 2023 by Plant-Tech Ltd

bottom of page