HEX
Server: Apache
System: Linux p3plzcpnl506847.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: slfopp7cb1df (5698090)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: /home/slfopp7cb1df/public_html/sitepacket.com/src/client/src/UI/tooltip/content/heading.js
import { deepExtend, isNumber } from 'Editor/scripts/utilities'
import { tooltipContentDefaults } from 'Client/scripts/defaults'

export default class Heading {
  constructor(options) {
    this.options = deepExtend({}, tooltipContentDefaults.heading, options)
  }
  css() {
    let css = `
    font-family: ${this.options.style.fontFamily};
    font-size: ${this.options.style.fontSize}px;
    font-weight: bold;
    line-height: ${isNumber(this.options.style.lineHeight) ? this.options.style.lineHeight + 'px' : this.options.style.lineHeight};
    color: ${this.options.style.color};

    text-align: ${this.options.style.textAlign};

    width: ${this.options.boxModel.width == 'auto' ? this.options.boxModel.width : this.options.boxModel.width + 'px'};
    height: ${this.options.boxModel.height == 'auto' ? this.options.boxModel.height : this.options.boxModel.height + 'px'};

    margin-top: ${this.options.boxModel.margin.top}px;
    margin-bottom: ${this.options.boxModel.margin.bottom}px;
    margin-left: ${this.options.boxModel.margin.left}px;
    margin-right: ${this.options.boxModel.margin.right}px;

    padding-top: ${this.options.boxModel.padding.top}px;
    padding-bottom: ${this.options.boxModel.padding.bottom}px;
    padding-left: ${this.options.boxModel.padding.left}px;
    padding-right: ${this.options.boxModel.padding.right}px;
    `

    if (isNumber(this.options.style.lineHeight)) {
      css += `line-height: ${this.options.style.lineHeight}px;`
    } else {
      css += `line-height: ${this.options.style.lineHeight};`
    }

    return css
  }
  html() {
    return `<${this.options.heading} style="${this.css()} ${this.options.other.css}" id="${this.options.other.id}" class="${this.options.other.classes}">${this.options.text}</${this.options.heading}>`
  }
}