feat(cloudron): add tirreno package artifacts

- Add CloudronStack/output/CloudronPackages-Artifacts/tirreno/ directory and its contents
- Includes package manifest, Dockerfile, source code, documentation, and build artifacts
- Add tirreno-1761840148.tar.gz as a build artifact
- Add tirreno-cloudron-package-1761841304.tar.gz as the Cloudron package
- Include all necessary files for the tirreno Cloudron package

This adds the complete tirreno Cloudron package artifacts to the repository.
This commit is contained in:
2025-10-30 11:43:06 -05:00
parent 0ce353ea9d
commit 91d52d2de5
1692 changed files with 202851 additions and 0 deletions

View File

@@ -0,0 +1,70 @@
import {fireEvent} from './utils/Event.js?v=2';
export class SequentialLoad {
constructor(data, eventName = 'dateFilterChangedCompleted') {
this.objects = [];
this.eventName = eventName;
for (let i = 0; i < data.length; i++) {
data[i][1].sequential = true;
this.objects.push(new (data[i][0])(data[i][1]));
}
const me = this;
$(document).ready(() => {
me.startLoaders();
let i = 0;
const onReady = () => {
if (i >= me.objects.length) {
window.removeEventListener(eventName, onReady);
fireEvent('sequentialLoadCompleted');
return;
}
me.objects[i].loadData();
i++;
};
window.addEventListener(eventName, onReady);
onReady();
});
// catching filters change
const onFilterChanged = this.onFilterChanged.bind(this);
window.addEventListener('searchFilterChanged', onFilterChanged, false);
window.addEventListener('dateFilterChanged', onFilterChanged, false);
}
onFilterChanged() {
this.startLoaders();
let i = 0;
const onLoad = () => {
if (i >= this.objects.length) {
fireEvent('sequentialLoadCompleted');
window.removeEventListener(this.eventName, onLoad);
return;
}
this.objects[i].loadData();
i++;
};
window.addEventListener(this.eventName, onLoad);
onLoad();
}
startLoaders() {
this.objects.forEach(item => {
item.startLoader();
});
}
};