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,131 @@
import {BaseGrid} from './Base.js?v=2';
import {
renderClickableDomain,
renderBoolean,
renderDate,
renderDefaultIfEmptyElement,
renderUserCounter,
} from '../DataRenderers.js?v=2';
export class DomainsGrid extends BaseGrid {
get orderConfig() {
return [[6, 'desc']];
}
get columnDefs() {
const columnDefs = [
{
className: 'domain-domain-col',
targets: 0
},
{
className: 'domain-cnt-col',
targets: 1
},
{
className: 'domain-cnt-col',
targets: 2
},
{
className: 'domain-cnt-col',
targets: 3
},
{
className: 'domain-cnt-col',
targets: 4
},
{
className: 'domain-date-col',
targets: 5
},
{
className: 'domain-cnt-col',
targets: 6
},
{
className: 'domain-cnt-col',
targets: 7
},
{
visible: false,
targets: 8
}
];
return columnDefs;
}
get columns() {
const columns = [
{
data: 'domain',
render: (data, type, record) => {
return renderClickableDomain(record);
}
},
{
data: 'free_email_provider',
render: (data, type, record) => {
const free_email_provider = record.free_email_provider;
return renderBoolean(free_email_provider);
}
},
{
data: 'tranco_rank',
name: 'tranco_rank',
render: (data, type, record) => {
let rank = renderDefaultIfEmptyElement(data);
if (data) {
rank = data;
}
return rank;
}
},
{
data: 'disabled',
render: (data, type, record) => {
const unavailable = record.disabled;
return renderBoolean(unavailable);
}
},
{
data: 'disposable_domains',
render: (data, type, record) => {
const disposable = record.disposable_domains;
return renderBoolean(disposable);
}
},
{
data: 'creation_date',
render: (data, type, record) => {
const creation_date = record.creation_date;
if (creation_date) {
return renderDate(creation_date);
} else {
return renderDefaultIfEmptyElement(creation_date);
}
}
},
{
data: 'total_account',
name: 'total_account',
render: this.renderTotalsLoader,
},
{
data: 'fraud',
name: 'fraud',
render: (data, type, record) => {
return renderUserCounter(data, 1);
}
},
{
data: 'id',
name: 'id',
},
];
return columns;
}
}