build status: failing

This commit is contained in:
FTCHD
2025-01-22 14:47:24 +02:00
commit af044bca82
93 changed files with 18425 additions and 0 deletions
+495
View File
@@ -0,0 +1,495 @@
<!--
This file is needed in order to add dark mode to the default Rclone browser.
It's not pretty, but at the same time Adobe's .PSD implementation exists.
-->
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<style>
html {
overscroll-behavior: none;
}
/* Header positioning */
header {
position: sticky;
top: 0;
z-index: 100;
padding: 10px;
background-color: #f2f2f2;
}
/* Meta div positioning */
.meta {
position: sticky;
top: 63px; /* Adjust based on header height + padding */
z-index: 99;
/* padding: 10px; */
background-color: #f2f2f2;
}
.loading-spinner {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
width: 50px;
height: 50px;
border: 3px solid #f3f3f3;
border-top: 3px solid #3498db;
border-radius: 50%;
animation: spin 1s linear infinite;
}
.nav-spinner {
position: fixed;
bottom: 20px;
right: 20px;
width: 30px;
height: 30px;
border: 2px solid #f3f3f3;
border-top: 2px solid #3498db;
border-radius: 50%;
animation: spin 1s linear infinite;
display: none;
z-index: 9999;
}
@keyframes spin {
0% { transform: translate(-50%, -50%) rotate(0deg); }
100% { transform: translate(-50%, -50%) rotate(360deg); }
}
/* Dark mode styles */
@media (prefers-color-scheme: dark) {
:root {
color-scheme: dark !important;
}
html {
background-color: #1d1d1d !important;
min-height: 100% !important;
}
body {
background-color: #1d1d1d !important;
color: #e0e0e0 !important ;
min-height: 100vh !important;
margin: 0 !important;
}
/* Header styles */
header {
background-color: #242424 !important;
}
header h1 a {
color: #e0e0e0 !important;
}
/* Table styles */
table {
background-color: #242424 !important;
border-color: #404040 !important;
}
tr {
border-color: #404040 !important;
}
tr:hover {
background-color: #2a2a2a !important;
}
th {
background-color: #2c2c2c !important;
color: #e0e0e0 !important;
}
td {
border-color: #404040 !important;
}
/* Links */
a {
color: #66b3ff !important;
}
a:visited {
color: #b366ff !important;
}
a:hover {
color: #99ccff !important;
}
/* Filter input */
#filter {
background-color: #2c2c2c !important;
color: #e0e0e0 !important;
border: 1px solid #404040 !important;
padding: 5px 10px !important;
}
#filter:focus {
outline: 1px solid #66b3ff !important;
border-color: #66b3ff !important;
}
/* SVG icons */
svg {
filter: invert(0.8) !important;
}
/* Go up link */
.goup {
color: #e0e0e0 !important;
}
/* Time display */
time {
color: #b0b0b0 !important;
}
/* Sort icons */
.icon.sort {
opacity: 0.8 !important;
}
/* Meta section */
.meta {
border-color: #404040 !important;
background-color: #242424 !important;
}
/* Ensure text remains readable */
td[data-order="-1"],
.hideable {
color: #b0b0b0 !important;
}
.download-link {
background-color: #2e7d32 !important;
color: #ffffff !important;
}
.download-link:hover {
background-color: #1b5e20 !important;
}
thead {
background-color: #242424 !important;
}
}
/* Download button styles */
.download-cell {
width: 30px;
text-align: center;
}
.download-link {
display: inline-block;
padding: 2px 6px;
border-radius: 4px;
text-decoration: none;
background-color: #4CAF50;
color: white !important;
font-size: 0.8em;
margin-left: 8px;
vertical-align: middle;
}
.download-link:hover {
background-color: #45a049;
}
/* Adjust the name span to align with download button */
.name {
display: inline-flex;
align-items: center;
gap: 8px;
}
/* Table header positioning */
thead {
position: sticky;
top: 109px; /* header + meta */
z-index: 98;
background-color: #f2f2f2;
}
/* Ensure table layout works with sticky header */
table {
border-collapse: separate;
border-spacing: 0;
}
</style>
<script>
console.log(window.__TAURI__)
// Create a persistent spinner element outside the body
const navSpinner = document.createElement('div');
navSpinner.id = 'nav-spinner';
navSpinner.className = 'nav-spinner';
// Function to show/hide navigation spinner
function toggleNavSpinner(show) {
if (!document.getElementById('nav-spinner')) {
document.body.appendChild(navSpinner);
}
navSpinner.style.display = show ? 'block' : 'none';
}
// Function to check if we're at root URL
function isRootUrl(url) {
try {
const parsedUrl = new URL(url);
// Remove trailing slash for consistent comparison
const path = parsedUrl.pathname.replace(/\/$/, '');
// Count segments (excluding empty strings from leading/trailing slashes)
const segments = path.split('/').filter(Boolean);
return segments.length <= 1;
} catch (e) {
console.error('Error parsing URL:', e);
return false;
}
}
// Function to hide "Go up" row if at root
function hideGoUpIfRoot(url) {
const goUpRow = document.querySelector('tr:has(span.goup)');
if (goUpRow) {
goUpRow.style.display = isRootUrl(url) ? 'none' : '';
}
}
// Function to fetch and modify webpage content
async function fetchAndInjectContent(url, isInitialLoad = false) {
try {
// Only show navigation spinner for non-initial loads
if (!isInitialLoad) {
toggleNavSpinner(true);
}
const fetch = window.__TAURI__.http.fetch
// Fetch the webpage content
const response = await fetch(url);
const html = await response.text();
// Create a temporary DOM parser
const parser = new DOMParser();
const doc = parser.parseFromString(html, 'text/html');
// Modify the title if it exists
const title = doc.querySelector('title');
if (title) {
title.textContent = 'Modified: ' + title.textContent;
// Update current page title
document.title = title.textContent;
}
// Remove existing injected styles
const existingStyles = document.querySelectorAll('style[data-injected="true"]');
existingStyles.forEach(style => style.remove());
// Copy over all style elements from the fetched document
const newStyles = doc.getElementsByTagName('style');
Array.from(newStyles).forEach(style => {
const clonedStyle = style.cloneNode(true);
clonedStyle.setAttribute('data-injected', 'true');
document.head.appendChild(clonedStyle);
});
// Store the spinner temporarily
const spinnerParent = navSpinner.parentElement;
if (spinnerParent) {
spinnerParent.removeChild(navSpinner);
}
// Replace only the body content
document.body.innerHTML = doc.body.innerHTML;
// Hide "Go up" row if at root
hideGoUpIfRoot(url);
// Add download buttons to the table
addDownloadButtons();
// Re-add the spinner
document.body.appendChild(navSpinner);
// Update the URL in the address bar without reloading
window.history.pushState({}, '', `?url=${encodeURIComponent(url)}`);
// Re-add our event handlers
setupEventHandlers();
} catch (error) {
console.error('Error fetching webpage:', error);
document.body.innerHTML = `<div>Error loading webpage: ${error.message}</div>`;
// Make sure spinner is still available in error case
document.body.appendChild(navSpinner);
} finally {
toggleNavSpinner(false);
}
}
// Function to handle clicks on links
function handleLinkClick(event) {
const link = event.target.closest('a');
if (!link) return;
// Don't interfere with download links
if (link.hasAttribute('download')) {
event.preventDefault();
const save = window.__TAURI__.dialog.save;
const writeTextFile = window.__TAURI__.fs.writeTextFile;
const writeFile = window.__TAURI__.fs.writeFile;
const http = window.__TAURI__.http;
// Get the full URL for the download
const href = link.getAttribute('href');
const currentUrl = new URLSearchParams(window.location.search).get('url');
const baseUrl = new URL(currentUrl).href;
const downloadUrl = new URL(href, baseUrl).href;
// Get the filename from the download attribute or URL
const filename = link.getAttribute('download') || href.split('/').pop();
save({
title: 'Save File',
defaultPath: filename
}).then(async (result) => {
if (result) {
try {
console.log('downloading', downloadUrl)
// Fetch the file contents
const response = await http.fetch(downloadUrl, {
method: 'GET',
responseType: 2 // ResponseType.Binary
});
const data = await response.arrayBuffer();
// Write the file contents
await writeFile(result, data);
} catch (err) {
console.error('Failed to download file:', err);
}
}
});
return;
}
const href = link.getAttribute('href');
if (!href || href === '') {
event.preventDefault();
return;
}
// Handle different types of URLs
let fullUrl;
if (href.startsWith('http')) {
fullUrl = href;
} else if (href.startsWith('//')) {
fullUrl = 'https:' + href;
} else if (href.startsWith('/')) {
// Get the base URL from the current URL parameter
const currentUrl = new URLSearchParams(window.location.search).get('url');
const baseUrl = new URL(currentUrl).origin;
fullUrl = baseUrl + href;
} else {
// Relative URL
const currentUrl = new URLSearchParams(window.location.search).get('url');
const baseUrl = new URL(currentUrl).href;
fullUrl = new URL(href, baseUrl).href;
}
// Check if the target URL is the same as the current one
const currentPageUrl = new URLSearchParams(window.location.search).get('url');
console.log('fullUrl', fullUrl)
console.log('currentPageUrl', currentPageUrl)
if (fullUrl === currentPageUrl) {
event.preventDefault();
return;
}
// Prevent default navigation
event.preventDefault();
// Fetch and inject the new content
fetchAndInjectContent(fullUrl);
}
// Function to set up event handlers
function setupEventHandlers() {
// Handle all click events at the document level
document.addEventListener('click', handleLinkClick);
// Prevent form submissions and handle them manually
document.addEventListener('submit', (event) => {
event.preventDefault();
// You can add form handling logic here if needed
});
}
// Function to modify the table structure after content load
function addDownloadButtons() {
// Find all file rows
const fileRows = document.querySelectorAll('tr.file');
fileRows.forEach(row => {
// Check if this is a file (not a folder) by looking for the file icon
const isFolder = row.querySelector('svg use').getAttribute('xlink:href') === '#folder';
if (!isFolder) {
// Get the file link container
const nameSpan = row.querySelector('.name');
if (nameSpan) {
// Create download link
const downloadLink = document.createElement('a');
const fileLink = nameSpan.querySelector('a');
// keep only the last part of the url, otherwise it uses the wrong root url
downloadLink.href = fileLink.href.split('/').pop();
downloadLink.className = 'download-link';
downloadLink.setAttribute('download', '');
downloadLink.textContent = '⇩';
nameSpan.appendChild(downloadLink);
}
}
});
}
// Wait for DOM to be ready before initializing
document.addEventListener('DOMContentLoaded', () => {
// Initial setup
const urlParams = new URLSearchParams(window.location.search);
const url = urlParams.get('url');
if (url) {
// Pass true to indicate this is the initial load
fetchAndInjectContent(url, true);
} else {
document.body.innerHTML = '<div>Error: No URL provided. Use ?url= parameter.</div>';
}
// Set up initial event handlers
setupEventHandlers();
// Handle browser back/forward buttons
window.addEventListener('popstate', () => {
const newUrl = new URLSearchParams(window.location.search).get('url');
if (newUrl) {
fetchAndInjectContent(newUrl);
}
});
});
</script>
</head>
<body>
<div class="loading-spinner"></div>
</body>
</html>
+3
View File
File diff suppressed because one or more lines are too long
+6
View File
@@ -0,0 +1,6 @@
<svg width="206" height="231" viewBox="0 0 206 231" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M143.143 84C143.143 96.1503 133.293 106 121.143 106C108.992 106 99.1426 96.1503 99.1426 84C99.1426 71.8497 108.992 62 121.143 62C133.293 62 143.143 71.8497 143.143 84Z" fill="#FFC131"/>
<ellipse cx="84.1426" cy="147" rx="22" ry="22" transform="rotate(180 84.1426 147)" fill="#24C8DB"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M166.738 154.548C157.86 160.286 148.023 164.269 137.757 166.341C139.858 160.282 141 153.774 141 147C141 144.543 140.85 142.121 140.558 139.743C144.975 138.204 149.215 136.139 153.183 133.575C162.73 127.404 170.292 118.608 174.961 108.244C179.63 97.8797 181.207 86.3876 179.502 75.1487C177.798 63.9098 172.884 53.4021 165.352 44.8883C157.82 36.3744 147.99 30.2165 137.042 27.1546C126.095 24.0926 114.496 24.2568 103.64 27.6274C92.7839 30.998 83.1319 37.4317 75.8437 46.1553C74.9102 47.2727 74.0206 48.4216 73.176 49.5993C61.9292 50.8488 51.0363 54.0318 40.9629 58.9556C44.2417 48.4586 49.5653 38.6591 56.679 30.1442C67.0505 17.7298 80.7861 8.57426 96.2354 3.77762C111.685 -1.01901 128.19 -1.25267 143.769 3.10474C159.348 7.46215 173.337 16.2252 184.056 28.3411C194.775 40.457 201.767 55.4101 204.193 71.404C206.619 87.3978 204.374 103.752 197.73 118.501C191.086 133.25 180.324 145.767 166.738 154.548ZM41.9631 74.275L62.5557 76.8042C63.0459 72.813 63.9401 68.9018 65.2138 65.1274C57.0465 67.0016 49.2088 70.087 41.9631 74.275Z" fill="#FFC131"/>
<path fill-rule="evenodd" clip-rule="evenodd" d="M38.4045 76.4519C47.3493 70.6709 57.2677 66.6712 67.6171 64.6132C65.2774 70.9669 64 77.8343 64 85.0001C64 87.1434 64.1143 89.26 64.3371 91.3442C60.0093 92.8732 55.8533 94.9092 51.9599 97.4256C42.4128 103.596 34.8505 112.392 30.1816 122.756C25.5126 133.12 23.9357 144.612 25.6403 155.851C27.3449 167.09 32.2584 177.598 39.7906 186.112C47.3227 194.626 57.153 200.784 68.1003 203.846C79.0476 206.907 90.6462 206.743 101.502 203.373C112.359 200.002 122.011 193.568 129.299 184.845C130.237 183.722 131.131 182.567 131.979 181.383C143.235 180.114 154.132 176.91 164.205 171.962C160.929 182.49 155.596 192.319 148.464 200.856C138.092 213.27 124.357 222.426 108.907 227.222C93.458 232.019 76.9524 232.253 61.3736 227.895C45.7948 223.538 31.8055 214.775 21.0867 202.659C10.3679 190.543 3.37557 175.59 0.949823 159.596C-1.47592 143.602 0.768139 127.248 7.41237 112.499C14.0566 97.7497 24.8183 85.2327 38.4045 76.4519ZM163.062 156.711L163.062 156.711C162.954 156.773 162.846 156.835 162.738 156.897C162.846 156.835 162.954 156.773 163.062 156.711Z" fill="#24C8DB"/>
</svg>

