Spaces:
Sleeping
Sleeping
File size: 20,896 Bytes
35b3f62 d99e6bd 35b3f62 |
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 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Pledge Tracker โ Demo</title>
<script src="https://cdn.tailwindcss.com"></script>
</head>
<body class="bg-gray-50 text-gray-800">
<header class="bg-white shadow py-4 sticky top-0 z-10">
<div class="container mx-auto flex items-center justify-between px-4">
<div class="flex items-center gap-2">
<span class="text-2xl font-bold text-purple-600">๐ค</span>
<span class="font-semibold text-lg">Pledge Tracking</span>
</div>
<nav class="hidden md:flex gap-6 font-medium">
<a class="hover:text-purple-600" href="#eval-response">Track Your Pledge</a>
<a class="hover:text-purple-600" href="#about">About</a>
</nav>
</div>
</header>
<section class="py-16 bg-gradient-to-r from-purple-50 to-purple-50 text-center">
<div class="container mx-auto px-4 max-w-2xl">
<h1 class="text-3xl md:text-4xl font-extrabold mb-4">
Fact-Checking Election Promises
</h1>
<p class="text-lg text-gray-600">
Extract progress towards fulfilling the promise.
</p>
</div>
</section>
<section id="eval-response" class="py-12">
<div class="container mx-auto px-4 max-w-4xl">
<!-- <h2 class="text-2xl font-bold mb-6">Track Manifesto Pledge</h2> -->
<label for="claim" class="block text-sm font-medium mb-2">
Please enter the pledge:
</label>
<textarea
id="claim"
class="w-full border rounded-lg p-3 h-40 focus:outline-none focus:ring-2 focus:ring-purple-500"
placeholder="For example: 'We will support families with children by introducing free breakfast clubs in every primary school...'"
></textarea>
<div id="similar-suggestions" class="mt-3 text-sm text-gray-600 hidden"></div>
<div class="mt-4">
<label for="pledge-date" class="block text-sm font-medium mb-2">
When was this pledge made?
</label>
<div class="grid grid-cols-[1fr_auto] items-center gap-2">
<input
type="date"
id="pledge-date"
class="w-full border rounded-lg p-2"
/>
<button
onclick="setDefaultDate()"
type="button"
class="px-2 py-1 text-sm bg-purple-600 text-white rounded hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500"
>
Use default: 4th Jul 2024
</button>
</div>
<div id="date-warning" class="text-sm text-red-600 mt-1 hidden">
Please select a date or click the button to use the default.
</div>
</div>
<div class="mt-4">
<label for="pledge-author" class="block text-sm font-medium mb-2">
Who made this pledge?
</label>
<div class="grid grid-cols-[1fr_auto] items-center gap-2">
<input
type="text"
id="pledge-author"
class="w-full border rounded-lg p-2"
placeholder="Enter the name of the party or person"
/>
<button
onclick="setDefaultAuthor()"
type="button"
class="px-2 py-1 text-sm bg-purple-600 text-white rounded hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500"
>
Use default: Labour
</button>
</div>
<div id="author-warning" class="text-sm text-red-600 mt-1 hidden">
Please enter a speaker or click the button to use the default.
</div>
</div>
<label for="time-range" class="block text-sm font-medium mt-4 mb-2">
Please select a time range:
</label>
<select id="time-range" class="w-full border rounded-lg p-2">
<option value="week">Past one week</option>
<option value="month">Past one month</option>
<!-- <option value="year">From when the pledge was made</option> -->
<option value="since_pledge_date">From when the pledge was made</option>
</select>
<button
id="check"
class="mt-4 px-6 py-2 bg-purple-600 text-white rounded-lg hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500"
>
Let's fact check!
</button>
<div id="progress" class="mt-6 hidden border p-4 rounded-lg bg-white shadow">
<h3 class="font-semibold mb-2">System Progress</h3>
<div id="status" class="text-sm text-gray-800 font-normal leading-relaxed"></div>
</div>
<div id="result" class="mt-6 hidden border p-4 rounded-lg bg-white shadow">
<h3 class="font-semibold mb-2">Result</h3>
<p class="text-gray-700"></p>
</div>
</div>
</section>
<section id="about" class="py-12">
<div class="container mx-auto px-4 max-w-4xl">
<h2 class="text-2xl font-bold mb-6">About</h2>
<p class="text-gray-700 leading-relaxed">
This demo connects a static front-end with a Python back-end using Flask.
The back-end generates event data and returns structured events related
to a manifesto pledge.
</p>
</div>
</section>
<script>
let suggestedPledge = null;
let currentAbortController = null;
const feedbackData = {};
let lastUsedFile = null;
let lastUserId = null;
let lastTimestamp = null;
const checkBtn = document.getElementById("check");
const stepListStandard = {
1: "Retrieving evidence related to the pledge",
2: "Scraping documents from URLs",
3: "Generating more queries based on the retrieved evidence",
4: "Searching more articles",
5: "Scraping documents from URLs",
6: "Finding the most relevant documents",
7: "Extracting events from top documents",
8: "Sorting events temporally"
};
const stepListSuggestion = {
1: "Retrieving evidence based on genertaed queries",
2: "Scraping documents from URLs",
3: "Finding the most relevant documents",
4: "Extracting events from top documents",
5: "Sorting events temporally"
};
let stepList = stepListStandard;
function renderStatus(statusDict) {
let html = "<ul class='list-disc ml-6 space-y-1 text-sm'>";
for (let step in stepList) {
const content = statusDict?.[step] || stepList[step];
const prefix = statusDict?.[step] ? "โ
" : "โณ";
html += `<li>${prefix} Step ${step}: ${content}</li>`;
}
html += "</ul>";
return html;
}
function setDefaultDate() {
const input = document.getElementById("pledge-date");
input.value = "2024-07-04";
document.getElementById("date-warning").classList.add("hidden");
}
function setDefaultAuthor() {
const input = document.getElementById("pledge-author");
input.value = "Labour";
document.getElementById("author-warning").classList.add("hidden");
}
// function setFeedback(index, answer) {
// feedbackData[index] = answer;
// const message = document.getElementById(`msg-${index}`);
// message.textContent = `โ Selected: ${answer ? 'Yes' : 'No'}`;
// message.className = answer
// ? "text-sm text-green-600 mt-1"
// : "text-sm text-red-600 mt-1";
// }
function setFeedback(index, answer) {
feedbackData[index] = answer;
const message = document.getElementById(`msg-${index}`);
let displayText = "";
let colorClass = "";
switch(answer) {
case "not_relevant":
displayText = "Not relevant";
colorClass = "text-red-300";
break;
case "relevant_seen":
displayText = "Relevant but already seen";
colorClass = "text-grey-400";
break;
case "relevant_updated":
displayText = "Relevant and up-to-date";
colorClass = "text-blue-400";
break;
}
message.textContent = `โ Selected: ${displayText}`;
message.className = `text-sm ${colorClass} mt-1`;
}
function pollStatus(userId, timestamp, statusElement) {
if (window.pollIntervalId) {
clearInterval(window.pollIntervalId);
}
window.pollIntervalId = setInterval(async () => {
try {
const res = await fetch(`/api/status?user_id=${userId}×tamp=${timestamp}&_=${Date.now()}`);
const data = await res.json();
// ๅจๆๆธฒๆ็ปๆๅ็ถๆ
if (data.status) {
statusElement.innerHTML = renderStatus(data.status);
}
// ๆฃๆฅๆฏๅฆๅฎๆ
const values = Object.values(data.status || {});
const finalText = values.join(" ").toLowerCase();
if (finalText.includes("done") || finalText.includes("finished")) {
clearInterval(window.pollIntervalId);
window.pollIntervalId = null;
statusElement.innerHTML += `<div class="mt-2 text-green-600 font-semibold">โ
All done.</div>`;
checkBtn.disabled = false;
checkBtn.classList.remove("opacity-50", "cursor-not-allowed");
if (lastUsedFile) loadEvents(lastUsedFile);
} else if (finalText.includes("error") || finalText.includes("fail")) {
clearInterval(window.pollIntervalId);
window.pollIntervalId = null;
statusElement.innerHTML += `<div class="mt-2 text-red-600 font-semibold">โ The process failed.</div>`;
checkBtn.disabled = false;
checkBtn.classList.remove("opacity-50", "cursor-not-allowed");
}
} catch (err) {
clearInterval(window.pollIntervalId);
window.pollIntervalId = null;
statusElement.innerHTML = `<div class="text-red-600">โ Failed to check status: ${err.message}</div>`;
}
}, 2000);
}
async function submitAllFeedback() {
const entries = Object.entries(feedbackData);
if (entries.length === 0) {
alert("No feedback to submit!");
return;
}
const confirmed = confirm("Submit all feedback?");
if (!confirmed) return;
const pledgeText = document.getElementById("claim").value.trim();
const res = await fetch('/api/feedback', {
method: 'POST',
headers: { 'Content-Type': 'application/json' },
body: JSON.stringify({
pledge: pledgeText,
file: lastUsedFile,
user_id: lastUserId,
timestamp: lastTimestamp,
feedback: entries.map(([index, answer]) => ({
eventIndex: index,
answer: answer
}))
})
});
alert(res.ok ? "โ
Feedback submitted successfully!" : "โ Submission failed.");
}
async function loadEvents(file) {
const resultBox = document.getElementById("result");
const p = resultBox.querySelector("p");
resultBox.classList.remove("hidden");
try {
const fileParam = encodeURIComponent(file);
const eventsRes = await fetch(`/api/events?file=${fileParam}`);
if (!eventsRes.ok) throw new Error("Event file not found or malformed");
const data = await eventsRes.json();
if (!Array.isArray(data)) throw new Error("Unexpected data format");
p.innerHTML = `<strong>We have found ${data.length} events for this pledge.</strong><br><br>` +
data.map((e, index) => `
<div class="mb-6 border-b pb-4">
๐๏ธ <b>${e.date}</b>: ${e.event}<br>
๐ <a href="${e.url}" target="_blank" class="text-purple-400 underline">Source</a>
<div class="mt-3">
<label class="block text-sm font-medium mb-2">How relevant is this event?</label>
<div class="flex flex-wrap gap-2">
<button onclick="setFeedback(${index}, 'not_relevant')"
class="px-3 py-1.5 bg-gray-100 hover:bg-gray-200 border border-gray-300 rounded-lg text-gray-700">
Not relevant
</button>
<button onclick="setFeedback(${index}, 'relevant_seen')"
class="px-3 py-1.5 bg-blue-100 hover:bg-blue-200 border border-blue-300 rounded-lg text-blue-700">
Relevant but seen
</button>
<button onclick="setFeedback(${index}, 'relevant_updated')"
class="px-3 py-1.5 bg-green-100 hover:bg-green-200 border border-green-300 rounded-lg text-green-700">
Relevant & up-to-date
</button>
</div>
<div id="msg-${index}" class="text-sm mt-1"></div>
</div>
</div>
`).join('') +
`<button onclick="submitAllFeedback()" class="mt-6 px-4 py-2 bg-purple-600 text-white rounded-lg hover:bg-purple-700">
๐ค Submit All Feedback
</button>
<button onclick="window.location.href='/download?file=${fileParam}'" class="mt-4 ml-4 px-4 py-2 bg-purple-600 text-white rounded-lg hover:bg-purple-700">
๐
Download Excel
</button>`;
} catch (err) {
p.textContent = `โ Failed to load timeline: ${err.message}`;
}
}
let suggestTimer = null;
document.getElementById("claim").addEventListener("input", () => {
clearTimeout(suggestTimer);
suggestTimer = setTimeout(fetchSuggestions, 300); // 300ms delay to avoid flooding
});
async function fetchSuggestions() {
const claimText = document.getElementById("claim").value.trim();
const suggestionBox = document.getElementById("similar-suggestions");
if (!claimText) {
suggestionBox.classList.add("hidden");
return;
}
const res = await fetch("/api/similar-pledges", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({ claim: claimText })
});
const data = await res.json();
const suggestions = data.suggestions || [];
if (suggestions.length === 0) {
suggestionBox.classList.add("hidden");
} else {
const author = "Labour";
const date = "2024-07-04";
suggestionBox.innerHTML =
"<div class='font-semibold mb-1'>๐ก Are you fact-checking ... </div>" +
"<ul class='list-disc ml-6 mt-1'>" +
suggestions.map(s => `
<li class="mb-2">
${author}: ${s.text} (${date})
<button
onclick="useSuggestedPledge('${s.text.replace(/'/g, "\\'")}', ${s.index})"
class="ml-2 px-2 py-1 text-xs bg-purple-600 text-white rounded hover:bg-purple-700 focus:outline-none focus:ring-2 focus:ring-purple-500">
Fact-check this pledge
</button>
</li>
`).join("") +
"</ul>";
suggestionBox.classList.remove("hidden");
}
}
checkBtn.addEventListener("click", async () => {
const claim = document.getElementById("claim").value.trim();
const pledgeDate = document.getElementById("pledge-date").value.trim();
const pledgeAuthor = document.getElementById("pledge-author").value.trim();
const statusElement = document.getElementById("status");
const resultBox = document.getElementById("result");
// resultBox.classList.remove("hidden");
const p = resultBox.querySelector("p");
let valid = true;
if (!claim) {
alert("Please enter the pledge text.");
valid = false;
}
if (!pledgeDate) {
document.getElementById("date-warning").classList.remove("hidden");
valid = false;
}
if (!pledgeAuthor) {
document.getElementById("author-warning").classList.remove("hidden");
valid = false;
}
if (!valid) return;
checkBtn.disabled = true;
checkBtn.classList.add("opacity-50", "cursor-not-allowed");
// document.getElementById("status").classList.remove("hidden");
// statusElement.innerHTML = renderStatus({});
// document.getElementById("result").classList.remove("hidden");
// document.getElementById("progress").classList.remove("hidden");
document.getElementById("status").innerHTML = "";
document.getElementById("result").classList.add("hidden");
document.getElementById("progress").classList.add("hidden");
document.getElementById("result").querySelector("p").innerHTML = "";
if (window.pollIntervalId) {
clearInterval(window.pollIntervalId);
window.pollIntervalId = null;
}
Object.keys(feedbackData).forEach(key => delete feedbackData[key]);
lastUsedFile = null;
lastUserId = null;
lastTimestamp = null;
// ๐ ๅฏไปฅ้ขๅ
ๆพ็คบๆ็คบ
document.getElementById("result").querySelector("p").textContent = "โณ Please wait, checking...";
try {
const timeRange = document.getElementById("time-range").value;
const pledgeDate = document.getElementById("pledge-date").value;
const pledgeAuthor = document.getElementById("pledge-author").value;
if (currentAbortController) currentAbortController.abort();
currentAbortController = new AbortController();
const signal = currentAbortController.signal;
let valid = true;
stepList = (suggestedPledge !== null) ? stepListSuggestion : stepListStandard;
if (!pledgeDate) {
document.getElementById("date-warning").classList.remove("hidden");
valid = false;
}
if (!pledgeAuthor) {
document.getElementById("author-warning").classList.remove("hidden");
valid = false;
}
if (!valid) return;
const userId = Math.random().toString(36).substring(2, 10);
const now = new Date();
const timestamp = now.toISOString().replace(/[:.]/g, "-").slice(0, 19);
statusElement.textContent = "";
// pollStatus(userId, timestamp, p);
pollStatus(userId, timestamp, document.getElementById("status"));
const runRes = await fetch("/api/run-model", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
claim,
time_range: timeRange,
pledge_date: pledgeDate,
pledge_author: pledgeAuthor,
user_id: userId,
timestamp: timestamp,
signal: signal,
suggestion_meta: suggestedPledge
})
});
const runData = await runRes.json();
lastUsedFile = runData.file;
lastUserId = runData.user_id;
lastTimestamp = runData.timestamp;
} catch (err) {
if (err.name === "AbortError") {
console.log("Previous request aborted.");
checkBtn.disabled = false;
checkBtn.classList.remove("opacity-50", "cursor-not-allowed");
return;
}
p.textContent = `โ Failed to load timeline: ${err.message}`;
}
});
async function useSuggestedPledge(text, index) {
document.getElementById("claim").value = text;
document.getElementById("pledge-author").value = "Labour";
document.getElementById("pledge-date").value = "2024-07-04";
suggestedPledge = { text, index };
alert("โ
This pledge has been filled in. You can now click 'Let's fact check!'");
await fetch("/api/log-similar-selection", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
selected_text: text,
index: index
})
});
}
</script>
</body>
</html>
|