File size: 6,359 Bytes
0cbacda |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 |
// بيانات الروابط (تم توليدها من ملف Excel)
const DATA = [
{"name":"حسن عبدالله ابوكبوس","url":"https://stat2025-map.static.hf.space/FIS/01.html"},
{"name":"مفلح مشبب علي القحطاني","url":"https://stat2025-map.static.hf.space/FIS/02.html"},
{"name":"نايف علي ال قحصان","url":"https://stat2025-map.static.hf.space/FIS/03.html"},
{"name":"جمانه عزيز الخريصي","url":"https://stat2025-map.static.hf.space/FIS/04.html"},
{"name":"منى خلف العنزي","url":"https://stat2025-map.static.hf.space/FIS/05.html"},
{"name":"عبدالله سالم الهاجري","url":"https://stat2025-map.static.hf.space/FIS/06.html"},
{"name":"اشواق عبدالكريم الحنطي","url":"https://stat2025-map.static.hf.space/FIS/07.html"},
{"name":"ياسمين عيسى المطوع","url":"https://stat2025-map.static.hf.space/FIS/08.html"},
{"name":"دانه احمد الدريب","url":"https://stat2025-map.static.hf.space/FIS/09.html"},
{"name":"ريما عبدالله السحيباني","url":"https://stat2025-map.static.hf.space/FIS/10.html"},
{"name":"خديجة حسين هنبوبه","url":"https://stat2025-map.static.hf.space/FIS/11.html"},
{"name":"سارة صالح القحطاني","url":"https://stat2025-map.static.hf.space/FIS/12.html"},
{"name":"أبرار ناصر المطيري","url":"https://stat2025-map.static.hf.space/FIS/13.html"},
{"name":"محمد صالح الخضير","url":"https://stat2025-map.static.hf.space/FIS/14.html"},
{"name":"نايف مطر الشمري","url":"https://stat2025-map.static.hf.space/FIS/15.html"}
];
function normalizeArabic(s) {
if (!s) return "";
return String(s)
.trim()
.toLowerCase()
.replace(/[\u064B-\u065F\u0670\u06D6-\u06ED]/g, "")
.replace(/\u0640/g, "")
.replace(/[إأآٱ]/g, "ا")
.replace(/ى/g, "ي")
.replace(/ة/g, "ه")
.replace(/^ال\s+/g, "")
.replace(/\s+/g, " ");
}
function escapeHtml(str) {
return String(str)
.replaceAll("&", "&")
.replaceAll("<", "<")
.replaceAll(">", ">")
.replaceAll('"', """)
.replaceAll("'", "'");
}
function highlightMatch(name, rawQuery) {
if (!rawQuery) return escapeHtml(name);
const tokens = rawQuery.trim().split(/\s+/).filter(Boolean);
if (!tokens.length) return escapeHtml(name);
const t = tokens[0];
const idx = name.indexOf(t);
if (idx === -1) return escapeHtml(name);
const before = escapeHtml(name.slice(0, idx));
const mid = escapeHtml(name.slice(idx, idx + t.length));
const after = escapeHtml(name.slice(idx + t.length));
return `${before}<mark>${mid}</mark>${after}`;
}
const elQ = document.getElementById("q");
const elResults = document.getElementById("results");
const elCount = document.getElementById("countPill");
const elTotal = document.getElementById("totalChip");
const toast = document.getElementById("toast");
const toastText = document.getElementById("toastText");
elTotal.innerHTML = `إجمالي: <b>${DATA.length}</b>`;
function showToast(msg = "تم نسخ الرابط") {
toastText.textContent = msg;
toast.classList.add("show");
clearTimeout(window.__toastT);
window.__toastT = setTimeout(() => toast.classList.remove("show"), 1200);
}
async function copyLink(url) {
try {
await navigator.clipboard.writeText(url);
showToast();
} catch (e) {
const ta = document.createElement("textarea");
ta.value = url;
document.body.appendChild(ta);
ta.select();
document.execCommand("copy");
document.body.removeChild(ta);
showToast();
}
}
function renderResults(list, rawQuery) {
elResults.innerHTML = "";
if (!list.length) {
elCount.textContent = "النتائج: 0";
elResults.innerHTML = `<div class="empty">لا توجد نتائج</div>`;
return;
}
elCount.textContent = `النتائج: ${list.length}`;
const frag = document.createDocumentFragment();
list.forEach(item => {
const row = document.createElement("div");
row.className = "result";
const nm = document.createElement("div");
nm.className = "name";
nm.innerHTML = highlightMatch(item.name, rawQuery);
const actions = document.createElement("div");
actions.className = "actions";
const open = document.createElement("a");
open.className = "openBtn";
open.href = item.url;
open.target = "_blank";
open.rel = "noopener";
open.innerHTML = `فتح <span aria-hidden="true">↗</span>`;
const copy = document.createElement("button");
copy.className = "copyBtn";
copy.type = "button";
copy.innerHTML = `نسخ <span aria-hidden="true">⧉</span>`;
copy.addEventListener("click", () => copyLink(item.url));
actions.appendChild(open);
actions.appendChild(copy);
row.appendChild(nm);
row.appendChild(actions);
frag.appendChild(row);
});
elResults.appendChild(frag);
}
function doSearch() {
const raw = (elQ.value || "").trim();
const q = normalizeArabic(raw);
if (!q) {
elCount.textContent = "النتائج: 0";
elResults.innerHTML = "";
return;
}
const tokens = q.split(" ").filter(Boolean);
const matched = DATA.filter(d => {
const nameNorm = normalizeArabic(d.name);
return tokens.every(t => nameNorm.includes(t));
});
matched.sort((a, b) => {
const al = (a.name || "").length;
const bl = (b.name || "").length;
if (al !== bl) return al - bl;
return (a.name || "").localeCompare(b.name || "", "ar");
});
renderResults(matched, raw);
}
document.getElementById("btnSearch").addEventListener("click", doSearch);
document.getElementById("btnClear").addEventListener("click", () => {
elQ.value = "";
elQ.focus();
elResults.innerHTML = "";
elCount.textContent = "النتائج: 0";
});
let t = null;
elQ.addEventListener("input", () => {
clearTimeout(t);
t = setTimeout(doSearch, 140);
});
elQ.addEventListener("keydown", (e) => {
if (e.key === "Enter") doSearch();
});
// حفظ آخر بحث
try {
const last = localStorage.getItem("maps_last_query");
if (last) {
elQ.value = last;
doSearch();
}
elQ.addEventListener("input", () => {
localStorage.setItem("maps_last_query", elQ.value || "");
});
} catch(_){}
elCount.textContent = "النتائج: 0";
|