UNPKG

@postnord/web-components

Version:

PostNord Web Components

65 lines (59 loc) 2.19 kB
/*! * Built with Stencil * By PostNord. */ 'use strict'; Object.defineProperty(exports, '__esModule', { value: true }); const index = require('./index-ec4ed1cc.js'); const pnIllustrationCss = "pn-illustration{display:inline-block}pn-illustration[data-fill]{display:block}pn-illustration>svg{width:var(--pn-width);height:var(--pn-height);display:block}"; const PnIllustrationStyle0 = pnIllustrationCss; const PnIllustration = class { constructor(hostRef) { index.registerInstance(this, hostRef); this.illustration = undefined; this.width = undefined; this.height = undefined; this.fill = false; } get hostElement() { return index.getElement(this); } handleFill() { if (this.fill) { this.width = '100%'; this.height = '100%'; } } componentWillRender() { this.handleFill(); if (this.width || this.height) return this.setSizes(); this.getSizeFromSvg(); } componentDidRender() { this.hostElement.querySelector('svg')?.setAttribute('width', this.width); this.hostElement.querySelector('svg')?.setAttribute('height', this.height); } getSizeFromSvg() { const viewBox = this.illustration?.match(/<svg[^>]*?viewBox=(["\'])?((?:.(?!\1|>))*.?)\1?/)?.[2]; if (!viewBox) return; const [, , width = '', height = ''] = viewBox?.split(' ') || []; if (!width || !height) return; this.width = `${Number(width)}px`; this.height = `${Number(height)}px`; this.setSizes(); } setSizes() { this.hostElement.style.setProperty('--pn-width', this.width); this.hostElement.style.setProperty('--pn-height', this.height); } render() { return index.h(index.Host, { key: 'c1677d05f7d693f70e591659a89510f6f01062fe', role: "presentation", innerHTML: this.illustration, "data-fill": this.fill }); } static get watchers() { return { "fill": ["handleFill"] }; } }; PnIllustration.style = PnIllustrationStyle0; exports.pn_illustration = PnIllustration; //# sourceMappingURL=pn-illustration.cjs.entry.js.map