blob: 25029317546095f6dbc07c5d2abb4bbb422b9760 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
import { ErrorSection } from "./error-section.js";
import { InfoGroupContainer } from "./info-group-container.js";
import { CertificateTabsSection } from "./certificate-tabs-section.js";
class CertificateSection extends HTMLElement {
constructor(certs, error) {
super();
this.certs = certs;
this.error = error;
}
connectedCallback() {
let template = document.getElementById("certificate-section-template");
let templateHtml = template.content.cloneNode(true);
this.attachShadow({ mode: "open" }).appendChild(templateHtml);
document.l10n.connectRoot(this.shadowRoot);
document.l10n.translateFragment(this.shadowRoot);
this.certificateTabsSection = new CertificateTabsSection();
this.shadowRoot.appendChild(this.certificateTabsSection.tabsElement);
this.infoGroupsContainers = new InfoGroupContainer();
this.render();
}
render() {
let title = this.shadowRoot.querySelector(".title");
title.setAttribute(
"data-l10n-id",
"certificate-viewer-certificate-section-title"
);
if (this.error) {
title.classList.add("error");
this.certificateTabsSection.appendChild(new ErrorSection());
return;
}
let final = false;
for (let i = 0; i < this.certs.length; i++) {
if (i === this.certs.length - 1) {
final = true;
}
this.infoGroupsContainers.createInfoGroupsContainers(
this.certs[i].certItems,
i,
final
);
this.shadowRoot.appendChild(
this.infoGroupsContainers.infoGroupsContainers[i]
);
this.certificateTabsSection.createTabSection(this.certs[i].tabName, i);
this.infoGroupsContainers.addClass("selected", 0);
}
this.setAccessibilityEventListeners();
this.addClassForPadding();
}
// Adds class selector for items that need padding,
// as nth-child/parent-based selectors aren't supported
// due to the encapsulation of custom-element CSS.
addClassForPadding() {
let embeddedScts = this.shadowRoot.querySelector(".embedded-scts");
if (!embeddedScts) {
return;
}
let items = embeddedScts.shadowRoot.querySelectorAll(".version");
for (let i = 0; i < items.length; i++) {
items[i].classList.add("padding");
}
}
setAccessibilityEventListeners() {
this.certificateTabsSection.setAccessibilityEventListeners();
}
updateSelectedTab(index) {
this.certificateTabsSection.updateSelectedTab(index);
}
updateCertificateSource(index) {
this.infoGroupsContainers.updateCertificateSource(index);
}
}
customElements.define("certificate-section", CertificateSection);
|