refactoring

This commit is contained in:
Frank Knoll
2024-07-24 21:53:00 +02:00
parent b72cdba5c6
commit be77ed5e33
4 changed files with 8 additions and 8 deletions

View File

@@ -64,7 +64,7 @@
pdf: {
pdfButton: document.querySelector("#PDF"),
heading: document.querySelector("#heading").textContent,
valueName: document.querySelector("#subheading").textContent
subheading: document.querySelector("#subheading").textContent
}
}
);

View File

@@ -47,11 +47,11 @@ class PageInitializer {
return prrBySymptomTableView;
}
static #configurePDFButton({ pdf: { pdfButton, heading, valueName }, symptom, vaccine }) {
static #configurePDFButton({ pdf: { pdfButton, heading, subheading }, symptom, vaccine }) {
pdfButton.addEventListener(
'click',
() => PdfCreator
.createPdf({ symptom, vaccine, heading, valueName })
.createPdf({ symptom, vaccine, heading, subheading })
.download(heading));
}
}

View File

@@ -4,12 +4,12 @@ class PdfCreator {
return pdfMake.createPdf(PdfCreator.#createDocumentDefinition(pdf));
}
static #createDocumentDefinition({ symptom, vaccine, heading, valueName }) {
static #createDocumentDefinition({ symptom, vaccine, heading, subheading }) {
return {
content: [
PdfCreator.#getPageHeading(heading),
{ text: 'By Craig Paardekooper', alignment: 'center', margin: [0, 0, 0, 20] },
...PdfCreator.#getAssociatedDrugsSection(symptom, valueName),
...PdfCreator.#getAssociatedDrugsSection(symptom, subheading),
...PdfCreator.#getStrongestSymptomsSection(vaccine),
PdfCreator.#link2Origin(heading)
]
@@ -26,9 +26,9 @@ class PdfCreator {
};
}
static #getAssociatedDrugsSection({ selectElement, table }, valueName) {
static #getAssociatedDrugsSection({ selectElement, table }, subheading) {
return [
PdfCreator.#getHeading(`${valueName} for "${PdfCreator.#getSelection(selectElement)}"`),
PdfCreator.#getHeading(`${subheading} for "${PdfCreator.#getSelection(selectElement)}"`),
PdfCreator.#getTable(table, true)
];
}

View File

@@ -64,7 +64,7 @@
pdf: {
pdfButton: document.querySelector("#PDF"),
heading: document.querySelector("#heading").textContent,
valueName: document.querySelector("#subheading").textContent
subheading: document.querySelector("#subheading").textContent
}
}
);