Server IP : 92.205.26.207 / Your IP : 216.73.216.16 Web Server : Apache System : Linux 207.26.205.92.host.secureserver.net 4.18.0-553.60.1.el8_10.x86_64 #1 SMP Thu Jul 10 04:01:16 EDT 2025 x86_64 User : zikryat ( 1002) PHP Version : 8.3.23 Disable Function : exec,passthru,shell_exec,system MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON Directory (0755) : /home/zikryat/public_html/node_modules/mjml-social/lib/ |
[ Home ] | [ C0mmand ] | [ Upload File ] |
---|
"use strict"; var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default; Object.defineProperty(exports, "__esModule", { value: true }); exports.default = void 0; var _classCallCheck2 = _interopRequireDefault(require("@babel/runtime/helpers/classCallCheck")); var _createClass2 = _interopRequireDefault(require("@babel/runtime/helpers/createClass")); var _inherits2 = _interopRequireDefault(require("@babel/runtime/helpers/inherits")); var _createSuper2 = _interopRequireDefault(require("@babel/runtime/helpers/createSuper")); var _defineProperty2 = _interopRequireDefault(require("@babel/runtime/helpers/defineProperty")); var _each2 = _interopRequireDefault(require("lodash/each")); var _get2 = _interopRequireDefault(require("lodash/get")); var _mjmlCore = require("mjml-core"); const IMG_BASE_URL = 'https://www.mailjet.com/images/theme/v1/icons/ico-social/'; const defaultSocialNetworks = { facebook: { 'share-url': 'https://www.facebook.com/sharer/sharer.php?u=[[URL]]', 'background-color': '#3b5998', src: `${IMG_BASE_URL}facebook.png` }, twitter: { 'share-url': 'https://twitter.com/intent/tweet?url=[[URL]]', 'background-color': '#55acee', src: `${IMG_BASE_URL}twitter.png` }, google: { 'share-url': 'https://plus.google.com/share?url=[[URL]]', 'background-color': '#dc4e41', src: `${IMG_BASE_URL}google-plus.png` }, pinterest: { 'share-url': 'https://pinterest.com/pin/create/button/?url=[[URL]]&media=&description=', 'background-color': '#bd081c', src: `${IMG_BASE_URL}pinterest.png` }, linkedin: { 'share-url': 'https://www.linkedin.com/shareArticle?mini=true&url=[[URL]]&title=&summary=&source=', 'background-color': '#0077b5', src: `${IMG_BASE_URL}linkedin.png` }, instagram: { 'background-color': '#3f729b', src: `${IMG_BASE_URL}instagram.png` }, web: { src: `${IMG_BASE_URL}web.png`, 'background-color': '#4BADE9' }, snapchat: { src: `${IMG_BASE_URL}snapchat.png`, 'background-color': '#FFFA54' }, youtube: { src: `${IMG_BASE_URL}youtube.png`, 'background-color': '#EB3323' }, tumblr: { src: `${IMG_BASE_URL}tumblr.png`, 'share-url': 'https://www.tumblr.com/widgets/share/tool?canonicalUrl=[[URL]]', 'background-color': '#344356' }, github: { src: `${IMG_BASE_URL}github.png`, 'background-color': '#000000' }, xing: { src: `${IMG_BASE_URL}xing.png`, 'share-url': 'https://www.xing.com/app/user?op=share&url=[[URL]]', 'background-color': '#296366' }, vimeo: { src: `${IMG_BASE_URL}vimeo.png`, 'background-color': '#53B4E7' }, medium: { src: `${IMG_BASE_URL}medium.png`, 'background-color': '#000000' }, soundcloud: { src: `${IMG_BASE_URL}soundcloud.png`, 'background-color': '#EF7F31' }, dribbble: { src: `${IMG_BASE_URL}dribbble.png`, 'background-color': '#D95988' } }; (0, _each2.default)(defaultSocialNetworks, (val, key) => { defaultSocialNetworks[`${key}-noshare`] = { ...val, 'share-url': '[[URL]]' }; }); let MjSocialElement = /*#__PURE__*/function (_BodyComponent) { (0, _inherits2.default)(MjSocialElement, _BodyComponent); var _super = (0, _createSuper2.default)(MjSocialElement); function MjSocialElement() { (0, _classCallCheck2.default)(this, MjSocialElement); return _super.apply(this, arguments); } (0, _createClass2.default)(MjSocialElement, [{ key: "getStyles", value: function getStyles() { const { 'icon-size': iconSize, 'icon-height': iconHeight, 'background-color': backgroundColor } = this.getSocialAttributes(); return { td: { padding: this.getAttribute('padding'), 'padding-top': this.getAttribute('padding-top'), 'padding-right': this.getAttribute('padding-right'), 'padding-bottom': this.getAttribute('padding-bottom'), 'padding-left': this.getAttribute('padding-left'), 'vertical-align': this.getAttribute('vertical-align') }, table: { background: backgroundColor, 'border-radius': this.getAttribute('border-radius'), width: iconSize }, icon: { padding: this.getAttribute('icon-padding'), 'font-size': '0', height: iconHeight || iconSize, 'vertical-align': 'middle', width: iconSize }, img: { 'border-radius': this.getAttribute('border-radius'), display: 'block' }, tdText: { 'vertical-align': 'middle', padding: this.getAttribute('text-padding') }, text: { color: this.getAttribute('color'), 'font-size': this.getAttribute('font-size'), 'font-weight': this.getAttribute('font-weight'), 'font-style': this.getAttribute('font-style'), 'font-family': this.getAttribute('font-family'), 'line-height': this.getAttribute('line-height'), 'text-decoration': this.getAttribute('text-decoration') } }; } }, { key: "getSocialAttributes", value: function getSocialAttributes() { const socialNetwork = defaultSocialNetworks[this.getAttribute('name')] || {}; let href = this.getAttribute('href'); if (href && (0, _get2.default)(socialNetwork, 'share-url')) { href = socialNetwork['share-url'].replace('[[URL]]', href); } const attrs = ['icon-size', 'icon-height', 'srcset', 'sizes', 'src', 'background-color'].reduce((r, attr) => ({ ...r, [attr]: this.getAttribute(attr) || socialNetwork[attr] }), {}); return { href, ...attrs }; } }, { key: "render", value: function render() { const { src, srcset, sizes, href, 'icon-size': iconSize, 'icon-height': iconHeight } = this.getSocialAttributes(); const hasLink = !!this.getAttribute('href'); return ` <tr ${this.htmlAttributes({ class: this.getAttribute('css-class') })} > <td ${this.htmlAttributes({ style: 'td' })}> <table ${this.htmlAttributes({ border: '0', cellpadding: '0', cellspacing: '0', role: 'presentation', style: 'table' })} > <tbody> <tr> <td ${this.htmlAttributes({ style: 'icon' })}> ${hasLink ? `<a ${this.htmlAttributes({ href, rel: this.getAttribute('rel'), target: this.getAttribute('target') })}>` : ''} <img ${this.htmlAttributes({ alt: this.getAttribute('alt'), title: this.getAttribute('title'), height: parseInt(iconHeight || iconSize, 10), src, style: 'img', width: parseInt(iconSize, 10), sizes, srcset })} /> ${hasLink ? `</a>` : ''} </td> </tr> </tbody> </table> </td> ${this.getContent() ? ` <td ${this.htmlAttributes({ style: 'tdText' })}> ${hasLink ? `<a ${this.htmlAttributes({ href, style: 'text', rel: this.getAttribute('rel'), target: this.getAttribute('target') })}>` : `<span ${this.htmlAttributes({ style: 'text' })}>`} ${this.getContent()} ${hasLink ? `</a>` : '</span>'} </td> ` : ''} </tr> `; } }]); return MjSocialElement; }(_mjmlCore.BodyComponent); exports.default = MjSocialElement; (0, _defineProperty2.default)(MjSocialElement, "componentName", 'mj-social-element'); (0, _defineProperty2.default)(MjSocialElement, "endingTag", true); (0, _defineProperty2.default)(MjSocialElement, "allowedAttributes", { align: 'enum(left,center,right)', 'background-color': 'color', color: 'color', 'border-radius': 'unit(px)', 'font-family': 'string', 'font-size': 'unit(px)', 'font-style': 'string', 'font-weight': 'string', href: 'string', 'icon-size': 'unit(px,%)', 'icon-height': 'unit(px,%)', 'icon-padding': 'unit(px,%){1,4}', 'line-height': 'unit(px,%,)', name: 'string', 'padding-bottom': 'unit(px,%)', 'padding-left': 'unit(px,%)', 'padding-right': 'unit(px,%)', 'padding-top': 'unit(px,%)', padding: 'unit(px,%){1,4}', 'text-padding': 'unit(px,%){1,4}', rel: 'string', src: 'string', srcset: 'string', sizes: 'string', alt: 'string', title: 'string', target: 'string', 'text-decoration': 'string', 'vertical-align': 'enum(top,middle,bottom)' }); (0, _defineProperty2.default)(MjSocialElement, "defaultAttributes", { align: 'left', color: '#000', 'border-radius': '3px', 'font-family': 'Ubuntu, Helvetica, Arial, sans-serif', 'font-size': '13px', 'line-height': '1', padding: '4px', 'text-padding': '4px 4px 4px 0', target: '_blank', 'text-decoration': 'none', 'vertical-align': 'middle' }); module.exports = exports.default;