After

Width:  |  Height:  |  Size: 2.5 KiB

+9
View File
@@ -0,0 +1,9 @@
<!doctype html>
<html>
<head>
<meta charset="UTF-8" />
<script type="module" src="/out.js"></script>
</head>
<body> </body>
</html>
+1
View File
@@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" role="img" class="iconify iconify--logos" width="31.88" height="32" preserveAspectRatio="xMidYMid meet" viewBox="0 0 256 257"><defs><linearGradient id="IconifyId1813088fe1fbc01fb466" x1="-.828%" x2="57.636%" y1="7.652%" y2="78.411%"><stop offset="0%" stop-color="#41D1FF"></stop><stop offset="100%" stop-color="#BD34FE"></stop></linearGradient><linearGradient id="IconifyId1813088fe1fbc01fb467" x1="43.376%" x2="50.316%" y1="2.242%" y2="89.03%"><stop offset="0%" stop-color="#FFEA83"></stop><stop offset="8.333%" stop-color="#FFDD35"></stop><stop offset="100%" stop-color="#FFA800"></stop></linearGradient></defs><path fill="url(#IconifyId1813088fe1fbc01fb466)" d="M255.153 37.938L134.897 252.976c-2.483 4.44-8.862 4.466-11.382.048L.875 37.958c-2.746-4.814 1.371-10.646 6.827-9.67l120.385 21.517a6.537 6.537 0 0 0 2.322-.004l117.867-21.483c5.438-.991 9.574 4.796 6.877 9.62Z"></path><path fill="url(#IconifyId1813088fe1fbc01fb467)" d="M185.432.063L96.44 17.501a3.268 3.268 0 0 0-2.634 3.014l-5.474 92.456a3.268 3.268 0 0 0 3.997 3.378l24.777-5.718c2.318-.535 4.413 1.507 3.936 3.838l-7.361 36.047c-.495 2.426 1.782 4.5 4.151 3.78l15.304-4.649c2.372-.72 4.652 1.36 4.15 3.788l-11.698 56.621c-.732 3.542 3.979 5.473 5.943 2.437l1.313-2.028l72.516-144.72c1.215-2.423-.88-5.186-3.54-4.672l-25.505 4.922c-2.396.462-4.435-1.77-3.759-4.114l16.646-57.705c.677-2.35-1.37-4.583-3.769-4.113Z"></path></svg>

After

Width:  |  Height:  |  Size: 1.5 KiB