Spaces:
Sleeping
Sleeping
File size: 61,132 Bytes
8245187 |
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 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 |
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/css/select2.min.css" rel="stylesheet"/>
<script src="https://cdnjs.cloudflare.com/ajax/libs/select2/4.0.3/js/select2.min.js"></script>
<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>
<link rel="stylesheet" href="https://use.typekit.net/zos0ars.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="static/style.css">
<link rel="stylesheet" href="static/MenuStyle.css">
<link rel="stylesheet" href="static/LegendPageStyle.css">
<link rel="stylesheet" href="static/popups.css">
<link rel="stylesheet" href="static/IMG-Larger.css">
<link rel="stylesheet" href="static/searchButton.css">
<meta charset="utf-8">
<title>ADR Console</title>
<link rel = "icon" type = "image/png" sizes = "180x154" href = "static/images/TSAlogoCropped180x154.png">
<link rel = "icon" type = "image/png" sizes = "32x27" href = "static/images/TSAlogoCropped32x27.png">
<link rel = "icon" type = "image/png" sizes = "16x14" href = "static/images/TSAlogoCropped16x14.png">
<link rel = "mask-icon" href = "static/images/TSAlogoCropped180x154.png">
<link rel = "shortcut icon" href = "static/images/TSAlogoCropped180x154.png">
<script src="https://cdn.anychart.com/releases/8.9.0/js/anychart-core.min.js"></script>
<script src="https://cdn.anychart.com/releases/8.9.0/js/anychart-sunburst.min.js"></script>
<script src="https://cdn.anychart.com/releases/8.9.0/js/anychart-data-adapter.min.js"></script>
</head>
<body >
<div id="all">
{% include 'loading.html' %}
</div>
<!--Main tab links-->
<div class="tab" >
<div class="container" id="toggle">
<div class="bar1"></div>
<div class="bar2"></div>
<div class="bar3"></div>
</div>
<button class="tablinks" id="pagetitle" onclick="openTab(event, 'home')">ADR Console <i class="fa fa-home" > </i></button>
<!-- <button class="tablinks" id="LegendHist" onclick="openTab(event, 'legends')">Legends History <i class="fa fa-caret-down"></i></button> -->
<a class="tablinks" id="LegendHist" href="{{ url_for('legendDirectory') }}">Legends History <i class="fa fa-caret-down"></i></a>
<button class="dropbtn" onclick="userguideclick()"><img id="infoImg" src="data:image/png;base64,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"></button>
</div>
<div id="mySidebar" class="slide-out">
<div id="menuOptions">
<li><a href="{{ url_for('measurementConsoleFn') }}">Measure Plans </a></li>
<li><a href="{{ url_for('searchDocument') }}">Search in Documents</a></li>
<li onclick=redirectOmarSearch()>Table Detection</li>
</div>
</div>
<form method="post" id="myForm" enctype="multipart/form-data">
<div id ="">
<select name="selectproj" class="selectionsProj" id="selectionsProjid" required > </select>
</div>
<div id ="projectpart">
<select name="selectprojp" class="selectionsProjp" id="selectionsProjpid" required> </select>
</div>
<div id ="projectsection">
<select name="selectprojs" class="selectionsProjs" onchange=getproj() required> </select>
</div>
<div id ="tomeasurediv">
<div>
<label id="measureLabel">Document To Measure</label>
<input type="search" onkeyup=filterFunction(this.id) id="tomeasureSearchInput">
<!-- <button id="refreshDropboxButtonID"></button> -->
<i hidden class="fa fa-dropbox fa-lg" id="refreshDropboxButtonID">
<span class="dropboxtip">The console updates projects retrieved from Dropbox automatically at 9:00 am and 9:00 p.m. If you need to access any projects in between, just click on this button. Please note that it will refresh the files related to the project you chose only.</span> </i>
</div>
<div id="measureCheckbox">
<!-- <select style="margin-left: -1%;" hidden name="measureselectname" id="measureselectid" multiple size="5"></select> -->
<div id="measureContainer" hidden required></div>
</div>
</div>
<button id="Newtablebutton">Table Detect</button>
</form>
<!-- <button id="downloadbutton" hidden>Download Tables</button> -->
<input type="button" value="Download Tables" id="downloadbutton" style="display: none;" />
<div id="progressBar" hidden>
<div id="progress">0%</div>
</div>
<!-- Modal popup box -->
<div id="mpopupBox" class="mpopup" name="tobeclosed">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="closeModal" data-dismiss="modal">×</button>
<h2 id="TopTextModal">Error</h2>
</div>
<div class="modal-body">
<p id="modal-bodyText">
</p>
<br>
</div>
</div>
</div>
<!-- Modal popup box -->
<div id="mpopupBox" class="mpopup" name="tobeclosed">
<!-- Modal content -->
<div class="modal-content">
<div class="modal-header">
<button type="button" class="closeModal" data-dismiss="modal">×</button>
<h2 id="TopTextModal">Error</h2>
</div>
<div class="modal-body">
<p id="modal-bodyText">
</p>
<br>
</div>
</div>
</div>
<div id="loading" hidden> </div>
</body>
</html>
<script>
var closeButtons = document.querySelectorAll(".closeModal");
var allCloseDivs = document.getElementsByName("tobeclosed");
closeButtons.forEach(function(button) {
button.addEventListener("click", function() {
allCloseDivs.forEach(function(div) {
div.style.display = "none";
});
});
});
document.getElementById("myForm").addEventListener("submit", function (e) {
e.preventDefault(); // Prevent form submission
let isChecked = document.querySelector('input[name="measureCheckbox"]:checked') !== null;
// let sectionNumber = projsec.value; // Ensure projsec is defined
// let isRelvClicked = document.querySelector(".relv-item[style*='background-color']") !== null;
let TopTextModal = document.getElementById("TopTextModal");
TopTextModal.textContent = "Warning: Missing Inputs";
if (!isChecked){
PopupElement.textContent = "Please select at least one project from 'Documents to Measure' before proceeding!";
ShowPopUp();
return;
}
// If validation passes, proceed with form submission
getData(e.target);
});
function getData(form) {
document.getElementById("loading").hidden = false;
document.getElementById('Newtablebutton').setAttribute('disabled',true);
document.getElementById('Newtablebutton').style.cursor='not-allowed';
document.getElementById('Newtablebutton').style.boxShadow = 'none';
document.getElementById('Newtablebutton').style.color = 'white';
document.getElementById('Newtablebutton').style.backgroundColor="rgb(154,152,152)";
var formData = new FormData(form);
// clearInterval(interval)
val=0;
answers=[];
tomeasureproj='';
pdfpath=[];
formvalues=Object.fromEntries(formData);
tomeasureproj=formvalues['measureCheckbox']; //proj name
answers.push(tomeasureproj);
formData.append('answers',JSON.stringify(answers))
// Place this once in your JS before any $.ajax calls
$.ajaxTransport("+binary", function(options, originalOptions, jqXHR) {
if (window.FormData && (
(options.dataType && options.dataType === "binary") ||
(options.data && ((window.ArrayBuffer && options.data instanceof ArrayBuffer) ||
(window.Blob && options.data instanceof Blob)))
)) {
return {
send: function(headers, callback) {
const xhr = new XMLHttpRequest();
xhr.open(options.type, options.url, options.async ?? true,
options.username, options.password);
// Apply custom fields like responseType
xhr.responseType = options.responseType || "blob";
if (options.xhrFields) {
for (const field in options.xhrFields) {
xhr[field] = options.xhrFields[field];
}
}
xhr.onload = function() {
// Package the response as the declared dataType
const data = {};
data[options.dataType] = xhr.response;
callback(xhr.status, xhr.statusText, data, xhr.getAllResponseHeaders());
};
xhr.send(options.data || null);
},
abort: function() {
jqXHR.abort();
}
};
}
});
$.ajax({
// type: "POST",
// url: "/savedetectedtables/",
// // contentType: "application/json", // set content type header to use Flask response.get_json()
// data: formData,// convert data/object to JSON to send
// processData: false, // Prevent jQuery from automatically processing the data
// contentType: false,
// xhr: function() {
// const x = $.ajaxSettings.xhr();
// x.responseType = "blob"; // set blob mode
// return x;
// },
url: "/savedetectedtables/",
method: "POST",
data: formData,
processData: false,
contentType: false,
dataType: 'binary', // match your transport
responseType: 'blob', // tell the transport to use blob
success: function(blob) {
console.log(blob);
// downloadPdf(data,'detected_tables.xlsx')
console.log('typeof(blob) = ',typeof(blob))
if (!blob || blob.size === 0) {
// empty response → show your “no tables” popup
PopupElement.textContent = "No tables detected in the document.";
ShowPopUp();
return;
}
else{
console.log("gowa el else")
downloadPdf(blob,'detected_tables.xlsx')
}
},
error: function(err) {
var TopTextModal = document.getElementById("TopTextModal");
TopTextModal.textContent='Error'
PopupElement.textContent='Error occured. Refresh and try again. If the error continues, please contact the ADR team to fix it. ';
ShowPopUp();
}
})
.done(function(data){
console.log(data)
document.getElementById("loading").hidden = true;
document.getElementById('Newtablebutton').removeAttribute('disabled');
document.getElementById('Newtablebutton').style.cursor='pointer';
document.getElementById('Newtablebutton').style.color = 'white';
document.getElementById('Newtablebutton').style.backgroundColor="#16c72e";
document.getElementById('Newtablebutton').style.padding='10px 102px';
document.getElementById('Newtablebutton').addEventListener('mouseover',function(){
document.getElementById('Newtablebutton').style.color='black';
document.getElementById('Newtablebutton').style.boxShadow=' 0 0 8px 2px #16c72e';
})
document.getElementById('Newtablebutton').addEventListener('mouseout',function(){
document.getElementById('Newtablebutton').style.color='white';
document.getElementById('Newtablebutton').style.boxShadow='none';
});
// downloadPdf(data,'detected_tables.xlsx')
// downloadPdf(blob,'detected_tables.xlsx')
// document.getElementById('downloadbutton').hidden = false;
document.getElementById('downloadbutton').style.display = 'inline-block';
// document.getElementById('downloadbutton').onclick=downloadPdf(data,'detected_tables.xlsx')
const btn = document.getElementById('downloadbutton');
btn.addEventListener('click', () => {
downloadPdf(data, 'detected_tables.xlsx');
});
})
};
document.getElementById('Newtablebutton').onclick= function()
{
if (!measSelect.value) {
measSelect.style.boxShadow = '0 0 8px 2px rgb(255, 0, 0)';
measSelect.setAttribute("required", "")
}
}
document.getElementById('Newtablebutton').addEventListener('click',function(){
if (!document.getElementsByClassName('selectionsProj')[0].value)
document.getElementsByClassName('selectionsProj')[0].style.boxShadow='0 0 8px 2px rgb(255, 0, 0)';
if (!document.getElementsByClassName('selectionsProjp')[0].value)
document.getElementsByClassName('selectionsProjp')[0].style.boxShadow='0 0 8px 2px rgb(255, 0, 0)';
if (!document.getElementsByClassName('selectionsProjs')[0].value)
document.getElementsByClassName('selectionsProjs')[0].style.boxShadow='0 0 8px 2px rgb(255, 0, 0)';
//___________________________________________________________________________________________________________
//___________________________________________________________________________________________________________
if (document.getElementById('imgContainer')) {
document.getElementById('imgContainer').innerHTML = '';
}
});
var mpopup = document.getElementById('mpopupBox');
// Select close action element
// var close = document.getElementsByClassName("closeModal")[0];
function ShowPopUp(){
// Open modal
mpopup.style.display = "block";
}
// Close modal once close element is clicked
// close.onclick = function() {
// mpopup.style.display = "none";
// };
// Close modal when user clicks outside of the modal box
window.onclick = function(event) {
if (event.target == mpopup) {
mpopup.style.display = "none";
}
};
// closeDialog.onclick = function() {
// dialog_container.style.display = "none";
// };
var dialog_container = document.getElementById('dialog-container');
// Select close action element
// var closeDialog = document.getElementsByClassName("closeModal")[0];
function ShowPopUpWarning(){
// Open modal
dialog_container.style.display = "block";
}
// Close modal once close element is clicked
// closeDialog.onclick = function() {
// console.log()
// dialog_container.style.display = "none";
// };
// Close modal when user clicks outside of the modal box
window.onclick = function(event) {
if (event.target == dialog_container) {
dialog_container.style.display = "none";
}
};
PopupElement=document.getElementById('modal-bodyText');
var ActiveSections=['1.0','2.1','2.6','2.7','2.8','3.2','3.3']
var menuItems = document.querySelectorAll("#UserGuidemenuOptions li");
menuItems.forEach(function (item) {
// Extract the section number (first part of the text)
var sectionNumber = item.textContent.trim().split(" ")[0];
// If the section is not in ActiveSections, disable it
if (!ActiveSections.includes(sectionNumber)) {
item.id = "disabledSection"; // Assign ID
item.style.color = "#bdbcbc"; // Greyed-out text
item.style.cursor = "not-allowed"; // Change cursor
item.onclick = null; // Disable clicking
}
});
function updateProgressBar(value) {
const progressBar = document.getElementById('progress');
progressBar.style.width = value + '%';
progressBar.innerText = Math.round(value) + '%';
}
function redirectOmarSearch(){
$toggle.classList.toggle("change");
var isOpen = $mySidebar.classList.contains('slide-out');
$mySidebar.setAttribute('class', isOpen ? 'slide-in' : 'slide-out');
w3_close()
}
sectionSelect=document.getElementById('section-select');
$(sectionSelect).select2({
closeOnSelect: true,
width:'20ch'
});
// add project names to first dropdown from google sheet
firstdropdown=document.getElementsByClassName('selectionsProj')[0];
seconddropdown=document.getElementsByClassName('selectionsProjp')[0];
thirddropdown=document.getElementsByClassName('selectionsProjs')[0];
$(firstdropdown).select2({
placeholder:'Projects',
closeOnSelect: true,
width:'51ch'
});
$(seconddropdown).select2({
placeholder:'Project Parts',
closeOnSelect: true,
width:'51ch'
});
$(thirddropdown).select2({
placeholder:'Sections',
closeOnSelect: true,
width:'51ch'
});
var measSelect = document.getElementById("measureselectid");
// var relvSelect = document.getElementById("relvselectid");
document.getElementById("all").style.display = "block";
PrjNamesArray=[];
PrjPartsArray=[];
PrjSectionsArray=[];
var partsArrwithID=[];
var firstDpwnValue;
var prjids=[]
displayprjnames()
function displayprjnames(){
var eventSource = new EventSource('/getprojectnames/');
document.getElementById('progressBar').removeAttribute('hidden')
document.getElementById('progressBar').style.display='block';
eventSource.onmessage = function (event) {
var progress = parseInt(event.data); // Progress value from Flask
if (progress <= 100) {
console.log(progress); // Log progress for debugging
document.getElementById('progress').style.width = progress + '%';
document.getElementById('progress').textContent = progress + '%';
} else {
// Final data handling when progress reaches 100%
console.log('Process completed!');
// Parse and handle the final response data (documentsToMeasure, RelevantDocuments, extracted_path)
var data = JSON.parse(event.data); // Assuming the result is a JSON array
console.log('Final result:', data);
// You can use this data to update your page or handle it accordingly
eventSource.close(); // Close the connection when finished
document.getElementById('progressBar').setAttribute('hidden',true)
document.getElementById('progressBar').style.display='none';
document.getElementById('progress').style.width = '0%'; // Reset progress for the next process
document.getElementById('progress').textContent = '0%';
document.getElementById("all").style.display = "none";
prjids=data[1];
var op0 = document.createElement("OPTION") ;
op0.text= 'Projects'
op0.value= "";
op0.hidden=true;
firstdropdown.add(op0);
for (let i=0;i<data[0].length;i++)
{
opt=document.createElement("option");
opt.textContent=data[0][i];
opt.text=data[0][i];
firstdropdown.append(opt);
PrjNamesArray.push(data[0][i]);
}
}
}
eventSource.onerror = function (error) {
console.error('Error occurred:', error);
eventSource.close(); // Close on error
PopupElement.textContent='Error occured while retrieving the Project Names. Refresh and try again. If the error continues, please contact the ADR team to fix it. ';
ShowPopUp();
};
}
/*Get chosen value and send to flask to get project parts*/
$(firstdropdown).on("change", function (e) {
console.log('clickeds')
firstDpwnValue=firstdropdown.value;
seconddropdown.innerHTML='';
var op0 = document.createElement("OPTION") ;
op0.text= 'Project Part'
op0.value= "";
op0.hidden=true;
seconddropdown.add(op0);
var ii, L = seconddropdown.options.length - 1;
for(ii = L; ii >= 0; ii--) {
if (seconddropdown.options[ii].value)
seconddropdown.remove(ii);
}
displayprojparts(prjids[(firstdropdown.selectedIndex)-1]);
})
var partsArrIDsonly=[]
function displayprojparts(val){
document.getElementById("all").style.display = "block";
console.log(val)
$.get('/getprojectparts/'+JSON.stringify(val))
.success(function(data){
document.getElementById("all").style.display = "none";
partsArrwithID= data[0];
partsArrIDsonly= data[1];
for (let i=0;i<data[0].length;i++)
{
opt=document.createElement("option");
opt.value=data[0][i];
opt.text=data[0][i];
seconddropdown.append(opt);
PrjPartsArray.push(data[0][i]);
}
})
.error(function(jqXHR, textStatus, errorThrown) {
PopupElement.textContent='Error occured while retrieving the Project Parts. Refresh and try again. If the error continues, please contact the ADR team to fix it. ';
ShowPopUp();
});
}
$(seconddropdown).on("change", function (e) {
thirddropdown.innerHTML='';
var op0 = document.createElement("OPTION") ;
op0.text= 'Section'
op0.value= "";
op0.hidden=true;
thirddropdown.add(op0);
displayprojsections(prjids[(firstdropdown.selectedIndex)-1],partsArrIDsonly[(seconddropdown.selectedIndex)-1]);
})
function isValueNotInDropdown(dropdown, value) {
// const dropdown = document.getElementById(dropdownId);
const values = Array.from(dropdown.options).map(option => option.value);
return !values.includes(value); // Check if the value is not in dropdown values
}
function displayprojsections(projectid,Partid){
console.log(seconddropdown.selectedIndex)
document.getElementById("all").style.display = "block";
if (measSelect && measSelect.hasChildNodes()) {
while (measSelect.firstChild) {
measSelect.removeChild(measSelect.firstChild);
}
}
// if (relvSelect && relvSelect.hasChildNodes()) {
// while (relvSelect.firstChild) {
// relvSelect.removeChild(relvSelect.firstChild);
// }
// }
$.get('/getprojectsections/' + JSON.stringify([projectid, Partid]))
.done(function(data) {
document.getElementById("all").style.display = "none";
for (let i = 0; i < data.length; i++) {
let valueDoesNotExist = isValueNotInDropdown(thirddropdown, data[i]);
if (valueDoesNotExist) {
let opt = document.createElement("option");
opt.value = data[i];
opt.text = data[i];
let isActive = false;
for (let d = 0; d < ActiveSections.length; d++) {
if (data[i].startsWith(ActiveSections[d])) {
isActive = true;
break; // Exit loop early if active
}
}
if (!isActive) {
opt.style.color = '#bdbcbc';
opt.style.cursor = 'not-allowed';
opt.setAttribute('disabled', true);
}
thirddropdown.append(opt);
PrjSectionsArray.push(data[i]);
}
}
})
.fail(function(jqXHR, textStatus, errorThrown) {
PopupElement.textContent='Error occured while retrieving the Project Sections. Refresh and try again. If the error continues, please contact the ADR team to fix it. ';
ShowPopUp();
});
}
function filterFunction(id) {
var input, filter, ul, li, a, i;
input = document.getElementById(id);
filter = input.value.toUpperCase();
if (id.toString().startsWith('tomeasure'))
a = document.querySelectorAll("#measureContainer .measure-item");
// a = document.getElementById("measureselectid").children;
// else
// // a = document.getElementById("relvselectid").children;
// a = document.querySelectorAll("#relvselectid .relv-item");
// a = div.getElementsByTagName("option");
for (i = 0; i < a.length; i++) {
txtValue = a[i].textContent || a[i].innerText;
if (txtValue.toUpperCase().indexOf(filter) > -1) {
a[i].style.display = "";
} else {
a[i].style.display = "none";
}
}
}
function getproj(){
var proj = document.getElementsByClassName("selectionsProj")[0];
var projectVal=proj.value.toString() //selected project
var inputs = document.getElementsByTagName("select")[1]; //second dropdown(project part)
var p=document.getElementById("selectionsProjpid") //project part
var sections = document.getElementsByClassName("selectionsProjs")[0];
var eventSource = new EventSource('/getmethod/' + JSON.stringify(projectVal));
document.getElementById('progressBar').removeAttribute('hidden')
document.getElementById('progressBar').style.display='block';
eventSource.onmessage = function (event) {
var progress = parseInt(event.data); // Progress value from Flask
if (progress <= 100) {
console.log(progress); // Log progress for debugging
document.getElementById('progress').style.width = progress + '%';
document.getElementById('progress').textContent = progress + '%';
} else {
// Final data handling when progress reaches 100%
console.log('Process completed!');
// Parse and handle the final response data (documentsToMeasure, RelevantDocuments, extracted_path)
var data = JSON.parse(event.data); // Assuming the result is a JSON array
console.log('Final result:', data);
// You can use this data to update your page or handle it accordingly
eventSource.close(); // Close the connection when finished
document.getElementById('progressBar').setAttribute('hidden',true)
document.getElementById('progressBar').style.display='none';
document.getElementById('progress').style.width = '0%'; // Reset progress for the next process
document.getElementById('progress').textContent = '0%';
document.getElementById('refreshDropboxButtonID').style.display = "block";
document.getElementById("all").style.display = "none";
// if (sections.value.startsWith('3.2') || sections.value.startsWith('3.3') || sections.value.startsWith('2.7') ){
// document.getElementById('dxfdiv').removeAttribute('hidden');
// document.getElementById('pdftodxfFile').setAttribute('required',true)
// }
// else{
// document.getElementById('dxfdiv').setAttribute('hidden',true)
// }
extracted_path=data[2]
var docsToMeasure=data[0]; //
// var relvDocs=data[1]
var projname = document.getElementsByClassName("selectionsProj")[0];
var projpart = document.getElementsByClassName("selectionsProjp")[0];
var projsec = document.getElementsByClassName("selectionsProjs")[0];
var meas = document.getElementById("measureCheckbox") ;
// var relv = document.getElementById("relvdiv") ;
const measids=[];
// const relvids=[];
const measoptns=[];
// var measSelect = document.getElementById("measureselectid");
var measSelect = document.getElementById("measureContainer");
// var relvSelect = document.getElementById("relvselectid");
// var levelcheckbox= document.getElementById("levelcheckbox");
measSelect.removeAttribute("hidden");
// relvSelect.removeAttribute("hidden");
if (measSelect && measSelect.hasChildNodes()) {
while (measSelect.firstChild) {
measSelect.removeChild(measSelect.firstChild);
}
}
var optn2 = document.createElement("div"); // Use a <div> instead of <option>
optn2.textContent = 'Select project to measure'; // Set text content
optn2.hidden = true; // Keep it hidden
optn2.id = 'hidden';
measSelect.appendChild(optn2); // Append to div instead of .add()
document.getElementById("hidden").required = true;
// if (relvSelect && relvSelect.hasChildNodes()) {
// while (relvSelect.firstChild) {
// relvSelect.removeChild(relvSelect.firstChild);
// }
// }
const nameSet = new Set(); // To track unique names
// const nameSetRelv = new Set(); // To track unique names
// Action foconst nameSet = new Set(); // To track unique names
// Action for when the checkbox is clicked
function handleCheckboxChange(event) {
// Uncheck all checkboxes before checking the current one
document.querySelectorAll('input[name="measureCheckbox"]').forEach(checkbox => {
checkbox.checked = false;
});
// Check the current checkbox
event.target.checked = true;
// Action when checkbox is clicked (e.g., log the selected project)
let selectedValue = event.target.value;
measSelect.value=selectedValue;
console.log("Selected project:", selectedValue);
// Highlight the selected item
document.querySelectorAll(".measure-item").forEach(item => {
item.style.backgroundColor = ''; // Reset background color for all items
});
event.target.closest(".measure-item").style.backgroundColor = '#d3f8d3'; // Highlight the selected item
// Show alert immediately to prompt the user
// if (projsec.value.startsWith('3.2') || projsec.value.startsWith('3.3') || projsec.value.startsWith('2.7')) {
// // downloadPdf(selectedValue);
// downloadPdf(selectedValue,'DXF_File_:'+selectedValue)
// // window.alert("Measure the purple shape drawn on the PDF using Foxit Reader, Bluebeam, or any other external tool, then enter its area and perimeter in your desired scale.");
// }
// else{
// window.alert("Measure the purple shape drawn on the PDF using Foxit Reader, Bluebeam, or any other external tool, then enter its area and perimeter in your desired scale.");
// }
canvasimg='';
ry=[[]];
// levelcheckbox.checked=false;
pdfname=selectedValue;
measSelect.style.boxShadow='none';
console.log(projsec.value)
// if (!(projsec.value.startsWith('2.6') || projsec.value.startsWith('2.8'))) {
// document.getElementById("all").style.display = "block";
// pixelArr=[projname.value, projpart.value,projsec.value, pdfname]
// var eventSource = new EventSource('/pixelimg/' + JSON.stringify(pixelArr));
// document.getElementById('progressBar').removeAttribute('hidden')
// document.getElementById('progressBar').style.display='block';
// eventSource.onmessage = function (event) {
// var progress = parseInt(event.data); // Progress value from Flask
// if (progress <= 100) {
// console.log(progress); // Log progress for debugging
// document.getElementById('progress').style.width = progress + '%';
// document.getElementById('progress').textContent = progress + '%';
// } else {
// var data = JSON.parse(event.data); // Assuming the result is a JSON array
// eventSource.close(); // Close the connection when finished
// document.getElementById('progressBar').setAttribute('hidden',true)
// document.getElementById('progressBar').style.display='none';
// document.getElementById('progress').style.width = '0%'; // Reset progress for the next process
// document.getElementById('progress').textContent = '0%';
// document.getElementById("all").style.display = "none";
// // Display link or any additional data if needed
// window.open(data[2]);
// downloadPdf(pdfname,'Pixel_Conversion_File_:'+pdfname)
// document.getElementById("all").style.display = "none";
// document.getElementById('Newtablebutton').onclick= function()
// {
// if (!areaRatio.value){
// if (!(projsec.value.startsWith('3.2')) & !(projsec.value.startsWith('2.8')) & !(projsec.value.startsWith('2.6')) & !(projsec.value.startsWith('3.3')) & !(projsec.value.startsWith('2.7')) )
// areaRatio.style.boxShadow='0 0 8px 2px rgb(255, 0, 0)';
// }
// if (!prmRatio.value) {
// if (!(projsec.value.startsWith('2.6') || projsec.value.startsWith('2.8'))) {
// prmRatio.style.boxShadow = '0 0 8px 2px rgb(255, 0, 0)';
// }
// }
// }
// document.getElementById('radiosColors').removeAttribute('hidden');
// var scalelbl= document.createElement("label");
// scalelbl.innerText='Scale Document';
// scalelbl.id='measureLabel';
// var br1= document.createElement("br");
// var areadiv=document.createElement("div");
// areadiv.id='areadiv'
// var areaRatiolbl= document.createElement("label");
// areaRatiolbl.innerText='Area:'
// areaRatiolbl.id='radiolbl';
// var areaRatio= document.createElement("input");
// areaRatio.type='number';
// areaRatio.id='arealvlinput';
// areaRatio.className='lvlinput';
// areaRatio.name='areaRatio';
// areaRatio.style.marginLeft='78px';
// areaRatio.style.textAlign='right';
// areaRatio.step=".0000001";
// areaRatio.min = "0"; // Allow only positive numbers (>= 0)
// if( projsec.value.startsWith('3.2') || projsec.value.startsWith('3.3') || projsec.value.startsWith('2.1') || projsec.value.startsWith('2.7')){
// areaRatio.setAttribute('disabled',true)
// areaRatio.style.cursor='not-allowed';
// areaRatio.style.backgroundColor='rgba(101, 101, 101, 0.27)'
// document.getElementById('selectunitA').setAttribute('disabled',true)
// document.getElementById('selectunitA').style.cursor='not-allowed';
// document.getElementById('selectunitA').style.backgroundColor='rgba(101, 101, 101, 0.27)'
// }
// else{ // section 1.0
// areaRatio.removeAttribute('disabled')
// areaRatio.style.cursor='pointer';
// document.getElementById('selectunitA').removeAttribute('disabled')
// document.getElementById('selectunitA').style.cursor='pointer';
// }
// areaRatio.addEventListener('change',function(){
// areaRatio.value=(Number(areaRatio.value)).toFixed(7)
// areaRatio.style.boxShadow='none';
// })
// areaRatio.required=true;
// selectunitA=document.getElementById('selectunitA')
// selectunitA.removeAttribute('hidden')
// areadiv.append(areaRatiolbl,areaRatio,selectunitA)
// var br2= document.createElement("br");
// var br3= document.createElement("br");
// var prmdiv=document.createElement("div");
// prmdiv.id='prmdiv'
// var prmRatiolbl= document.createElement("label");
// prmRatiolbl.innerText='Perimeter:'
// prmRatiolbl.id='radiolbl';
// var prmRatio= document.createElement("input");
// prmRatio.type='number';
// prmRatio.id='perimlvlinput';
// prmRatio.className='lvlinput';
// prmRatio.name='prmRatio';
// prmRatio.style.textAlign='right';
// prmRatio.style.marginLeft='49px';
// prmRatio.step=".0000001";
// prmRatio.min = "0"; // Allow only positive numbers (>= 0)
// prmRatio.addEventListener('change',function(){
// prmRatio.value=(Number(prmRatio.value)).toFixed(7)
// prmRatio.style.boxShadow='none';
// })
// prmRatio.required=true;
// selectunitP=document.getElementById('selectunitP')
// selectunitP.removeAttribute('hidden')
// prmdiv.append(prmRatiolbl, prmRatio,selectunitP)
// var ratiosdiv= document.getElementById("ratios");
// ratiosdiv.innerHTML='';
// ratiosdiv.append(scalelbl);
// ratiosdiv.append(br1);
// ratiosdiv.append(areadiv)
// ratiosdiv.append(prmdiv)
// areainpixels=data[0];
// prminpixels=data[1];
// if( projsec.value.startsWith('2.8') || projsec.value.startsWith('2.6')) {
// areaRatio.setAttribute('disabled',true)
// areaRatio.style.cursor='not-allowed';
// areaRatio.style.backgroundColor='rgba(101, 101, 101, 0.27)'
// document.getElementById('selectunitA').setAttribute('disabled',true)
// document.getElementById('selectunitA').style.cursor='not-allowed';
// document.getElementById('selectunitA').style.backgroundColor='rgba(101, 101, 101, 0.27)'
// prmRatio.setAttribute('disabled',true)
// prmRatio.style.cursor='not-allowed';
// prmRatio.style.backgroundColor='rgba(101, 101, 101, 0.27)'
// document.getElementById('selectunitP').setAttribute('disabled',true)
// document.getElementById('selectunitP').style.cursor='not-allowed';
// document.getElementById('selectunitP').style.backgroundColor='rgba(101, 101, 101, 0.27)'
// }
// };
// }
// eventSource.onerror = function (error) {
// console.error('Error occurred:', error);
// eventSource.close(); // Close on error
// PopupElement.textContent='Error occured while uploading the pdf to the Dropbox. Refresh and try again. If the error continues, please contact the ADR team to fix it. ';
// ShowPopUp();
// };
// selectunitA.addEventListener('change',function(){
// value=document.getElementById('selectunitA').value
// if (value=='mm2')
// ratioAunit=1000000;
// else
// ratioAunit=1;
// })
// selectunitP.addEventListener('change',function(){
// value=document.getElementById('selectunitP').value
// if (value=='mm'){
// ratioPunit=1000;
// }
// else
// ratioPunit=1;
// })
// // }
// // for 2.8 multiple pdfs
// // else{
// // pdfnames=getSelectValues(elem)
// // }
// }
// else{
// document.getElementById('radiosColors').removeAttribute('hidden')
// }
}
// Action for when the label is clicked (no checkbox change)
// function handleLabelClick(event) {
// let selectedLabel = event.target.textContent;
// console.log("Label clicked: ", selectedLabel);
// // Reset background only for items whose checkbox is **not** checked
// document.querySelectorAll(".measure-item").forEach(item => {
// const checkbox = item.querySelector('input[type="checkbox"]');
// if (!checkbox.checked) {
// item.style.backgroundColor = '';
// }
// });
// // Optionally highlight the clicked div (even though its checkbox isn’t selected)
// const clickedDiv = event.target.closest(".measure-item");
// clickedDiv.style.backgroundColor = '#919592';
// // Show loading spinner
// document.getElementById("all").style.display = "block";
// fetch('/getdropboxurl/' + JSON.stringify(selectedLabel), {
// method: 'POST',
// headers: { 'Content-Type': 'application/json' },
// body: JSON.stringify({ filename: "your_pdf_filename_here.pdf" }) // ← Replace with real value if dynamic
// })
// .then(response => response.blob())
// .then(blob => {
// document.getElementById("all").style.display = "none";
// const url = URL.createObjectURL(blob);
// // addIframeTab(selectedLabel, url);
// })
// .catch(function (jqXHR, textStatus, errorThrown) {
// PopupElement.textContent = 'Error occurred while retrieving the Dropbox URL. Refresh and try again. If the error continues, please contact the ADR team to fix it.';
// ShowPopUp();
// });
// }
for (let i = 0; i < docsToMeasure.length; i++) {
let name = docsToMeasure[i][0];
// Create div for the measure item
let div = document.createElement("div");
div.className = "measure-item";
// Create the checkbox
let checkbox = document.createElement("input");
checkbox.type = "checkbox";
checkbox.name = "measureCheckbox";
checkbox.value = name;
// Only clicking checkbox checks it and triggers handler
checkbox.onclick = function (e) {
e.stopPropagation(); // prevent bubbling to div
handleCheckboxChange(e);
};
// Create the label
let label = document.createElement("label");
label.textContent = name;
// Label click does not check the checkbox
label.onclick = function (e) {
e.stopPropagation(); // just to be safe
handleLabelClick(e, name);
};
// Div click also doesn't check the checkbox
div.onclick = function (e) {
handleLabelClick(e, name);
};
// Assemble
div.appendChild(checkbox);
div.appendChild(label);
measSelect.appendChild(div);
// Handle duplicates
if (nameSet.has(name)) {
label.style.color = "red";
document.getElementById("TopTextModal").textContent = 'Error: Duplicates Error';
PopupElement.textContent = 'Duplicate project names were detected while retrieving the project PDFs. Please visit Dropbox and rename the relevant files that you will be working on to ensure each project has a unique name. Once the renaming is complete, return to the console and click on the Dropbox icon to retrieve the updated project names.';
ShowPopUp();
} else {
nameSet.add(name);
}
}
// for (let i = 0; i < relvDocs.length; i++) {
// let name = relvDocs[i][0];
// // Create div for the measure item
// let divRelv = document.createElement("div");
// divRelv.className = "relv-item";
// // Create the checkbox
// let checkboxRelv = document.createElement("input");
// checkboxRelv.type = "checkbox";
// checkboxRelv.name = "measureCheckboxRelv";
// checkboxRelv.value = name;
// // Create the label
// let label = document.createElement("label");
// label.textContent = name;
// // Shared click handler
// function checkboxRelvClick(event) {
// event.stopPropagation(); // Prevent event bubbling issues
// // Get the parent div from the event target
// const container = event.currentTarget;
// // Get the checkbox inside this container
// const checkbox = container.querySelector('input[type="checkbox"]');
// // Uncheck all checkboxes
// document.querySelectorAll('input[name="measureCheckboxRelv"]').forEach(cb => cb.checked = false);
// // Check the clicked one
// checkbox.checked = true;
// const relevantDocumentName = checkbox.value;
// console.log("Item clicked: ", relevantDocumentName);
// if (projsec.value.startsWith('2.8') || projsec.value.startsWith('2.6')) {
// doorSchedulePDF = relevantDocumentName;
// console.log(doorSchedulePDF);
// }
// // Highlight selection
// document.querySelectorAll(".relv-item").forEach(item => {
// item.style.backgroundColor = '';
// });
// container.style.backgroundColor = '#d3f8d3';
// document.getElementById('relvselectid').style.boxShadow = '';
// relvSelect.value = relevantDocumentName;
// }
// // Assign the click event to the container div
// divRelv.onclick = checkboxRelvClick;
// // Also attach to checkbox specifically to prevent bubbling issue
// checkboxRelv.onclick = (e) => {
// e.stopPropagation();
// divRelv.click(); // Trigger div's click logic
// };
// divRelv.appendChild(checkboxRelv);
// divRelv.appendChild(label);
// relvSelect.appendChild(divRelv);
// if (nameSetRelv.has(name)) {
// label.style.color = "red";
// } else {
// nameSetRelv.add(name);
// }
// }
// relvids.push(relvSelect);
measids.push(measSelect);
// document.addEventListener("click", function(event) {
// const iframe = document.getElementById("pdfFrame");
// if (!iframe.contains(event.target)) {
// const iframe = document.getElementById("pdfFrame");
// iframe.style.display = "none";
// }
// });
document.getElementById('Newtablebutton').onclick= function()
{
if (!measSelect.value) {
measSelect.style.boxShadow = '0 0 8px 2px rgb(255, 0, 0)';
measSelect.setAttribute("required", "")
}
// if (!relvSelect.value) {
// if (sectionNumber.startsWith('2.8') || sectionNumber.startsWith('2.6')) {
// relvSelect.style.boxShadow = '0 0 8px 2px rgb(255, 0, 0)';
// relvSelect.setAttribute("required", "")
// }
// }
}
}
if (document.getElementById('arealvlinput')){
if( projsec.value.startsWith('3.2') || projsec.value.startsWith('2.8') || projsec.value.startsWith('2.6') || projsec.value.startsWith('3.3') || projsec.value.startsWith('2.1') || projsec.value.startsWith('2.7')){
document.getElementById('arealvlinput').setAttribute('disabled',true)
document.getElementById('selectunitA').setAttribute('disabled',true)
}
else{ // section 1.0
document.getElementById('arealvlinput').removeAttribute('disabled')
document.getElementById('selectunitA').removeAttribute('disabled')
}
}
// if (!(thirddropdown.value.startsWith('2.8')||thirddropdown.value.startsWith('2.6')) ) {
// document.getElementById("relvselectid").classList.add("disabled");
// document.getElementById("relvoverlay").style.display = "block";
// } else {
// document.getElementById("relvselectid").classList.remove("disabled");
// document.getElementById("relvoverlay").style.display = "none";
// }
};
eventSource.onerror = function (error) {
console.error('Error occurred:', error);
eventSource.close(); // Close on error
PopupElement.textContent='Error occured while retrieving the Project Names. Refresh and try again. If the error continues, please contact the ADR team to fix it. ';
ShowPopUp();
};
}
//___________________________________________________________________________________________________________
//___________________________________________________________________________________________________________
function downloadPdf(blob,downloadPDFName) {
// const url = URL.createObjectURL(blob);
// var link = document.createElement('a');
// link.href = url;
// link.download = downloadPDFName;
// link.dispatchEvent(new MouseEvent('click'));
const url = URL.createObjectURL(blob);
const a = document.createElement('a');
a.style.display = 'none';
a.href = url;
a.download = downloadPDFName;
document.body.appendChild(a);
a.click();
document.body.removeChild(a);
URL.revokeObjectURL(url);
}
/*Menu bar icon mySidebar and Toggle*/
var $mySidebar = document.getElementById('mySidebar');
var $toggle = document.getElementById('toggle');
$toggle.addEventListener('click', function() {
var isOpen = $mySidebar.classList.contains('slide-in');
w3_open();
$mySidebar.setAttribute('class', isOpen ? 'slide-out' : 'slide-in');
$toggle.classList.toggle("change");
if ($mySidebar.classList.contains('slide-out')){
w3_close()
}
});
function w3_open() {
document.getElementById("home").style.marginLeft = "25%";
document.getElementById("legends").style.marginLeft = "25%";
document.getElementById("home").style.transition= '0.8s';
document.getElementById("legends").style.transition= '0.8s';
document.getElementById("mySidebar").style.width = "25%";
document.getElementById("mySidebar").style.display = "block";
}
function w3_close() {
document.getElementById("home").style.marginLeft = "0%";
document.getElementById("legends").style.marginLeft = "0%";
document.getElementById("home").style.transition= '1.5s'
document.getElementById("legends").style.transition= '1.5s'
document.getElementById("mySidebar").style.display = "none";
}
function openTab(evt, tabname) {
var i, tabcontent, tablinks;
// Hide all tab contents
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
// Remove "active" class from all tab buttons
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
// Show selected tab content and mark button as active
var tab = document.getElementById(tabname);
if (tab) {
tab.style.display = "block";
tab.className += " active";
// evt.currentTarget.className += " active";
} else {
console.error('Tab content with ID ' + tabname + ' not found.');
}
}
</script> |