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:
@@ -0,0 +1,61 @@
|
||||
import {BasePage} from './Base.js';
|
||||
|
||||
import {EventsChart} from '../parts/chart/Events.js?v=2';
|
||||
import {DatesFilter} from '../parts/DatesFilter.js?v=2';
|
||||
import {SearchFilter} from '../parts/SearchFilter.js?v=2';
|
||||
import {EventTypeFilter} from '../parts/choices/EventTypeFilter.js?v=2';
|
||||
import {DeviceTypeFilter} from '../parts/choices/DeviceTypeFilter.js?v=2';
|
||||
import {RulesFilter} from '../parts/choices/RulesFilter.js?v=2';
|
||||
import {EventPanel} from '../parts/panel/EventPanel.js?v=2';
|
||||
import {EventsGrid} from '../parts/grid/Events.js?v=2';
|
||||
|
||||
export class EventsPage extends BasePage {
|
||||
|
||||
constructor() {
|
||||
super('events');
|
||||
|
||||
this.initUi();
|
||||
}
|
||||
|
||||
initUi() {
|
||||
const datesFilter = new DatesFilter();
|
||||
const searchFilter = new SearchFilter();
|
||||
const eventTypeFilter = new EventTypeFilter();
|
||||
const deviceTypeFilter = new DeviceTypeFilter();
|
||||
const rulesFilter = new RulesFilter();
|
||||
|
||||
const chartParams = this.getChartParams(datesFilter, searchFilter);
|
||||
|
||||
const gridParams = {
|
||||
url: '/admin/loadEvents',
|
||||
tileId: 'totalEvents',
|
||||
tableId: 'user-events-table',
|
||||
panelType: 'event',
|
||||
dateRangeGrid: true,
|
||||
|
||||
sessionGroup: true,
|
||||
singleUser: false,
|
||||
isSortable: true,
|
||||
|
||||
choicesFilterEvents: [
|
||||
eventTypeFilter.getEventType(),
|
||||
rulesFilter.getEventType(),
|
||||
deviceTypeFilter.getEventType(),
|
||||
],
|
||||
|
||||
getParams: function() {
|
||||
const dateRange = datesFilter.getValue();
|
||||
const searchValue = searchFilter.getValue();
|
||||
const eventTypeIds = eventTypeFilter.getValues();
|
||||
const ruleUids = rulesFilter.getValues();
|
||||
const deviceTypes = deviceTypeFilter.getValues();
|
||||
|
||||
return {dateRange, searchValue, eventTypeIds, ruleUids, deviceTypes};
|
||||
}
|
||||
};
|
||||
|
||||
new EventPanel();
|
||||
new EventsChart(chartParams);
|
||||
new EventsGrid(gridParams);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user