{ "version": 3, "sources": ["../../javascript/email_subscription_component/component.js", "../../javascript/email_subscription_component/index.js"], "sourcesContent": ["export class EmailSubscriptionFormComponent extends HTMLElement {\n static host = SCATTERGUN_URL\n\n constructor() {\n super()\n this.virtualForm = new VirtualForm()\n }\n\n connectedCallback() {\n this.render()\n }\n\n async render() {\n let response = await fetch(this.formPath)\n if (response.status != 200) { return }\n\n this.virtualForm.content = await response.text()\n\n if (this.type == \"styled\") {\n this.attachShadow({ mode: \"open\" });\n this.shadowRoot.innerHTML = this.virtualForm.render()\n } else {\n this.renderLightDom()\n }\n }\n\n renderLightDom() {\n if (this.customFormFields) {\n this.virtualForm.fields = this.customFormFields.innerHTML\n }\n\n this.innerHTML = this.virtualForm.render()\n }\n\n get formPath() {\n return `${this.constructor.host}/public/mailing_lists/${this.publishableKey}/subscribe?component=${this.type}`\n }\n\n get publishableKey() {\n return this.getAttribute(\"publishable-key\")\n }\n\n get type() {\n return this.getAttribute(\"type\") || \"unstyled\"\n }\n\n get customFormFields() {\n return this.querySelector(\"template\")\n }\n}\n\nclass VirtualForm {\n constructor() {\n this.root = document.createElement(\"div\")\n }\n\n get fields() {\n return this.root.querySelector(\"template\")\n }\n\n set fields(newFields) {\n this.root.querySelector(\"template\").innerHTML = newFields\n }\n\n get content() {\n return this.root.innerHTML\n }\n\n set content(newContent) {\n this.root.innerHTML = newContent\n }\n\n get form() {\n return this.root.querySelector(\"form\")\n }\n\n render() {\n if (this.fields) {\n this.form.append(this.fields.content.cloneNode(true))\n this.fields.remove()\n }\n\n return this.content\n }\n}", "import { EmailSubscriptionFormComponent } from \"./component\"\ncustomElements.define(\"scattergun-subscription-form\", EmailSubscriptionFormComponent)"], "mappings": ";AAAO,IAAM,iCAAN,cAA6C,YAAY;AAAA,EAC9D,OAAO,OAAO;AAAA,EAEd,cAAc;AACZ,UAAM;AACN,SAAK,cAAc,IAAI,YAAY;AAAA,EACrC;AAAA,EAEA,oBAAoB;AAClB,SAAK,OAAO;AAAA,EACd;AAAA,EAEA,MAAM,SAAS;AACb,QAAI,WAAW,MAAM,MAAM,KAAK,QAAQ;AACxC,QAAI,SAAS,UAAU,KAAK;AAAE;AAAA,IAAO;AAErC,SAAK,YAAY,UAAU,MAAM,SAAS,KAAK;AAE/C,QAAI,KAAK,QAAQ,UAAU;AACzB,WAAK,aAAa,EAAE,MAAM,OAAO,CAAC;AAClC,WAAK,WAAW,YAAY,KAAK,YAAY,OAAO;AAAA,IACtD,OAAO;AACL,WAAK,eAAe;AAAA,IACtB;AAAA,EACF;AAAA,EAEA,iBAAiB;AACf,QAAI,KAAK,kBAAkB;AACzB,WAAK,YAAY,SAAS,KAAK,iBAAiB;AAAA,IAClD;AAEA,SAAK,YAAY,KAAK,YAAY,OAAO;AAAA,EAC3C;AAAA,EAEA,IAAI,WAAW;AACb,WAAO,GAAG,KAAK,YAAY,IAAI,yBAAyB,KAAK,cAAc,wBAAwB,KAAK,IAAI;AAAA,EAC9G;AAAA,EAEA,IAAI,iBAAiB;AACnB,WAAO,KAAK,aAAa,iBAAiB;AAAA,EAC5C;AAAA,EAEA,IAAI,OAAO;AACT,WAAO,KAAK,aAAa,MAAM,KAAK;AAAA,EACtC;AAAA,EAEA,IAAI,mBAAmB;AACrB,WAAO,KAAK,cAAc,UAAU;AAAA,EACtC;AACF;AAEA,IAAM,cAAN,MAAkB;AAAA,EAChB,cAAc;AACZ,SAAK,OAAO,SAAS,cAAc,KAAK;AAAA,EAC1C;AAAA,EAEA,IAAI,SAAS;AACX,WAAO,KAAK,KAAK,cAAc,UAAU;AAAA,EAC3C;AAAA,EAEA,IAAI,OAAO,WAAW;AACpB,SAAK,KAAK,cAAc,UAAU,EAAE,YAAY;AAAA,EAClD;AAAA,EAEA,IAAI,UAAU;AACZ,WAAO,KAAK,KAAK;AAAA,EACnB;AAAA,EAEA,IAAI,QAAQ,YAAY;AACtB,SAAK,KAAK,YAAY;AAAA,EACxB;AAAA,EAEA,IAAI,OAAO;AACT,WAAO,KAAK,KAAK,cAAc,MAAM;AAAA,EACvC;AAAA,EAEA,SAAS;AACP,QAAI,KAAK,QAAQ;AACf,WAAK,KAAK,OAAO,KAAK,OAAO,QAAQ,UAAU,IAAI,CAAC;AACpD,WAAK,OAAO,OAAO;AAAA,IACrB;AAEA,WAAO,KAAK;AAAA,EACd;AACF;;;ACnFA,eAAe,OAAO,gCAAgC,8BAA8B;", "names": [] }