{"version":3,"file":"js/public-ee35f7019f014a413a43.js","mappings":"kIAEA,wBAA6BA,EAAAA,GAC3B,wBAAIC,GAEF,MAAO,KAQJC,KAAKC,WANHC,MAAM,MACNC,OAAO,GAAG,GACVD,MAAM,QACNE,KAAIC,GAAKA,EAAEC,QAAQ,KAAKC,GAAKA,EAAEC,kBAC/BC,KAAK,IACLH,QAAQ,OAAOI,GAAKA,EAAEC,gBAPpB,EAST,CAEAC,MAAAA,GAEEZ,KAAKa,QAAQb,KAAKD,sBAAwBC,IAE5C,CAGAc,cAAAA,CAAeC,EAAWC,EAAS,CAAC,GAElCC,OAAOC,OAAOF,EAAQ,CAACG,WAAYnB,OACnC,MAAMoB,EAAQ,IAAIC,YAAYN,EAAW,CAACC,SAAQM,SAAS,EAAMC,YAAY,IAE7E,OADAvB,KAAKa,QAAQW,cAAcJ,GACpBA,CACT,CAEAK,MAAAA,GACE,OAAOzB,KAAK0B,eAAe1B,KAAKa,QAClC,CAEAa,cAAAA,CAAeC,GACb,QAAIA,EAAEF,UAEME,EAAEC,eAGL5B,KAAK0B,eAAeC,EAAEC,cAEjC,E,qGCtCa,MAAAC,UAAcC,EAAAA,GAG3BC,OAAAA,GACE/B,KAAKgC,aAAaC,YAAc,SAClC,CACAC,KAAAA,GACElC,KAAKgC,aAAaC,YAAc,qBAClC,CACAE,KAAAA,GACEnC,KAAKgC,aAAaC,YAAc,OAClC,CACAG,OAAAA,GACEA,QAAQC,IAAI,mCACd,CACAC,KAAAA,GACEtC,KAAKuC,kBAAkBC,sBACzB,E,EACDX,E,EAjBkB,CAAE,W,sUAiBpB,c,4LCtBc,MAAAA,UAAcC,EAAAA,GAE3BC,OAAAA,GAC6C,OAAxCU,aAAaC,QAAQ,gBACtB1C,KAAK2C,yBAET,CACAA,uBAAAA,GACE3C,KAAK4C,0BAA0BC,MAAMC,UAAY,OACnD,CACAC,sBAAAA,CAAuB3B,GACrBpB,KAAKgD,WAAW,CACdC,kBAAmB,YAErBjD,KAAKkD,YACP,CACAC,sBAAAA,CAAuB/B,GACrBpB,KAAKgD,WAAW,CACdC,kBAAmB,WAErBjD,KAAKkD,YACP,CACAF,UAAAA,CAAWI,GACTC,KAAK,UAAW,SAAUD,GAC1BX,aAAaa,QAAQ,cAAeC,KAAKC,UAAUJ,GACrD,CACAF,UAAAA,GACElD,KAAK4C,0BAA0BC,MAAMC,UAAY,GACnD,E,EACDjB,E,EA5BkB,CAAC,wB,sUA4BnB,c,mJCvBD,MAAM4B,EAAcC,EAAAA,GAAYC,QAC1BC,EAAUC,EAAAA,MAChBJ,EAAYK,MAAKC,EAAAA,EAAAA,IAAuBH,IAExCH,EAAYO,OAAQC,C,uBCXpB,IAAI7D,EAAM,CACT,iCAAkC,KAClC,oCAAqC,KACrC,uBAAwB,KACxB,kDAAmD,KACnD,qDAAsD,KACtD,wCAAyC,MAI1C,SAAS8D,EAAeC,GACvB,IAAIC,EAAKC,EAAsBF,GAC/B,OAAOG,EAAoBF,EAC5B,CACA,SAASC,EAAsBF,GAC9B,IAAIG,EAAoBC,EAAEnE,EAAK+D,GAAM,CACpC,IAAIxC,EAAI,IAAI6C,MAAM,uBAAyBL,EAAM,KAEjD,MADAxC,EAAE8C,KAAO,mBACH9C,CACP,CACA,OAAOvB,EAAI+D,EACZ,CACAD,EAAeQ,KAAO,WACrB,OAAOzD,OAAOyD,KAAKtE,EACpB,EACA8D,EAAeS,QAAUN,EACzBO,EAAOC,QAAUX,EACjBA,EAAeE,GAAK,I,qGC1BL,MAAAvC,UAAc/B,EAAAA,QAK3BiC,OAAAA,GACE/B,KAAKa,QAAQiE,KAAO,yBAAyB9E,KAAK+E,2BAA2B/E,KAAKgF,kBACpF,E,EACDnD,E,EAAA,S,EAPiB,CACdoD,OAAQC,OACRC,YAAaD,S","sources":["webpack://fieldnotes/./app/javascript/controllers/application_controller.js","webpack://fieldnotes/./app/javascript/controllers-public/test_controller.js","webpack://fieldnotes/./app/javascript/controllers-public/cookie_consent_controller.js","webpack://fieldnotes/./app/javascript/controllers-public/index.js","webpack://fieldnotes/./app/javascript/controllers-public/ sync _controller\\.js$","webpack://fieldnotes/./app/javascript/controllers-public/public_link_click_controller.js"],"sourcesContent":["import {ApplicationController} from \"stimulus-use\";\n\nexport default class extends ApplicationController {\n get camelCasedIdentifier() {\n // https://leastbad.com/stimulus-power-move\n return (str => {\n return str\n .split(\"--\")\n .slice(-1)[0]\n .split(/[-_]/)\n .map(w => w.replace(/./, m => m.toUpperCase()))\n .join(\"\")\n .replace(/^\\w/, c => c.toLowerCase());\n })(this.identifier);\n }\n\n attach() {\n // https://leastbad.com/stimulus-power-move\n this.element[this.camelCasedIdentifier] = this;\n // console.log(`attaching ${this.camelCasedIdentifier}`);\n }\n\n // a custom version of dispatch that just uses a name (unprefixed)\n simpleDispatch(eventName, detail = {}) {\n // includes the emitting controller in the event detail\n Object.assign(detail, {controller: this});\n const event = new CustomEvent(eventName, {detail, bubbles: true, cancelable: true});\n this.element.dispatchEvent(event);\n return event;\n }\n\n hidden() {\n return this._hiddenElement(this.element);\n }\n\n _hiddenElement(e) {\n if (e.hidden) {\n return true;\n } else if (!e.parentElement) {\n return false;\n } else {\n return this._hiddenElement(e.parentElement);\n }\n }\n}\n","// Visit The Stimulus Handbook for more details\n// https://stimulusjs.org/handbook/introduction\n//\nimport {Controller} from \"@hotwired/stimulus\";\n\nexport default class extends Controller {\n static targets = [ \"output\" ];\n\n connect() {\n this.outputTarget.textContent = \"Connect\";\n }\n greet() {\n this.outputTarget.textContent = \"Hello from Stimulus\";\n }\n reset() {\n this.outputTarget.textContent = \"Reset\";\n }\n console() {\n console.log(\"Hello from Stimulus (in console)\"); // eslint-disable-line no-console\n }\n error() {\n this.nonExistingMethod.shouldRaiseSomething();\n }\n}\n","import {Controller} from \"@hotwired/stimulus\";\nexport default class extends Controller {\n static targets = [\"cookieConsentBanner\"];\n connect() {\n if(localStorage.getItem('consentMode') === null) { // Haven't accepted or rejected yet\n this.showCookieConsentBanner();\n }\n }\n showCookieConsentBanner() {\n this.cookieConsentBannerTarget.style.maxHeight = \"500px\";\n }\n acceptAnalyticsCookies(event) {\n this.setConsent({\n analytics_storage: 'granted'\n });\n this.hideBanner();\n }\n rejectAnalyticsCookies(event) {\n this.setConsent({\n analytics_storage: 'denied'\n });\n this.hideBanner();\n }\n setConsent(consent) {\n gtag('consent', 'update', consent);\n localStorage.setItem('consentMode', JSON.stringify(consent));\n }\n hideBanner() {\n this.cookieConsentBannerTarget.style.maxHeight = \"0\";\n }\n}\n","/* global process, require */\n// Load all the controllers within this directory and all subdirectories.\n// Controller files must be named *_controller.js.\n\nimport { Application } from \"@hotwired/stimulus\";\nimport { definitionsFromContext } from \"@hotwired/stimulus-webpack-helpers\";\n\nconst application = Application.start();\nconst context = require.context(\"controllers-public\", true, /_controller\\.js$/);\napplication.load(definitionsFromContext(context));\n// enable Stimulus debug mode in development\napplication.debug = process.env.NODE_ENV === \"development\";\n// alternatively:\n// window.Stimulus = application;\n","var map = {\n\t\"./cookie_consent_controller.js\": 5014,\n\t\"./public_link_click_controller.js\": 7870,\n\t\"./test_controller.js\": 3771,\n\t\"controllers-public/cookie_consent_controller.js\": 5014,\n\t\"controllers-public/public_link_click_controller.js\": 7870,\n\t\"controllers-public/test_controller.js\": 3771\n};\n\n\nfunction webpackContext(req) {\n\tvar id = webpackContextResolve(req);\n\treturn __webpack_require__(id);\n}\nfunction webpackContextResolve(req) {\n\tif(!__webpack_require__.o(map, req)) {\n\t\tvar e = new Error(\"Cannot find module '\" + req + \"'\");\n\t\te.code = 'MODULE_NOT_FOUND';\n\t\tthrow e;\n\t}\n\treturn map[req];\n}\nwebpackContext.keys = function webpackContextKeys() {\n\treturn Object.keys(map);\n};\nwebpackContext.resolve = webpackContextResolve;\nmodule.exports = webpackContext;\nwebpackContext.id = 7796;","import ApplicationController from \"../controllers/application_controller\";\nexport default class extends ApplicationController {\n static values = {\n source: String,\n destination: String\n };\n connect() {\n this.element.href = `/website_click?source=${this.sourceValue}&destination=${this.destinationValue}`;\n }\n}\n"],"names":["ApplicationController","camelCasedIdentifier","this","identifier","split","slice","map","w","replace","m","toUpperCase","join","c","toLowerCase","attach","element","simpleDispatch","eventName","detail","Object","assign","controller","event","CustomEvent","bubbles","cancelable","dispatchEvent","hidden","_hiddenElement","e","parentElement","_Class","Controller","connect","outputTarget","textContent","greet","reset","console","log","error","nonExistingMethod","shouldRaiseSomething","localStorage","getItem","showCookieConsentBanner","cookieConsentBannerTarget","style","maxHeight","acceptAnalyticsCookies","setConsent","analytics_storage","hideBanner","rejectAnalyticsCookies","consent","gtag","setItem","JSON","stringify","application","Application","start","context","require","load","definitionsFromContext","debug","process","webpackContext","req","id","webpackContextResolve","__webpack_require__","o","Error","code","keys","resolve","module","exports","href","sourceValue","destinationValue","source","String","destination"],"sourceRoot":""}