/* 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 { html, ifDefined } from "../vendor/lit.all.mjs"; import { MozLitElement } from "../lit-utils.mjs"; const messageTypeToIconData = { info: { iconSrc: "chrome://global/skin/icons/info-filled.svg", l10nId: "moz-message-bar-icon-info", }, warning: { iconSrc: "chrome://global/skin/icons/warning.svg", l10nId: "moz-message-bar-icon-warning", }, success: { iconSrc: "chrome://global/skin/icons/check-filled.svg", l10nId: "moz-message-bar-icon-success", }, error: { iconSrc: "chrome://global/skin/icons/error.svg", l10nId: "moz-message-bar-icon-error", }, critical: { iconSrc: "chrome://global/skin/icons/error.svg", l10nId: "moz-message-bar-icon-error", }, }; /** * A simple message bar element that can be used to display * important information to users. * * @tagname moz-message-bar * @property {string} type - The type of the displayed message. * @property {string} heading - The heading of the message. * @property {string} message - The message text. * @property {boolean} dismissable - Whether or not the element is dismissable. * @property {string} messageL10nId - l10n ID for the message. * @property {string} messageL10nArgs - Any args needed for the message l10n ID. * @fires message-bar:close * Custom event indicating that message bar was closed. * @fires message-bar:user-dismissed * Custom event indicating that message bar was dismissed by the user. */ export default class MozMessageBar extends MozLitElement { static queries = { actionsSlotEl: "slot[name=actions]", actionsEl: ".actions", closeButtonEl: "button.close", supportLinkSlotEl: "slot[name=support-link]", }; static properties = { type: { type: String }, heading: { type: String }, message: { type: String }, dismissable: { type: Boolean }, messageL10nId: { type: String }, messageL10nArgs: { type: String }, }; constructor() { super(); window.MozXULElement?.insertFTLIfNeeded("toolkit/global/mozMessageBar.ftl"); this.type = "info"; this.dismissable = false; } onSlotchange() { let actions = this.actionsSlotEl.assignedNodes(); this.actionsEl.classList.toggle("active", actions.length); } connectedCallback() { super.connectedCallback(); this.setAttribute("role", "status"); } disconnectedCallback() { super.disconnectedCallback(); this.dispatchEvent(new CustomEvent("message-bar:close")); } get supportLinkEls() { return this.supportLinkSlotEl.assignedElements(); } iconTemplate() { let iconData = messageTypeToIconData[this.type]; if (iconData) { let { iconSrc, l10nId } = iconData; return html`
`; } return ""; } headingTemplate() { if (this.heading) { return html`${this.heading}`; } return ""; } closeButtonTemplate() { if (this.dismissable) { return html` `; } return ""; } render() { return html`
${this.iconTemplate()}
${this.headingTemplate()}
${this.message}
${this.closeButtonTemplate()}
`; } dismiss() { this.dispatchEvent(new CustomEvent("message-bar:user-dismissed")); this.close(); } close() { this.remove(); } } customElements.define("moz-message-bar", MozMessageBar);