Revision control
Copy as Markdown
Other Tools
/* 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
import { AccountHubStep } from "./account-hub-step.mjs";
/**
* Account Hub Email Auto Form Template
* Template ID: #accountHubEmailAddedSuccessTemplate (from accountHubEmailAutoFormTemplate.inc.xhtml)
*/
class EmailAddedSuccess extends AccountHubStep {
/**
* The current email config.
*
* @type {AccountConfig}
*/
#currentConfig;
connectedCallback() {
if (this.hasConnected) {
return;
}
super.connectedCallback();
this.hasConnected = true;
const template = document
.getElementById("accountHubEmailAddedSuccessTemplate")
.content.cloneNode(true);
this.appendChild(template);
super.showBrandingHeader();
this.querySelector(".account-hub-link-container").addEventListener(
"click",
this
);
}
/**
* Sets the state current config.
*
* @param {AccountConfig} configData - Applies the config data to this state.
*/
setState(configData) {
this.#currentConfig = configData;
}
handleEvent(event) {
switch (event.type) {
case "click":
window.MsgAccountManager(
event.target.id === "accountHubEncryptionLink"
? "am-e2e.xhtml"
: null,
this.#currentConfig?.incoming
);
break;
}
}
}
customElements.define("email-added-success", EmailAddedSuccess);