Some checks are pending
Bidi Control Character Guard / bidi-control-guard (push) Waiting to run
Circular Dependency Check / Check for new circular dependencies (push) Waiting to run
Citus Migration Smoke / Combined migrations on single-node Citus (push) Waiting to run
E2E Fresh Install Tests / fresh-install-e2e (push) Waiting to run
ext-v2 guardrails / Run ext-v2 guard and ESLint (push) Waiting to run
Integration Tests / Check for relevant changes (push) Waiting to run
Integration Tests / ${{ (github.event_name == 'schedule' || github.event.inputs.suite == 'full') && 'Full integration suite' || 'Tier-1 integration subset' }} (push) Blocked by required conditions
Mobile checks / Mobile lint + typecheck (push) Waiting to run
Mobile checks / Mobile unit tests (push) Waiting to run
Mobile checks / Mobile dependency audit (report) (push) Waiting to run
Mobile checks / Mobile reproducibility checks (push) Waiting to run
Secrets guard (env backups) / Ensure no tracked env backup files (push) Waiting to run
Temporal Readiness / fast-readiness (push) Waiting to run
Temporal Readiness / docker-parity (push) Waiting to run
TypeScript Type Check / Nx affected typecheck (push) Waiting to run
Unit Tests / Skipped-test budget (push) Waiting to run
Unit Tests / Nx affected unit tests (push) Waiting to run
Unit Tests / Server unit coverage (informational) (push) Waiting to run
Validate Tenant Management Schema / Check for relevant changes (push) Waiting to run
Validate Tenant Management Schema / Validate Tenant Management Schema (push) Blocked by required conditions
EE Workflows Build Guard / ee-workflows-build-guard (push) Waiting to run
Excluded: .git, node_modules, secrets/, compose.env, assemblyscript tgz Source: /opt/alga-psa on psa.joliet.tech
180 lines
6.6 KiB
JavaScript
180 lines
6.6 KiB
JavaScript
/**
|
|
* Source-of-truth: project-assigned email template.
|
|
*
|
|
* Uses the shared email layout wrapper. Body content is built from
|
|
* per-language translated strings so that only text differs between locales.
|
|
*/
|
|
|
|
const { wrapEmailLayout } = require('../../_shared/emailLayout.cjs');
|
|
const {
|
|
BRAND_PRIMARY,
|
|
} = require('../../_shared/constants.cjs');
|
|
|
|
const TEMPLATE_NAME = 'project-assigned';
|
|
const SUBTYPE_NAME = 'Project Assigned';
|
|
|
|
const SUBJECTS = {
|
|
en: 'You have been assigned to project: {{project.name}}',
|
|
fr: 'Vous avez \u00e9t\u00e9 assign\u00e9 au projet : {{project.name}}',
|
|
es: 'Te han asignado al proyecto: {{project.name}}',
|
|
de: 'Sie wurden dem Projekt zugewiesen: {{project.name}}',
|
|
nl: 'U bent toegewezen aan het project: {{project.name}}',
|
|
it: 'Ti \u00e8 stato assegnato il progetto: {{project.name}}',
|
|
pl: 'Zosta\u0142e\u015b przypisany do projektu: {{project.name}}',
|
|
};
|
|
|
|
/* eslint-disable max-len */
|
|
const COPY = {
|
|
en: {
|
|
headerLabel: 'Project Assigned',
|
|
intro: 'You have been assigned to a project:',
|
|
projectName: 'Project Name',
|
|
description: 'Description',
|
|
startDate: 'Start Date',
|
|
assignedBy: 'Assigned By',
|
|
viewButton: 'View Project',
|
|
footer: 'Powered by Alga PSA · Keeping teams aligned',
|
|
textHeader: 'Project Assigned',
|
|
textIntro: 'You have been assigned to a project:',
|
|
textView: 'View project at',
|
|
},
|
|
fr: {
|
|
headerLabel: 'Projet assign\u00e9',
|
|
intro: 'Vous avez \u00e9t\u00e9 assign\u00e9 \u00e0 un projet :',
|
|
projectName: 'Nom du projet',
|
|
description: 'Description',
|
|
startDate: 'Date de d\u00e9but',
|
|
assignedBy: 'Assign\u00e9 par',
|
|
viewButton: 'Voir le projet',
|
|
footer: 'Powered by Alga PSA · Gardons les \u00e9quipes align\u00e9es',
|
|
textHeader: 'Projet assign\u00e9',
|
|
textIntro: 'Vous avez \u00e9t\u00e9 assign\u00e9 \u00e0 un projet :',
|
|
textView: 'Voir le projet sur',
|
|
},
|
|
es: {
|
|
headerLabel: 'Proyecto asignado',
|
|
intro: 'Te han asignado a un proyecto:',
|
|
projectName: 'Nombre del proyecto',
|
|
description: 'Descripci\u00f3n',
|
|
startDate: 'Fecha de inicio',
|
|
assignedBy: 'Asignado por',
|
|
viewButton: 'Ver proyecto',
|
|
footer: 'Powered by Alga PSA · Manteniendo a los equipos alineados',
|
|
textHeader: 'Proyecto asignado',
|
|
textIntro: 'Te han asignado a un proyecto:',
|
|
textView: 'Ver proyecto en',
|
|
},
|
|
de: {
|
|
headerLabel: 'Projekt zugewiesen',
|
|
intro: 'Sie wurden einem Projekt zugewiesen:',
|
|
projectName: 'Projektname',
|
|
description: 'Beschreibung',
|
|
startDate: 'Startdatum',
|
|
assignedBy: 'Zugewiesen von',
|
|
viewButton: 'Projekt anzeigen',
|
|
footer: 'Powered by Alga PSA · Teams auf Kurs halten',
|
|
textHeader: 'Projekt zugewiesen',
|
|
textIntro: 'Sie wurden einem Projekt zugewiesen:',
|
|
textView: 'Projekt anzeigen unter',
|
|
},
|
|
nl: {
|
|
headerLabel: 'Project toegewezen',
|
|
intro: 'U bent toegewezen aan een project:',
|
|
projectName: 'Projectnaam',
|
|
description: 'Beschrijving',
|
|
startDate: 'Startdatum',
|
|
assignedBy: 'Toegewezen door',
|
|
viewButton: 'Project bekijken',
|
|
footer: 'Powered by Alga PSA · Teams op \u00e9\u00e9n lijn houden',
|
|
textHeader: 'Project toegewezen',
|
|
textIntro: 'U bent toegewezen aan een project:',
|
|
textView: 'Project bekijken op',
|
|
},
|
|
it: {
|
|
headerLabel: 'Progetto assegnato',
|
|
intro: 'Ti \u00e8 stato assegnato un progetto:',
|
|
projectName: 'Nome del progetto',
|
|
description: 'Descrizione',
|
|
startDate: 'Data di inizio',
|
|
assignedBy: 'Assegnato da',
|
|
viewButton: 'Visualizza progetto',
|
|
footer: 'Powered by Alga PSA · Manteniamo i team allineati',
|
|
textHeader: 'Progetto assegnato',
|
|
textIntro: 'Ti \u00e8 stato assegnato un progetto:',
|
|
textView: 'Visualizza progetto su',
|
|
},
|
|
pl: {
|
|
headerLabel: 'Projekt przypisany',
|
|
intro: 'Zosta\u0142e\u015b przypisany do projektu:',
|
|
projectName: 'Nazwa projektu',
|
|
description: 'Opis',
|
|
startDate: 'Data rozpocz\u0119cia',
|
|
assignedBy: 'Przypisa\u0142(a)',
|
|
viewButton: 'Zobacz projekt',
|
|
footer: 'Powered by Alga PSA',
|
|
textHeader: 'Projekt przypisany',
|
|
textIntro: 'Zosta\u0142e\u015b przypisany do projektu:',
|
|
textView: 'Zobacz projekt pod adresem',
|
|
},
|
|
};
|
|
/* eslint-enable max-len */
|
|
|
|
function buildBodyHtml(c) {
|
|
return `<p style="margin:0 0 16px 0;font-size:15px;color:#1f2933;line-height:1.5;">${c.intro}</p>
|
|
<table role="presentation" width="100%" cellpadding="0" cellspacing="0" style="border-collapse:collapse;font-size:14px;color:#1f2933;">
|
|
<tr>
|
|
<td style="padding:12px 0;border-bottom:1px solid #eef2ff;width:160px;font-weight:600;color:#475467;">${c.projectName}</td>
|
|
<td style="padding:12px 0;border-bottom:1px solid #eef2ff;">{{project.name}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding:12px 0;border-bottom:1px solid #eef2ff;font-weight:600;color:#475467;">${c.description}</td>
|
|
<td style="padding:12px 0;border-bottom:1px solid #eef2ff;">{{project.description}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding:12px 0;border-bottom:1px solid #eef2ff;font-weight:600;color:#475467;">${c.startDate}</td>
|
|
<td style="padding:12px 0;border-bottom:1px solid #eef2ff;">{{project.startDate}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td style="padding:12px 0;font-weight:600;color:#475467;">${c.assignedBy}</td>
|
|
<td style="padding:12px 0;">{{project.assignedBy}}</td>
|
|
</tr>
|
|
</table>
|
|
<div style="margin-top:24px;">
|
|
<a href="{{project.url}}" style="display:inline-block;background:${BRAND_PRIMARY};color:#ffffff;text-decoration:none;padding:12px 24px;border-radius:10px;font-weight:600;">${c.viewButton}</a>
|
|
</div>`;
|
|
}
|
|
|
|
function buildText(c) {
|
|
return `${c.textHeader}
|
|
|
|
${c.textIntro}
|
|
|
|
${c.projectName}: {{project.name}}
|
|
${c.description}: {{project.description}}
|
|
${c.startDate}: {{project.startDate}}
|
|
${c.assignedBy}: {{project.assignedBy}}
|
|
|
|
${c.textView}: {{project.url}}`;
|
|
}
|
|
|
|
function getTemplate() {
|
|
return {
|
|
templateName: TEMPLATE_NAME,
|
|
subtypeName: SUBTYPE_NAME,
|
|
translations: Object.entries(COPY).map(([lang, copy]) => ({
|
|
language: lang,
|
|
subject: SUBJECTS[lang],
|
|
htmlContent: wrapEmailLayout({
|
|
language: lang,
|
|
headerLabel: copy.headerLabel,
|
|
headerTitle: '{{project.name}}',
|
|
bodyHtml: buildBodyHtml(copy),
|
|
footerText: copy.footer,
|
|
}),
|
|
textContent: buildText(copy),
|
|
})),
|
|
};
|
|
}
|
|
|
|
module.exports = { TEMPLATE_NAME, SUBTYPE_NAME, getTemplate };
|