{"version":3,"file":"editor_controller-BUNzlgDE.js","sources":["../../../app/javascript/controllers/editor_controller.js"],"sourcesContent":["import ApplicationController from './application_controller'\n\nexport default class extends ApplicationController {\n static targets = [\n 'templatesIcon',\n 'templates',\n 'input'\n ]\n\n initialize() {\n this.state = { templatesVisible: false }\n this.observer = new MutationObserver(\n this.onMutation.bind(this),\n { attributes: true }\n )\n }\n\n connect() {\n this.observer.observe(this.templatesTarget, { attributes: true })\n }\n\n toggleTemplates() {\n this.dispatch('templates:toggle', {\n target: this.templatesTarget,\n detail: this.state.templatesVisible = !this.state.templatesVisible\n })\n\n this.onTemplatesVisibilityChange()\n }\n\n onMutation(mutations) {\n mutations.forEach((mutation) => {\n if(mutation.type === 'attributes') {\n this.state.templatesVisible = mutation.target.hasAttribute('data-visible')\n this.onTemplatesVisibilityChange()\n }\n })\n }\n\n onTemplatesVisibilityChange() {\n if(this.state.templatesVisible) {\n this.addClass(this.templatesIconTarget, 'text-tiger',)\n } else {\n this.removeClass(this.templatesIconTarget, 'text-tiger',)\n }\n }\n}\n"],"names":["editor_controller","ApplicationController","mutations","mutation","__publicField"],"mappings":"uNAEe,MAAKA,UAASC,CAAsB,CAOjD,YAAa,CACX,KAAK,MAAQ,CAAE,iBAAkB,EAAK,EACtC,KAAK,SAAW,IAAI,iBAClB,KAAK,WAAW,KAAK,IAAI,EACzB,CAAE,WAAY,EAAI,CACxB,CACA,CAEE,SAAU,CACR,KAAK,SAAS,QAAQ,KAAK,gBAAiB,CAAE,WAAY,EAAM,CAAA,CACpE,CAEE,iBAAkB,CAChB,KAAK,SAAS,mBAAoB,CAChC,OAAQ,KAAK,gBACb,OAAQ,KAAK,MAAM,iBAAmB,CAAC,KAAK,MAAM,gBACnD,CAAA,EAED,KAAK,4BAA2B,CACpC,CAEE,WAAWC,EAAW,CACpBA,EAAU,QAASC,GAAa,CAC3BA,EAAS,OAAS,eACnB,KAAK,MAAM,iBAAmBA,EAAS,OAAO,aAAa,cAAc,EACzE,KAAK,4BAA2B,EAEnC,CAAA,CACL,CAEE,6BAA8B,CACzB,KAAK,MAAM,iBACZ,KAAK,SAAS,KAAK,oBAAqB,YAAY,EAEpD,KAAK,YAAY,KAAK,oBAAqB,YAAY,CAE7D,CACA,CA3CEC,EADkBJ,EACX,UAAU,CACf,gBACA,YACA,OACJ"}