{"version":3,"sources":["webpack:///./app/javascript/helpers/sentry.js.erb","webpack:///./app/javascript/helpers/set_sentry_tags.js.erb","webpack:///./app/javascript/components/common/bind_global_jquery_listeners.js","webpack:///./app/javascript/components/common/handle_history_change.js","webpack:///./app/javascript/packs/application.js","webpack:///./app/javascript/components/common/log_exception.js","webpack:///./app/javascript/helpers/setupLocale.js"],"names":["Sentry","dsn","allowUrls","integrations","Integrations","BrowserTracing","environment","$","document","ajaxSuccess","_event","xhr","redirect_path","getResponseHeader","Turbo","visit","ajaxError","logException","ajaxSetup","headers","attr","window","onpopstate","event","state","path","action","setupLocale","removeOldGtag","querySelectorAll","forEach","script","src","includes","remove","addEventListener","isError","e","stack","message","isXHR","responseText","status","ResponseError","name","Error","error","console","warn","localeMetaElement","getElementById","I18n","I18nBase","locales","defaultLocale","dataset","locale"],"mappings":"2yhlCAIEA,IAAY,CACVC,IAAK,4EACLC,UAAW,CAAC,YAAa,UAAW,aACpCC,aAAc,CAAC,IAAIC,IAAaC,gBAChCC,YAAa,eCLfN,IAAc,eAAgB,YCA9BO,EAAEC,UAAUC,aAAY,SAACC,EAAQC,GAC/B,IAAIC,EAAgBD,EAAIE,kBAAkB,0BACtCD,GAAeE,MAAMC,MAAMH,MAGjCL,EAAEC,UAAUQ,WAAU,SAACN,EAAQC,GAC7BM,YAAaN,MAGfJ,EAAEW,UAAU,CACVC,QAAS,CACP,eAAgBZ,EAAE,2BAA2Ba,KAAK,cCbtDC,OAAOC,WAAa,SAAAC,GACdA,EAAMC,MAAMC,MACdX,MAAMC,MAAMQ,EAAMC,MAAMC,KAAM,CAAEC,OAAQ,aCoB9CC,cAEAN,OAAOO,cAAgB,WACPpB,SAASqB,iBAAiB,mEAEhCC,SAAQ,SAASC,GACnBA,EAAOC,IAAIC,SAAS,WACtBF,EAAOG,aAKb1B,SAAS2B,iBAAiB,sBAAsB,WAC9Cd,OAAOO,oB,8tDClCT,IAeMQ,EAAU,SAAAC,GAAC,OAAIA,GAAKA,EAAEC,OAASD,EAAEE,SAEjCC,EAAQ,SAAAH,GAAC,OAAIA,GAAKA,EAAEI,cAAgBJ,EAAEK,QAEtCC,E,wZACJ,WAAYhC,GAAM,IAAD,S,4FAAA,UACf,cAAMA,EAAI8B,eACLG,KAAL,0BAA+BjC,EAAI+B,QAFpB,E,YADSG,QAOb5B,IA1BM,SAAAoB,GACnB,IAAIS,EAEAV,EAAQC,GACVS,EAAQT,EACCG,EAAMH,IAAmB,MAAbA,EAAEK,QAA+B,MAAbL,EAAEK,SAC3CI,EAAQ,IAAIH,EAAcN,IAGxBS,IACFC,QAAQC,KAAKF,GACb9C,IAAwB8C,M,gCCb5B,wDAGe,SAASnB,IACtB,IAAMsB,EAAoBzC,SAAS0C,eAAe,aAElD,GAA2B,qBAAhB7B,OAAO8B,KAAsB,CACtC,IAAMA,EAAO,IAAIC,IAASC,GAC1BhC,OAAO8B,KAAOA,EAGZF,GACFE,KAAKG,cAAgBL,EAAkBM,QAAQD,cAC/CH,KAAKK,OAASP,EAAkBM,QAAQC,SAExCL,KAAKG,cAAgB,KACrBH,KAAKK,OAAS,S","file":"js/application-5a9987b6592262f9d974.chunk.js","sourcesContent":["import * as Sentry from '@sentry/browser';\nimport { Integrations } from '@sentry/tracing';\n\nexport default function initializeSentry() {\n  Sentry.init({\n    dsn: 'https://e9f454c531304d9db1eddb86baedc79c@o173130.ingest.sentry.io/1253396',\n    allowUrls: [/identifyy/, /webpack/, /localhost/],\n    integrations: [new Integrations.BrowserTracing()],\n    environment: 'production',\n  });\n};\n","import * as Sentry from '@sentry/browser';\n\nexport default function setSentryTags() {\n  Sentry.setTag('error_source', 'frontend');\n};\n","import logException from 'components/common/log_exception';\n\nexport default function bindGlobalJqueryListeners() {\n  $(document).ajaxSuccess((_event, xhr) => {\n    let redirect_path = xhr.getResponseHeader('SPECIAL_EVENT_REDIRECT');\n    if (redirect_path) Turbo.visit(redirect_path);\n  });\n\n  $(document).ajaxError((_event, xhr) => {\n    logException(xhr);\n  });\n\n  $.ajaxSetup({\n    headers: {\n      'X-CSRF-Token': $('meta[name=\"csrf-token\"]').attr('content'),\n    },\n  });\n}\n","export default function handleHistoryChange() {\n  window.onpopstate = event => {\n    if (event.state.path) {\n      Turbo.visit(event.state.path, { action: 'replace' });\n    }\n  };\n}\n","/* eslint no-console:0 */\n// This file is automatically compiled by Webpack, along with any other files\n// present in this directory. You're encouraged to place your actual application logic in\n// a relevant structure within app/javascript and only use these pack files to reference\n// that code so it'll be compiled.\n//\n// To reference this file, add <%= javascript_packs_with_chunks_tag 'application' %> to the appropriate\n// layout file, like app/views/layouts/application.html.erb\nimport initializeSentry from 'helpers/sentry.js.erb';\nimport setSentryTags from 'helpers/set_sentry_tags.js.erb';\ninitializeSentry();\nsetSentryTags();\n\nimport 'styles/react-widgets';\nimport 'styles/intl-tel-input';\nimport '@hotwired/turbo-rails';\n\nimport handleHistoryChange from 'components/common/handle_history_change';\nimport bindGlobalJqueryListeners from 'components/common/bind_global_jquery_listeners';\nimport setupLocale from 'helpers/setupLocale';\n\nbindGlobalJqueryListeners();\nhandleHistoryChange();\nsetupLocale();\n\nwindow.removeOldGtag = function() {\n  let scripts = document.querySelectorAll('script[src*=\"pagead2.googlesyndication.com/pagead/conversion/\"]');\n\n  scripts.forEach(function(script) {\n    if (script.src.includes('label=')) {\n      script.remove();\n    }\n  });\n}\n\ndocument.addEventListener('turbo:before-cache', function() {\n  window.removeOldGtag();\n});\n","import * as Sentry from '@sentry/browser'\n\nconst logException = e => {\n  let error;\n\n  if (isError(e)) {\n    error = e;\n  } else if (isXHR(e) && e.status !== 422 && e.status !== 401) {\n    error = new ResponseError(e);\n  }\n\n  if (error) {\n    console.warn(error);\n    Sentry.captureException(error);\n  }\n};\n\nconst isError = e => e && e.stack && e.message;\n\nconst isXHR = e => e && e.responseText && e.status;\n\nclass ResponseError extends Error {\n  constructor(xhr) {\n    super(xhr.responseText);\n    this.name = `ResponseError : ${xhr.status}`;\n  }\n}\n\nexport default logException;\n","import { I18n as I18nBase } from 'i18n-js';\nimport locales from 'locales.json';\n\nexport default function setupLocale() {\n  const localeMetaElement = document.getElementById('js-locale');\n\n  if (typeof window.I18n === 'undefined') {\n    const I18n = new I18nBase(locales);\n    window.I18n = I18n;\n  }\n\n  if (localeMetaElement) {\n    I18n.defaultLocale = localeMetaElement.dataset.defaultLocale;\n    I18n.locale = localeMetaElement.dataset.locale;\n  } else {\n    I18n.defaultLocale = 'en';\n    I18n.locale = 'en';\n  }\n}\n"],"sourceRoot":""}