Spaces:
Running
Running
File size: 31,275 Bytes
c001f24 |
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 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 |
{% extends "base.html" %}
{% block title %}Subjective Questions Manager{% endblock %}
{% block head %}
<script src="https://cdn.jsdelivr.net/npm/@editorjs/editorjs@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/@editorjs/header@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/@editorjs/list@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/@editorjs/raw@latest"></script>
<script src="https://cdn.jsdelivr.net/npm/@editorjs/simple-image@latest"></script>
<style>
.codex-editor__redactor { padding-bottom: 50px !important; }
.ce-block__content { max-width: 100%; }
/* Dark Mode Editor Fixes */
#editorjs {
color: #e0e0e0; /* Light gray text for better readability than pure white */
}
#editorjs ::selection {
background-color: #0d6efd; /* Bootstrap Primary Blue */
color: white;
}
/* Fix toolbar icons in dark mode if needed */
.ce-toolbar__content, .ce-block__content, .ce-inline-toolbar {
color: black; /* EditorJS tools are usually light-themed by default, keeping them black text on their white bg might be safer unless we fully theme them */
}
/* But wait, we set bg-dark on the container.
EditorJS doesn't natively support dark mode well without a plugin or heavy overrides.
Let's try to keep the text inside blocks light.
*/
.ce-block__content, .ce-header {
color: #e0e0e0 !important;
}
/* Selection fix for the dark container */
.codex-editor ::selection {
background-color: rgba(13, 110, 253, 0.5);
color: #ffffff;
}
</style>
{% endblock %}
{% block content %}
<div class="container mt-4">
<!-- Toolbar -->
<div class="d-flex justify-content-between align-items-center mb-3">
<div>
<h2 class="mb-0">Subjective Questions</h2>
<nav aria-label="breadcrumb">
<ol class="breadcrumb mb-0">
<li class="breadcrumb-item"><a href="{{ url_for('subjective.list_questions') }}">Home</a></li>
{% for crumb in breadcrumbs %}
<li class="breadcrumb-item"><a href="{{ url_for('subjective.list_questions', folder_path=crumb.path) }}">{{ crumb.name }}</a></li>
{% endfor %}
</ol>
</nav>
</div>
<div class="btn-group">
<button type="button" class="btn btn-success" onclick="openAddQuestionModal()">
<i class="bi bi-plus-circle"></i> Add Question
</button>
<button type="button" class="btn btn-primary" data-bs-toggle="modal" data-bs-target="#createFolderModal">
<i class="bi bi-folder-plus"></i> New Folder
</button>
<button type="button" class="btn btn-warning text-dark" id="moveBtn" disabled data-bs-toggle="modal" data-bs-target="#moveModal">
<i class="bi bi-arrow-right-square"></i> Move Selected
</button>
<button type="button" class="btn btn-outline-secondary" data-bs-toggle="modal" data-bs-target="#reorderTopicsModal">
<i class="bi bi-sort-down"></i> Reorder
</button>
<a href="{{ url_for('subjective.print_folder', folder_id=current_folder_id if current_folder_id else 'root') }}" target="_blank" class="btn btn-secondary">
<i class="bi bi-printer"></i> Print PDF
</a>
<a href="{{ url_for('subjective.generator') }}" class="btn btn-info">
<i class="bi bi-magic"></i> Generator
</a>
</div>
</div>
<!-- Flash Messages -->
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
<div class="alert alert-{{ category }} alert-dismissible fade show" role="alert">
{{ message }}
<button type="button" class="btn-close" data-bs-dismiss="alert" aria-label="Close"></button>
</div>
{% endfor %}
{% endif %}
{% endwith %}
<!-- Folders Section -->
{% if subfolders %}
<div class="row row-cols-2 row-cols-md-4 row-cols-lg-6 g-3 mb-4">
{% for folder in subfolders %}
<div class="col">
<div class="card h-100 shadow-sm text-center folder-card position-relative bg-dark text-white border-secondary">
<!-- Selection Checkbox -->
<div class="position-absolute top-0 end-0 p-2">
<input type="checkbox" class="form-check-input folder-checkbox" value="{{ folder.id }}">
</div>
<a href="{{ url_for('subjective.list_questions', folder_path=(breadcrumbs|map(attribute='name')|join('/') + '/' + folder.name if breadcrumbs else folder.name)) }}" class="text-decoration-none text-white d-flex flex-column align-items-center justify-content-center h-100 pt-4">
<div class="card-body w-100">
<i class="bi bi-folder-fill text-primary display-4"></i>
<h6 class="card-title mt-2" style="white-space: normal; overflow-wrap: break-word;">{{ folder.name }}</h6>
</div>
</a>
</div>
</div>
{% endfor %}
</div>
{% endif %}
<!-- Questions Section -->
{% if grouped_questions %}
{% for topic, questions_list in grouped_questions.items() %}
<div class="mb-5 topic-group">
<div class="topic-header p-2 rounded text-white mb-2 shadow-sm d-flex justify-content-between align-items-center">
<h5 class="mb-0 fw-bold"><i class="bi bi-bookmarks me-2"></i>{{ topic }}</h5>
<div class="d-flex align-items-center">
<button class="btn btn-sm btn-outline-light me-2 border-0" title="Add Question to this Topic" onclick="addQuestionToTopic('{{ topic }}', this)">
<i class="bi bi-plus-circle"></i>
</button>
<button class="btn btn-sm btn-outline-light me-2 border-0" title="Rename Topic" onclick="renameTopic('{{ topic }}')">
<i class="bi bi-pencil"></i>
</button>
<button class="btn btn-sm btn-outline-light me-2 border-0" title="Delete Topic" onclick="deleteTopic('{{ topic }}')">
<i class="bi bi-trash"></i>
</button>
<span class="badge bg-light text-dark me-3">{{ questions_list|length }} Questions</span>
<div class="form-check">
<input class="form-check-input group-select-all" type="checkbox" title="Select all in this topic">
</div>
</div>
</div>
<div class="card shadow-sm border-0">
<div class="table-responsive">
<table class="table table-hover mb-0 align-middle">
<thead class="table-light">
<tr>
<th style="width: 40px;"></th>
<th style="width: 60px;">#</th>
<th>Question</th>
<th style="width: 150px;" class="text-end">Actions</th>
</tr>
</thead>
<tbody>
{% for q in questions_list %}
<tr>
<td><input type="checkbox" class="question-checkbox" value="{{ q.id }}"></td>
<td><span class="badge number-badge">{{ q.question_number_within_topic }}</span></td>
<td><div class="text-break" style="max-width: 600px;">{{ q.question_html | safe }}</div></td>
<td class="text-end">
<button class="btn btn-sm btn-outline-primary border-0" onclick='editQuestion("{{ q.id }}", "{{ q.question_topic }}", "{{ q.question_number_within_topic }}", `{{ q.question_html|safe }}`, `{{ q.question_json if q.question_json else "null" }}`)'>
<i class="bi bi-pencil-square"></i>
</button>
<button class="btn btn-sm btn-outline-danger border-0" onclick="deleteQuestion('{{ q.id }}')">
<i class="bi bi-trash"></i>
</button>
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>
</div>
{% endfor %}
{% elif not subfolders %}
<div class="alert alert-info text-center p-5">
<h4>No Content</h4>
<p>This folder is empty. Generate new questions or create subfolders.</p>
<a href="{{ url_for('subjective.generator') }}" class="btn btn-primary">Generate Questions</a>
</div>
{% endif %}
</div>
<!-- Create Folder Modal -->
<div class="modal fade" id="createFolderModal" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Create New Folder</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<form id="createFolderForm">
<div class="mb-3">
<label for="folderName" class="form-label">Folder Name</label>
<input type="text" class="form-control" id="folderName" required>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" onclick="createFolder()">Create</button>
</div>
</div>
</div>
</div>
<!-- Move Items Modal -->
<div class="modal fade" id="moveModal" tabindex="-1">
<div class="modal-dialog modal-lg">
<div class="modal-content bg-dark text-white">
<div class="modal-header">
<h5 class="modal-title">Move Selected Items</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<p>Select destination folder:</p>
<div id="folder-tree-move" class="list-group" style="max-height: 300px; overflow-y: auto;"></div>
<hr>
<div class="input-group mb-3">
<input type="text" class="form-control" placeholder="New subfolder name" id="new-subfolder-name">
<button class="btn btn-outline-secondary" type="button" id="create-subfolder-btn">Create Subfolder</button>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" onclick="moveItems()">Move Here</button>
</div>
</div>
</div>
</div>
{% include 'reorder_modal.html' %}
<!-- Add/Edit Question Modal -->
<div class="modal fade" id="questionModal" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="questionModalTitle">Add Question</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<input type="hidden" id="q_id">
<div class="mb-3">
<label class="form-label">Topic</label>
<input type="text" class="form-control" id="q_topic" list="topicList">
<datalist id="topicList">
{% for t in grouped_questions.keys() %}
<option value="{{ t }}">
{% endfor %}
</datalist>
</div>
<div class="mb-3">
<label class="form-label">Question Number</label>
<input type="text" class="form-control" id="q_number">
</div>
<div class="mb-3">
<label class="form-label">Question Content</label>
<div id="editorjs" class="border rounded p-3 bg-dark text-white" style="min-height: 300px;"></div>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" onclick="saveQuestion()">Save</button>
</div>
</div>
</div>
</div>
<!-- Rename Topic Modal -->
<div class="modal fade" id="renameTopicModal" tabindex="-1">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title">Rename Topic</h5>
<button type="button" class="btn-close" data-bs-dismiss="modal"></button>
</div>
<div class="modal-body">
<input type="hidden" id="old_topic_name">
<div class="mb-3">
<label class="form-label">New Topic Name</label>
<input type="text" class="form-control" id="new_topic_name">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-primary" onclick="performRenameTopic()">Rename</button>
</div>
</div>
</div>
</div>
<script>
let editor;
function initEditor(data = {}) {
if (editor) {
try {
editor.destroy();
} catch (e) {}
editor = null;
}
// Ensure data is an object
if (typeof data === 'string') {
try { data = JSON.parse(data); } catch(e) { data = {}; }
}
editor = new EditorJS({
holder: 'editorjs',
data: data,
tools: {
header: window.Header,
list: window.NestedList || window.List || window.EditorjsList,
raw: window.RawTool,
image: window.SimpleImage
},
placeholder: 'Type your question here...'
});
}
// Color generation for topics
function stringToHslColor(str, s, l) {
let hash = 0;
for (let i = 0; i < str.length; i++) {
hash = str.charCodeAt(i) + ((hash << 5) - hash);
}
const h = hash % 360;
return 'hsl(' + h + ', ' + s + '%, ' + l + '%)';
}
document.addEventListener('DOMContentLoaded', function() {
const folderTree = {{ folder_tree|tojson }};
let selectedFolderId = null;
// Apply colors to Topic Headers
document.querySelectorAll('.topic-header').forEach(header => {
// Use the text of the h5 element which contains the topic name
const topic = header.querySelector('h5').innerText.trim();
header.style.backgroundColor = stringToHslColor(topic, 70, 40);
});
// Apply consistent style to number badges
document.querySelectorAll('.number-badge').forEach(badge => {
badge.classList.remove('bg-secondary');
badge.style.backgroundColor = '#6c757d';
badge.style.color = 'white';
});
// Selection Logic
const selectAll = document.getElementById('selectAll');
const questionCheckboxes = document.querySelectorAll('.question-checkbox');
const folderCheckboxes = document.querySelectorAll('.folder-checkbox');
const moveBtn = document.getElementById('moveBtn');
function updateMoveBtn() {
const anyQuestionChecked = Array.from(questionCheckboxes).some(cb => cb.checked);
const anyFolderChecked = Array.from(folderCheckboxes).some(cb => cb.checked);
if (moveBtn) moveBtn.disabled = !(anyQuestionChecked || anyFolderChecked);
}
// Group Select All (Questions only)
document.querySelectorAll('.group-select-all').forEach(groupCb => {
groupCb.addEventListener('change', function() {
const group = this.closest('.topic-group');
const groupCheckboxes = group.querySelectorAll('.question-checkbox');
groupCheckboxes.forEach(cb => cb.checked = this.checked);
updateMoveBtn();
});
});
if (selectAll) {
selectAll.addEventListener('change', function() {
const isChecked = selectAll.checked;
questionCheckboxes.forEach(cb => cb.checked = isChecked);
folderCheckboxes.forEach(cb => cb.checked = isChecked);
// Also toggle group select alls for visual consistency
document.querySelectorAll('.group-select-all').forEach(cb => cb.checked = isChecked);
updateMoveBtn();
});
}
questionCheckboxes.forEach(cb => cb.addEventListener('change', updateMoveBtn));
folderCheckboxes.forEach(cb => cb.addEventListener('change', updateMoveBtn));
// Folder Tree Logic
function renderFolderTree(folders, container, level = 0) {
const ul = document.createElement('ul');
ul.className = 'list-group';
if (level > 0) ul.style.display = 'none';
container.appendChild(ul);
folders.forEach(folder => {
const li = document.createElement('li');
li.className = 'list-group-item list-group-item-action bg-dark text-white';
li.style.paddingLeft = `${level * 20 + 12}px`;
li.dataset.folderId = folder.id;
let icon = folder.children && folder.children.length > 0 ? '<i class="bi bi-chevron-right"></i>' : '<i class="bi bi-folder"></i>';
li.innerHTML = `${icon} ${folder.name}`;
li.style.cursor = 'pointer';
li.addEventListener('click', e => {
e.stopPropagation();
document.querySelectorAll('#folder-tree-move .list-group-item').forEach(item => item.classList.remove('active'));
li.classList.add('active');
selectedFolderId = folder.id;
const childUl = li.querySelector('ul');
if (childUl) {
const iconEl = li.querySelector('i');
if (childUl.style.display === 'none') {
childUl.style.display = 'block';
iconEl.classList.replace('bi-chevron-right', 'bi-chevron-down');
} else {
childUl.style.display = 'none';
iconEl.classList.replace('bi-chevron-down', 'bi-chevron-right');
}
}
});
ul.appendChild(li);
if (folder.children) renderFolderTree(folder.children, li, level + 1);
});
}
if (moveBtn) {
moveBtn.addEventListener('click', () => {
const folderTreeContainer = document.getElementById('folder-tree-move');
folderTreeContainer.innerHTML = '';
const rootItem = document.createElement('a');
rootItem.href = '#';
rootItem.className = 'list-group-item list-group-item-action bg-dark text-white';
rootItem.dataset.folderId = 'null';
rootItem.innerHTML = `<i class="bi bi-house-door"></i> Root`;
rootItem.addEventListener('click', e => {
e.preventDefault();
document.querySelectorAll('#folder-tree-move .list-group-item').forEach(item => item.classList.remove('active'));
rootItem.classList.add('active');
selectedFolderId = null;
});
folderTreeContainer.appendChild(rootItem);
renderFolderTree(folderTree, folderTreeContainer);
});
}
document.getElementById('create-subfolder-btn').addEventListener('click', () => {
const newFolderName = document.getElementById('new-subfolder-name').value;
if (!newFolderName) return alert('Please enter a name for the new subfolder.');
fetch("{{ url_for('subjective.create_folder') }}", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-CSRFToken": "{{ csrf_token() if csrf_token else '' }}
{{ url_for('subjective.move_items') }}", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-CSRFToken": "{{ csrf_token() if csrf_token else '' }}"
},
body: JSON.stringify({
question_ids: questionIds,
folder_ids: folderIds,
target_folder_id: selectedFolderId
})
})
.then(res => res.json())
.then(data => {
if (data.success) {
location.reload();
} else {
alert('Error: ' + data.error);
}
});
};
});
function createFolder() {
const name = document.getElementById('folderName').value;
if (!name) return;
fetch("{{ url_for('subjective.create_folder') }}", {
method: "POST",
headers: {
"Content-Type": "application/json",
"X-CSRFToken": "{{ csrf_token() if csrf_token else '' }}"
},
body: JSON.stringify({
name: name,
parent_id: {{ current_folder_id if current_folder_id else 'null' }}
})
})
.then(res => res.json())
.then(data => {
if (data.success) {
location.reload();
} else {
alert('Error: ' + data.error);
}
});
}
// Manual Question Management Functions
let questionModal;
let renameTopicModal;
function addQuestionToTopic(topic, btn) {
// Find the parent topic group container
const topicGroup = btn.closest('.topic-group');
let maxNum = 0;
// Find all question number badges in this group
const badges = topicGroup.querySelectorAll('.number-badge');
badges.forEach(badge => {
// Extract number, handling potential non-numeric prefixes if any (though strictly they are just numbers in DB usually)
// Using regex to extract first sequence of digits
const text = badge.innerText;
const match = text.match(/(\d+)/);
if (match) {
const num = parseInt(match[0], 10);
if (num > maxNum) maxNum = num;
}
});
openAddQuestionModal(topic, maxNum + 1);
}
function openAddQuestionModal(prefillTopic = "", prefillNumber = "") {
if (!questionModal) questionModal = new bootstrap.Modal(document.getElementById('questionModal'));
document.getElementById('questionModalTitle').innerText = "Add Question";
document.getElementById('q_id').value = "";
// Prefill or clear
document.getElementById('q_topic').value = prefillTopic;
document.getElementById('q_number').value = prefillNumber;
initEditor();
questionModal.show();
}
function editQuestion(id, topic, number, html, jsonStr) {
if (!questionModal) questionModal = new bootstrap.Modal(document.getElementById('questionModal'));
document.getElementById('questionModalTitle').innerText = "Edit Question";
document.getElementById('q_id').value = id;
document.getElementById('q_topic').value = topic;
document.getElementById('q_number').value = number;
let data = {};
if (jsonStr && jsonStr !== 'None' && jsonStr !== 'null') {
try { data = JSON.parse(jsonStr); } catch(e) { console.error(e); }
} else if (html) {
// Migration: Convert legacy HTML to a Paragraph block
data = {
time: Date.now(),
blocks: [{
type: "paragraph",
data: { text: html }
}]
};
}
initEditor(data);
questionModal.show();
}
async function saveQuestion() {
const id = document.getElementById('q_id').value;
const topic = document.getElementById('q_topic').value;
const number = document.getElementById('q_number').value;
const folderId = {{ current_folder_id if current_folder_id else 'null' }};
const outputData = await editor.save();
const jsonStr = JSON.stringify(outputData);
// Generate HTML for legacy/display support (simple conversion)
let html = "";
outputData.blocks.forEach(block => {
if (block.type === 'header') html += `<h${block.data.level}>${block.data.text}</h${block.data.level}>`;
else if (block.type === 'paragraph') html += `<p>${block.data.text}</p>`;
else if (block.type === 'list') {
html += block.data.style === 'ordered' ? '<ol>' : '<ul>';
block.data.items.forEach(i => html += `<li>${i}</li>`);
html += block.data.style === 'ordered' ? '</ol>' : '</ul>';
}
else if (block.type === 'image' || block.type === 'simple-image') {
const url = block.data.url;
const caption = block.data.caption || '';
html += `<div class="text-center my-2"><img src="${url}" class="img-fluid rounded" style="max-height: 300px;" alt="${caption}"><br><small class="text-muted">${caption}</small></div>`;
}
else if (block.type === 'raw') html += block.data.html;
});
const url = id ? `/subjective/question/update/${id}` : '/subjective/question/add';
const payload = id ? { topic, number, html, json: jsonStr } : { topic, number, html, json: jsonStr, folder_id: folderId };
fetch(url, {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-CSRFToken': "{{ csrf_token() if csrf_token else '' }}"
},
body: JSON.stringify(payload)
})
.then(res => res.json())
.then(data => {
if (data.success) {
location.reload();
} else {
alert("Error: " + data.error);
}
});
}
function deleteQuestion(id) {
if(!confirm("Are you sure you want to delete this question?")) return;
fetch(`/subjective/question/delete/${id}`, {
method: 'DELETE',
headers: {
'X-CSRFToken': "{{ csrf_token() if csrf_token else '' }}"
}
})
.then(res => res.json())
.then(data => {
if (data.success) location.reload();
else alert("Error: " + data.error);
});
}
function renameTopic(oldName) {
if (!renameTopicModal) renameTopicModal = new bootstrap.Modal(document.getElementById('renameTopicModal'));
document.getElementById('old_topic_name').value = oldName;
document.getElementById('new_topic_name').value = oldName;
renameTopicModal.show();
}
function performRenameTopic() {
const oldTopic = document.getElementById('old_topic_name').value;
const newTopic = document.getElementById('new_topic_name').value;
const folderId = {{ current_folder_id if current_folder_id else 'null' }};
if (!newTopic) return;
fetch('/subjective/topic/rename', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-CSRFToken': "{{ csrf_token() if csrf_token else '' }}"
},
body: JSON.stringify({ old_topic: oldTopic, new_topic: newTopic, folder_id: folderId })
})
.then(res => res.json())
.then(data => {
if (data.success) location.reload();
else alert("Error: " + data.error);
});
}
function deleteTopic(topic) {
if(!confirm(`Are you sure you want to delete ALL questions in topic "${topic}"?`)) return;
const folderId = {{ current_folder_id if current_folder_id else 'null' }};
fetch('/subjective/topic/delete', {
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-CSRFToken': "{{ csrf_token() if csrf_token else '' }}"
},
body: JSON.stringify({ topic: topic, folder_id: folderId })
})
.then(res => res.json())
.then(data => {
if (data.success) location.reload();
else alert("Error: " + data.error);
});
}
</script>
{% endblock %}
|