fixed template javascript
This commit is contained in:
@@ -34,63 +34,58 @@
|
||||
</div>
|
||||
|
||||
<script>
|
||||
(async function() {
|
||||
const loadingDiv = document.getElementById('version-history-loading');
|
||||
const contentDiv = document.getElementById('version-history-content');
|
||||
const errorDiv = document.getElementById('version-history-error');
|
||||
const tbody = document.getElementById('versions-tbody');
|
||||
const ciDiv = document.getElementById('ci-build-info');
|
||||
(function() {
|
||||
var loadingDiv = document.getElementById('version-history-loading');
|
||||
var contentDiv = document.getElementById('version-history-content');
|
||||
var errorDiv = document.getElementById('version-history-error');
|
||||
var tbody = document.getElementById('versions-tbody');
|
||||
var ciDiv = document.getElementById('ci-build-info');
|
||||
|
||||
// We try multiple paths to ensure we find the JSON whether we are at root or in a version folder
|
||||
const pathsToTry = [
|
||||
'package-list.json', // Current folder
|
||||
'../package-list.json', // Parent folder
|
||||
'/core/package-list.json' // Absolute web root
|
||||
var pathsToTry = [
|
||||
'package-list.json',
|
||||
'../package-list.json',
|
||||
'/core/package-list.json'
|
||||
];
|
||||
|
||||
let data = null;
|
||||
|
||||
for (const path of pathsToTry) {
|
||||
try {
|
||||
console.log('Attempting to fetch history from:', path);
|
||||
const response = await fetch(path);
|
||||
if (response.ok) {
|
||||
data = await response.json();
|
||||
console.log('Successfully loaded version history from:', path);
|
||||
break;
|
||||
}
|
||||
} catch (e) {
|
||||
console.warn('Failed to fetch from:', path, e);
|
||||
}
|
||||
}
|
||||
|
||||
if (!data || !data.list) {
|
||||
function loadData(index) {
|
||||
if (index >= pathsToTry.length) {
|
||||
loadingDiv.style.display = 'none';
|
||||
errorDiv.style.display = 'block';
|
||||
return;
|
||||
}
|
||||
|
||||
// Sort list to show newest first (optional, but recommended)
|
||||
data.list.forEach(entry => {
|
||||
fetch(pathsToTry[index])
|
||||
.then(function(response) {
|
||||
if (!response.ok) throw new Error('Not found');
|
||||
return response.json();
|
||||
})
|
||||
.then(function(data) {
|
||||
if (!data.list) throw new Error('Invalid format');
|
||||
|
||||
for (var i = 0; i < data.list.length; i++) {
|
||||
var entry = data.list[i];
|
||||
if (entry.version !== 'current') {
|
||||
const row = tbody.insertRow();
|
||||
// Use entry.path from JSON to ensure links always point to the right place
|
||||
row.insertCell(0).innerHTML = `<a href="${entry.path}"><b>${entry.version}</b></a>`;
|
||||
var row = tbody.insertRow();
|
||||
row.insertCell(0).innerHTML = '<a href="' + entry.path + '"><b>' + entry.version + '</b></a>';
|
||||
row.insertCell(1).textContent = entry.date || 'N/A';
|
||||
row.insertCell(2).innerHTML = `<span class="badge">${entry.status || 'unknown'}</span>`;
|
||||
row.insertCell(2).innerHTML = '<span class="badge">' + (entry.status || 'unknown') + '</span>';
|
||||
row.insertCell(3).textContent = entry.desc || '';
|
||||
} else {
|
||||
// Continuous Integration Build info
|
||||
ciDiv.innerHTML = `
|
||||
<div style="background-color: #f8f9fa; padding: 10px; border-left: 5px solid #007bff;">
|
||||
<p>The latest development build is available at: <a href="${entry.path}">${entry.path}</a></p>
|
||||
<p><small>Note: This is a continuous integration build and may be unstable.</small></p>
|
||||
</div>`;
|
||||
ciDiv.innerHTML = '<div style="background-color: #f8f9fa; padding: 10px; border-left: 5px solid #007bff;">' +
|
||||
'<p>Latest development build: <a href="' + entry.path + '">' + entry.path + '</a></p>' +
|
||||
'</div>';
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
loadingDiv.style.display = 'none';
|
||||
contentDiv.style.display = 'block';
|
||||
})
|
||||
.catch(function() {
|
||||
// Try the next path in the array
|
||||
loadData(index + 1);
|
||||
});
|
||||
}
|
||||
|
||||
loadData(0);
|
||||
})();
|
||||
</script>
|
||||
</div>
|
||||
Reference in New Issue
Block a user