forked from mirrors/gecko-dev
Differential Revision: https://phabricator.services.mozilla.com/D7159 --HG-- extra : moz-landing-system : lando
102 lines
3.4 KiB
JavaScript
102 lines
3.4 KiB
JavaScript
/* 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 PaymentRequestPage from "../components/payment-request-page.js";
|
|
import PaymentStateSubscriberMixin from "../mixins/PaymentStateSubscriberMixin.js";
|
|
import paymentRequest from "../paymentRequest.js";
|
|
|
|
/* import-globals-from ../unprivileged-fallbacks.js */
|
|
|
|
/**
|
|
* <completion-error-page></completion-error-page>
|
|
*
|
|
* XXX: Bug 1473772 - This page isn't fully localized when used via this custom element
|
|
* as it will be much easier to implement and share the logic once we switch to Fluent.
|
|
*/
|
|
|
|
export default class CompletionErrorPage extends PaymentStateSubscriberMixin(PaymentRequestPage) {
|
|
constructor() {
|
|
super();
|
|
|
|
this.classList.add("error-page");
|
|
this.suggestionHeading = document.createElement("p");
|
|
this.body.append(this.suggestionHeading);
|
|
this.suggestionsList = document.createElement("ul");
|
|
this.suggestions = [];
|
|
this.body.append(this.suggestionsList);
|
|
|
|
this.brandingSpan = document.createElement("span");
|
|
this.brandingSpan.classList.add("branding");
|
|
this.footer.appendChild(this.brandingSpan);
|
|
|
|
this.doneButton = document.createElement("button");
|
|
this.doneButton.classList.add("done-button", "primary");
|
|
this.doneButton.addEventListener("click", this);
|
|
|
|
this.footer.appendChild(this.doneButton);
|
|
}
|
|
|
|
render(state) {
|
|
let { page } = state;
|
|
|
|
if (this.id && page && page.id !== this.id) {
|
|
log.debug(`CompletionErrorPage: no need to further render inactive page: ${page.id}`);
|
|
return;
|
|
}
|
|
|
|
let {request} = this.requestStore.getState();
|
|
let {displayHost} = request.topLevelPrincipal.URI;
|
|
for (let key of [
|
|
"pageTitle", "suggestion-heading", "suggestion-1", "suggestion-2", "suggestion-3",
|
|
]) {
|
|
if (this.dataset[key] && displayHost) {
|
|
this.dataset[key] = this.dataset[key].replace("**host-name**", displayHost);
|
|
}
|
|
}
|
|
|
|
this.pageTitleHeading.textContent = this.dataset.pageTitle;
|
|
this.suggestionHeading.textContent = this.dataset.suggestionHeading;
|
|
this.brandingSpan.textContent = this.dataset.brandingLabel;
|
|
this.doneButton.textContent = this.dataset.doneButtonLabel;
|
|
|
|
this.suggestionsList.textContent = "";
|
|
if (this.dataset["suggestion-1"]) {
|
|
this.suggestions[0] = this.dataset["suggestion-1"];
|
|
}
|
|
if (this.dataset["suggestion-2"]) {
|
|
this.suggestions[1] = this.dataset["suggestion-2"];
|
|
}
|
|
if (this.dataset["suggestion-3"]) {
|
|
this.suggestions[2] = this.dataset["suggestion-3"];
|
|
}
|
|
|
|
let suggestionsFragment = document.createDocumentFragment();
|
|
for (let suggestionText of this.suggestions) {
|
|
let listNode = document.createElement("li");
|
|
listNode.textContent = suggestionText;
|
|
suggestionsFragment.appendChild(listNode);
|
|
}
|
|
this.suggestionsList.appendChild(suggestionsFragment);
|
|
}
|
|
|
|
handleEvent(event) {
|
|
if (event.type == "click") {
|
|
switch (event.target) {
|
|
case this.doneButton: {
|
|
this.onDoneButtonClick(event);
|
|
break;
|
|
}
|
|
default: {
|
|
throw new Error("Unexpected click target");
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
onDoneButtonClick(event) {
|
|
paymentRequest.closeDialog();
|
|
}
|
|
}
|
|
|
|
customElements.define("completion-error-page", CompletionErrorPage);
|