1
0
mirror of https://github.com/Stirling-Tools/Stirling-PDF.git synced 2024-09-21 04:10:38 +02:00
Stirling-PDF/src/main/resources/templates/fragments/navbar.html

418 lines
26 KiB
HTML
Raw Normal View History

<div th:fragment="navbar" class="mx-auto">
<script>
2023-04-03 00:59:22 +02:00
document.addEventListener('DOMContentLoaded', function () {
const defaultLocale = document.documentElement.lang || 'en_GB';
const storedLocale = localStorage.getItem('languageCode') || defaultLocale;
const dropdownItems = document.querySelectorAll('.lang_dropdown-item');
for (let i = 0; i < dropdownItems.length; i++) {
const item = dropdownItems[i];
item.classList.remove('active');
if (item.dataset.languageCode === storedLocale) {
item.classList.add('active');
}
item.addEventListener('click', handleDropdownItemClick);
}
});
function handleDropdownItemClick(event) {
event.preventDefault();
const languageCode = this.dataset.languageCode;
localStorage.setItem('languageCode', languageCode);
const currentUrl = window.location.href;
if (currentUrl.indexOf('?lang=') === -1) {
window.location.href = currentUrl + '?lang=' + languageCode;
} else {
window.location.href = currentUrl.replace(/\?lang=\w{2,}/, '?lang=' + languageCode);
}
}
</script>
<script th:inline="javascript">
function compareVersions(version1, version2) {
const v1 = version1.split('.');
const v2 = version2.split('.');
for (let i = 0; i < v1.length || i < v2.length; i++) {
const n1 = parseInt(v1[i]) || 0;
const n2 = parseInt(v2[i]) || 0;
if (n1 > n2) {
return 1;
} else if (n1 < n2) {
return -1;
}
}
return 0;
}
async function getLatestReleaseVersion() {
const url = "https://api.github.com/repos/Frooodle/Stirling-PDF/releases/latest";
const response = await fetch(url);
const data = await response.json();
return data.tag_name.substring(1);
}
const currentVersion = /*[[${@appVersion}]]*/ ''; // Replace with your current version number
async function checkForUpdate() {
const latestVersion = await getLatestReleaseVersion();
console.log("latestVersion=" + latestVersion)
console.log("currentVersion=" + currentVersion)
console.log("compareVersions(latestVersion, currentVersion) > 0)=" + compareVersions(latestVersion, currentVersion))
if (latestVersion != null && latestVersion != "" && compareVersions(latestVersion, currentVersion) > 0) {
document.getElementById("update-btn").style.visibility = "visible";
console.log("visible")
} else {
document.getElementById("update-btn").style.visibility = "hidden";
console.log("hidden")
}
}
checkForUpdate();
</script>
2023-04-21 14:13:35 +02:00
<style>
2023-04-21 19:03:36 +02:00
.main-icon {
width: 36px;
height: 36px;
vertical-align: middle;
transform: translateY(-2px);
}
2023-04-21 14:13:35 +02:00
.icon {
width: 16px;
height: 16px;
vertical-align: middle;
2023-04-21 17:59:59 +02:00
transform: translateY(-2px);
2023-04-21 14:13:35 +02:00
}
.icon + .icon {
margin-left: -4px;
}
.icon-text {
2023-04-21 17:59:59 +02:00
margin-left: 4px;
2023-04-21 14:13:35 +02:00
}
2023-04-21 20:58:07 +02:00
2023-04-21 14:13:35 +02:00
.nav-item-separator {
position: relative;
margin: 0 4px; /* Adjust the margin as needed */
}
.nav-item-separator::before {
content: '';
position: absolute;
left: 0;
top: 10%; /* Adjust the top and bottom margins as needed */
bottom: 10%;
width: 1px;
background-color: #ccc; /* Adjust the color as needed */
}
2023-04-21 20:58:07 +02:00
.navbar-icon {
width: 20px;
height: 20px;
2023-04-21 19:03:36 +02:00
transform: translateY(-2px);
}
2023-04-21 20:58:07 +02:00
2023-04-21 14:13:35 +02:00
</style>
<nav class="navbar navbar-expand-lg navbar-light bg-light">
<div class="container ">
2023-04-21 19:03:36 +02:00
<a class="navbar-brand" href="#" th:href="@{/}" >
2023-04-22 01:08:36 +02:00
<img th:if="${@navBarText} == 'Stirling PDF'" class="main-icon" src="favicon.svg" alt="icon">
2023-04-21 19:03:36 +02:00
<span class="icon-text" th:text="${@navBarText}"></span>
</a>
2023-04-21 19:03:36 +02:00
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarNav" aria-controls="navbarNav" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarNav">
<ul class="navbar-nav mr-auto flex-nowrap">
2023-04-21 14:13:35 +02:00
<li class="nav-item">
2023-04-26 22:54:12 +02:00
<a class="nav-link" href="#" th:href="@{multi-tool}" th:classappend="${currentPage}=='multi-tool' ? 'active' : ''" th:title="#{home.multiTool.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/tools.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.multiTool.title}"></span>
</a>
</li>
2023-04-21 14:13:35 +02:00
<li class="nav-item nav-item-separator"></li>
<li class="nav-item dropdown" th:classappend="${currentPage}=='remove-pages' OR ${currentPage}=='merge-pdfs' OR ${currentPage}=='split-pdfs' OR ${currentPage}=='pdf-organizer' OR ${currentPage}=='rotate-pdf' ? 'active' : ''">
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/file-earmark-pdf.svg" alt="icon">
2023-04-21 17:59:59 +02:00
<span class="icon-text" th:text="#{navbar.pageOps}"></span>
2023-04-21 14:13:35 +02:00
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<!-- Existing menu items -->
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{merge-pdfs}" th:classappend="${currentPage}=='merge-pdfs' ? 'active' : ''" th:title="#{home.merge.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/union.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.merge.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{split-pdfs}" th:classappend="${currentPage}=='split-pdfs' ? 'active' : ''" th:title="#{home.split.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/layout-split.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.split.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{pdf-organizer}" th:classappend="${currentPage}=='pdf-organizer' ? 'active' : ''" th:title="#{home.pdfOrganiser.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/sort-numeric-down.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.pdfOrganiser.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{rotate-pdf}" th:classappend="${currentPage}=='rotate-pdf' ? 'active' : ''" th:title="#{home.rotate.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/arrow-clockwise.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.rotate.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{remove-pages}" th:classappend="${currentPage}=='remove-pages' ? 'active' : ''" th:title="#{home.removePages.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/file-earmark-x.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.removePages.title}"></span>
</a>
</div>
</li>
<li class="nav-item nav-item-separator"></li>
<li class="nav-item dropdown" th:classappend="${currentPage}=='pdf-to-img' OR ${currentPage}=='img-to-pdf' OR ${currentPage}=='pdf-to-pdfa' OR ${currentPage}=='file-to-pdf' OR ${currentPage}=='xlsx-to-pdf' OR ${currentPage}=='pdf-to-word' OR ${currentPage}=='pdf-to-presentation' OR ${currentPage}=='pdf-to-text' OR ${currentPage}=='pdf-to-html' OR ${currentPage}=='pdf-to-xml' ? 'active' : ''"><a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown"
2023-04-21 14:13:35 +02:00
aria-haspopup="true" aria-expanded="false">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/arrow-left-right.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;">
2023-04-21 17:59:59 +02:00
<span class="icon-text" th:text="#{navbar.convert}"></span>
2023-04-21 14:13:35 +02:00
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
<!-- Existing menu items -->
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{img-to-pdf}" th:classappend="${currentPage}=='img-to-pdf' ? 'active' : ''" th:title="#{home.imageToPdf.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/image.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.imageToPdf.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{file-to-pdf}" th:classappend="${currentPage}=='file-to-pdf' ? 'active' : ''" th:title="#{home.fileToPDF.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/file.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.fileToPDF.title}"></span>
</a>
2023-04-18 11:52:38 +02:00
<hr class="dropdown-divider">
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{pdf-to-img}" th:classappend="${currentPage}=='pdf-to-img' ? 'active' : ''" th:title="#{home.pdfToImage.desc}">
2023-04-21 14:13:35 +02:00
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/image.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.pdfToImage.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{pdf-to-word}" th:classappend="${currentPage}=='pdf-to-word' ? 'active' : ''" th:title="#{home.PDFToWord.desc}">
2023-04-21 14:13:35 +02:00
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/file-earmark-word.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.PDFToWord.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{pdf-to-presentation}" th:classappend="${currentPage}=='pdf-to-presentation' ? 'active' : ''" th:title="#{home.PDFToPresentation.desc}">
2023-04-21 14:13:35 +02:00
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/file-earmark-ppt.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.PDFToPresentation.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{pdf-to-text}" th:classappend="${currentPage}=='pdf-to-text' ? 'active' : ''" th:title="#{home.PDFToText.desc}">
2023-04-21 14:13:35 +02:00
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/filetype-txt.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.PDFToText.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{pdf-to-html}" th:classappend="${currentPage}=='pdf-to-html' ? 'active' : ''" th:title="#{home.PDFToHTML.desc}">
2023-04-21 14:13:35 +02:00
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/filetype-html.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.PDFToHTML.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{pdf-to-xml}" th:classappend="${currentPage}=='pdf-to-xml' ? 'active' : ''" th:title="#{home.PDFToXML.desc}">
2023-04-21 14:13:35 +02:00
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/filetype-xml.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.PDFToXML.title}"></span>
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{pdf-to-pdfa}" th:classappend="${currentPage}=='pdf-to-pdfa' ? 'active' : ''" th:title="#{home.pdfToPDFA.desc}">
2023-04-21 14:13:35 +02:00
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/file-earmark-pdf.svg" alt="icon">
2023-04-21 14:13:35 +02:00
<span class="icon-text" th:text="#{home.pdfToPDFA.title}"></span>
</a>
2023-04-18 11:52:38 +02:00
</div>
</li>
2023-04-21 14:13:35 +02:00
<li class="nav-item nav-item-separator"></li>
<li class="nav-item dropdown" th:classappend="${currentPage}=='add-password' OR ${currentPage}=='remove-password' OR ${currentPage}=='add-watermark' OR ${currentPage}=='remove-watermark' ? 'active' : ''">
2023-04-21 14:13:35 +02:00
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/shield-check.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{navbar.security}"></span>
2023-04-21 14:13:35 +02:00
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{add-password}" th:classappend="${currentPage}=='add-password' ? 'active' : ''" th:title="#{home.addPassword.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/lock.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.addPassword.title}"></span>
2023-04-21 14:13:35 +02:00
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{remove-password}" th:classappend="${currentPage}=='remove-password' ? 'active' : ''" th:title="#{home.removePassword.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/unlock.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.removePassword.title}"></span>
2023-04-21 14:13:35 +02:00
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{change-permissions}" th:classappend="${currentPage}=='change-permissions' ? 'active' : ''" th:title="#{home.permissions.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/shield-lock.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.permissions.title}"></span>
2023-04-21 14:13:35 +02:00
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{add-watermark}" th:classappend="${currentPage}=='add-watermark' ? 'active' : ''" th:title="#{home.watermark.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/droplet.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.watermark.title}"></span>
2023-04-21 14:13:35 +02:00
</a>
</div>
</li>
<li class="nav-item nav-item-separator"></li>
<li class="nav-item dropdown" th:classappend="${currentPage}=='add-image' OR ${currentPage}=='ocr-pdf' OR ${currentPage}=='change-permissions' OR ${currentPage}=='extract-images' OR ${currentPage}=='compress-pdf' ? 'active' : ''">
2023-04-21 20:58:07 +02:00
<a class="nav-link dropdown-toggle" href="#" id="navbarDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/card-list.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;">
2023-04-21 20:58:07 +02:00
<span class="icon-text" th:text="#{navbar.other}"></span>
</a>
<div class="dropdown-menu" aria-labelledby="navbarDropdown">
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{ocr-pdf}" th:classappend="${currentPage}=='ocr-pdf' ? 'active' : ''" th:title="#{home.ocr.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/search.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.ocr.title}"></span>
2023-04-21 14:13:35 +02:00
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{add-image}" th:classappend="${currentPage}=='add-image' ? 'active' : ''" th:title="#{home.addImage.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/file-earmark-richtext.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.addImage.title}"></span>
2023-04-21 14:13:35 +02:00
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{compress-pdf}" th:classappend="${currentPage}=='compress-pdf' ? 'active' : ''" th:title="#{home.compressPdfs.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/file-zip.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.compressPdfs.title}"></span>
2023-04-21 14:13:35 +02:00
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{extract-images}" th:classappend="${currentPage}=='extract-images' ? 'active' : ''" th:title="#{home.extractImages.desc}">
2023-04-22 01:08:36 +02:00
<img class="icon" src="images/images.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.extractImages.title}"></span>
2023-04-21 14:13:35 +02:00
</a>
2023-04-26 22:54:12 +02:00
<a class="dropdown-item" href="#" th:href="@{change-metadata}" th:classappend="${currentPage}=='change-metadata' ? 'active' : ''" th:title="#{home.changeMetadata.desc}">
<img class="icon" src="images/clipboard-data.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.changeMetadata.title}"></span>
</a>
2023-04-30 01:48:01 +02:00
<a class="dropdown-item" href="#" th:href="@{extract-image-scans}" th:classappend="${currentPage}=='extract-image-scans' ? 'active' : ''" th:title="#{home.ScannerSplit.desc}">
<img class="icon" src="images/scanner.svg" alt="icon" style="width: 16px; height: 16px; vertical-align: middle;"> <span class="icon-text" th:text="#{home.ScannerSplit.title}"></span>
</a>
</div>
</li>
2023-04-21 14:13:35 +02:00
</ul>
<ul class="navbar-nav ml-auto flex-nowrap">
<li class="nav-item">
<a class="nav-link" id="dark-mode-toggle" href="#">
2023-04-22 01:08:36 +02:00
<img class="navbar-icon" id="dark-mode-icon" src="moon.svg" alt="icon" />
</a>
</li>
<li class="nav-item dropdown">
<a class="nav-link dropdown-toggle" href="#" id="languageDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<svg xmlns="http://www.w3.org/2000/svg" width="20" height="20" fill="currentColor" class="bi bi-globe2" viewBox="0 0 20 20">
<path d="M0 8a8 8 0 1 1 16 0A8 8 0 0 1 0 8zm7.5-6.923c-.67.204-1.335.82-1.887 1.855-.143.268-.276.56-.395.872.705.157 1.472.257 2.282.287V1.077zM4.249 3.539c.142-.384.304-.744.481-1.078a6.7 6.7 0 0 1 .597-.933A7.01 7.01 0 0 0 3.051 3.05c.362.184.763.349 1.198.49zM3.509 7.5c.036-1.07.188-2.087.436-3.008a9.124 9.124 0 0 1-1.565-.667A6.964 6.964 0 0 0 1.018 7.5h2.49zm1.4-2.741a12.344 12.344 0 0 0-.4 2.741H7.5V5.091c-.91-.03-1.783-.145-2.591-.332zM8.5 5.09V7.5h2.99a12.342 12.342 0 0 0-.399-2.741c-.808.187-1.681.301-2.591.332zM4.51 8.5c.035.987.176 1.914.399 2.741A13.612 13.612 0 0 1 7.5 10.91V8.5H4.51zm3.99 0v2.409c.91.03 1.783.145 2.591.332.223-.827.364-1.754.4-2.741H8.5zm-3.282 3.696c.12.312.252.604.395.872.552 1.035 1.218 1.65 1.887 1.855V11.91c-.81.03-1.577.13-2.282.287zm.11 2.276a6.696 6.696 0 0 1-.598-.933 8.853 8.853 0 0 1-.481-1.079 8.38 8.38 0 0 0-1.198.49 7.01 7.01 0 0 0 2.276 1.522zm-1.383-2.964A13.36 13.36 0 0 1 3.508 8.5h-2.49a6.963 6.963 0 0 0 1.362 3.675c.47-.258.995-.482 1.565-.667zm6.728 2.964a7.009 7.009 0 0 0 2.275-1.521 8.376 8.376 0 0 0-1.197-.49 8.853 8.853 0 0 1-.481 1.078 6.688 6.688 0 0 1-.597.933zM8.5 11.909v3.014c.67-.204 1.335-.82 1.887-1.855.143-.268.276-.56.395-.872A12.63 12.63 0 0 0 8.5 11.91zm3.555-.401c.57.185 1.095.409 1.565.667A6.963 6.963 0 0 0 14.982 8.5h-2.49a13.36 13.36 0 0 1-.437 3.008zM14.982 7.5a6.963 6.963 0 0 0-1.362-3.675c-.47.258-.995.482-1.565.667.248.92.4 1.938.437 3.008h2.49zM11.27 2.461c.177.334.339.694.482 1.078a8.368 8.368 0 0 0 1.196-.49 7.01 7.01 0 0 0-2.275-1.52c.218.283.418.597.597.932zm-.488 1.343a7.765 7.765 0 0 0-.395-.872C9.835 1.897 9.17 1.282 8.5 1.077V4.09c.81-.03 1.577-.13 2.282-.287z"/>
</svg>
</a>
<div class="dropdown-menu" aria-labelledby="languageDropdown">
2023-04-21 14:13:35 +02:00
<a class="dropdown-item lang_dropdown-item" href="" data-language-code="en_GB">
2023-04-22 01:08:36 +02:00
<img src="/images/flags/gb.svg" alt="icon" width="20" height="15"> English
2023-04-21 14:13:35 +02:00
</a>
<a class="dropdown-item lang_dropdown-item" href="" data-language-code="ar_AR">
2023-04-22 01:08:36 +02:00
<img src="/images/flags/sa.svg" alt="icon" width="20" height="15"> العربية
2023-04-21 14:13:35 +02:00
</a>
<a class="dropdown-item lang_dropdown-item" href="" data-language-code="de_DE">
2023-04-22 01:08:36 +02:00
<img src="/images/flags/de.svg" alt="icon" width="20" height="15"> Deutsch
2023-04-21 14:13:35 +02:00
</a>
<a class="dropdown-item lang_dropdown-item" href="" data-language-code="fr_FR">
2023-04-22 01:08:36 +02:00
<img src="/images/flags/fr.svg" alt="icon" width="20" height="15"> Français
2023-04-21 14:13:35 +02:00
</a>
<a class="dropdown-item lang_dropdown-item" href="" data-language-code="es_ES">
2023-04-22 01:08:36 +02:00
<img src="/images/flags/es.svg" alt="icon" width="20" height="15"> Español
2023-04-21 14:13:35 +02:00
</a>
</div>
</li>
<li class="nav-item">
<!-- Settings Button -->
2023-04-21 20:58:07 +02:00
<a href="#" class="nav-link" data-toggle="modal" data-target="#settingsModal">
2023-04-22 01:08:36 +02:00
<img class="navbar-icon" src="/images/gear.svg" alt="icon" width="24" height="24">
2023-04-21 20:58:07 +02:00
</a>
2023-04-21 14:13:35 +02:00
</li>
</ul>
</div>
</div>
</nav>
<div th:insert="~{fragments/errorBanner.html :: errorBanner}"></div>
<div class="modal fade" id="settingsModal" tabindex="-1" role="dialog" aria-labelledby="settingsModalLabel" aria-hidden="true">
<div class="modal-dialog modal-dialog-centered" role="document">
<div class="modal-content dark-card">
<div class="modal-header">
<h5 class="modal-title" id="settingsModalLabel" th:text="#{settings.title}"></h5>
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">&times;</span>
</button>
</div>
<div class="modal-body">
<div class="d-flex justify-content-between align-items-center mb-3">
<p class="mb-0" th:utext="#{settings.appVersion} + ' ' + ${@appVersion}"></p>
<a href="https://github.com/Frooodle/Stirling-PDF/releases" target="_blank">
<button type="button" class="btn btn-sm btn-outline-primary" id="update-btn" th:utext="#{settings.update}"></button>
</a>
</div>
<div class="form-group">
<label for="downloadOption" th:utext="#{settings.downloadOption.title}"></label>
<select class="form-control" id="downloadOption">
<option value="sameWindow" th:utext="#{settings.downloadOption.1}"></option>
<option value="newWindow" th:utext="#{settings.downloadOption.2}"></option>
<option value="downloadFile" th:utext="#{settings.downloadOption.3}"></option>
</select>
</div>
<div class="form-group">
<label for="zipThreshold" th:utext="#{settings.zipThreshold}"></label>
2023-04-22 01:08:36 +02:00
<input type="range" class="custom-range" min="1" max="9" step="1" id="zipThreshold" value="4">
<span id="zipThresholdValue" class="ml-2"></span>
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-secondary" data-dismiss="modal" th:text="#{close}"></button>
</div>
</div>
</div>
</div>
<script>
// Get the download option from local storage, or set it to 'sameWindow' if it doesn't exist
var downloadOption = localStorage.getItem('downloadOption')
|| 'sameWindow';
// Set the selected option in the dropdown
document.getElementById('downloadOption').value = downloadOption;
// Save the selected option to local storage when the dropdown value changes
document.getElementById('downloadOption').addEventListener(
'change',
function() {
downloadOption = this.value;
localStorage.setItem('downloadOption',
downloadOption);
2023-02-07 21:14:03 +01:00
});
// Get the zipThreshold value from local storage, or set it to 0 if it doesn't exist
var zipThreshold = parseInt(localStorage.getItem('zipThreshold'), 10) || 4;
// Set the value of the slider and the display span
document.getElementById('zipThreshold').value = zipThreshold;
document.getElementById('zipThresholdValue').textContent = zipThreshold;
// Save the selected value to local storage when the slider value changes
document.getElementById('zipThreshold').addEventListener('input', function () {
zipThreshold = this.value;
document.getElementById('zipThresholdValue').textContent = zipThreshold;
localStorage.setItem('zipThreshold', zipThreshold);
2023-02-06 23:25:24 +01:00
});
2023-02-06 23:25:24 +01:00
</script>
2023-02-07 21:14:03 +01:00
2023-02-06 23:25:24 +01:00
</div>