UNPKG

@schukai/monster

Version:

Monster is a simple library for creating fast, robust and lightweight websites.

118 lines (106 loc) 3.67 kB
/** * Copyright © Volker Schukai and all contributing authors, {{copyRightYear}}. All rights reserved. * Node module: @schukai/monster * * This source code is licensed under the GNU Affero General Public License version 3 (AGPLv3). * The full text of the license can be found at: https://www.gnu.org/licenses/agpl-3.0.en.html * * For those who do not wish to adhere to the AGPLv3, a commercial license is available. * Acquiring a commercial license allows you to use this software without complying with the AGPLv3 terms. * For more information about purchasing a commercial license, please contact Volker Schukai. * * SPDX-License-Identifier: AGPL-3.0 */ import { instanceSymbol } from "../../constants.mjs"; import { registerCustomElement } from "../../dom/customelement.mjs"; import { ContextHelpStyleSheet } from "./stylesheet/context-help.mjs"; import { ThemeStyleSheet } from "../stylesheet/theme.mjs"; import { ContextBase } from "./context-base.mjs"; export { ContextWarning }; /** * A context warning control. * * @fragments /fragments/components/form/context-warning * * @since 3.55.0 * @copyright Volker Schukai * @summary A context warning control */ class ContextWarning extends ContextBase { /** * This method is called by the `instanceof` operator. * @return {symbol} */ static get [instanceSymbol]() { return Symbol.for( "@schukai/monster/components/form/context-warning@@instance", ); } /** * To set the options via the HTML tag, the attribute `data-monster-options` must be used. * @see {@link https://monsterjs.org/en/doc/#configurate-a-monster-control} * * The individual configuration values can be found in the table. * * @property {Object} templates - The templates for the control. * @property {string} templates.main - The main template. * @property {string} mode - The mode of the popper. Possible values are `click`, `enter` and `hover`. * @property {string} content - The content of the popper. * @property {object} popper - The popper options. * @property {string} popper.placement - The placement of the popper. * @property {Object} classes - Custom CSS classes. * @property {string} classes.button - CSS class for the button element. */ get defaults() { return Object.assign({}, super.defaults, { templates: { main: getTemplate(), }, mode: "auto", classes: { button: "monster-theme-warning-2", }, }); } /** * @return {string} */ static getTag() { return "monster-context-warning"; } /** * @return {CSSStyleSheet[]} */ static getCSSStyleSheet() { return [ContextHelpStyleSheet, ThemeStyleSheet]; } } /** * @private * @return {string} */ function getTemplate() { // language=HTML return ` <div data-monster-role="control" part="control"> <div data-monster-role="button" data-monster-attributes="class path:classes.button" part="button"><svg class="hidden" xmlns="http://www.w3.org/2000/svg" width="1.2em" height="1.2em" fill="currentColor" viewBox="0 0 16 16"> <path d="M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14m0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16"/> <path d="M7.002 11a1 1 0 1 1 2 0 1 1 0 0 1-2 0M7.1 4.995a.905.905 0 1 1 1.8 0l-.35 3.507a.552.552 0 0 1-1.1 0z"/> </svg></div> <div data-monster-role="popper" part="popper" tabindex="-1" class="monster-color-primary-1"> <div data-monster-role="arrow"></div> <div part="content" class="flex"> <slot></slot> </div> </div> </div> `; } registerCustomElement(ContextWarning);