{"version":3,"file":"index-BlS07Txp.js","sources":["../../../app/frontend/javascript/controllers/main/lazy-partial_controller.js","../../../node_modules/stimulus-vite-helpers/dist/index.js"],"sourcesContent":["import { Controller } from '@hotwired/stimulus';\nimport CurrentUser from '@frontend/app/features/CurrentUser';\nimport { get } from '@rails/request.js';\nimport { runWhenDomLoaded } from '@frontend/utils/dom';\n\n/*\n * Useful to asynchronously load dynamic content.\n * Use cases:\n * - loading dynamic parts on a cached page, e.g. the article page\n * - load paginated content, e.g. article teasers.\n *\n * Build to be attached to placeholder tags (e.g. a `<div>`) or `<a>`-tags.\n *\n * == Examples\n *\n * <div data-controller=\"lazy-partial\"></div> // The div will be replaced with the dynamically loaded content\n * <a href=\"/articles?page=2\" data-controller=\"lazy-partial\">Load more</a>\n *\n * */\nexport default class extends Controller {\n  static values = {\n    path: String,\n    skipLoading: Boolean,\n    requiredRoles: Array,\n  };\n  static targets = ['container'];\n\n  connect() {\n    this.element.addEventListener(\n      'lazy-partial:reload',\n      this.reload.bind(this)\n    );\n    const userRoles = CurrentUser.roles();\n    const requiresRole = this.requiredRolesValue.length > 0;\n    const userHasRequiredRole =\n      this.requiredRolesValue.filter((role) => userRoles.includes(role))\n        .length > 0;\n    const skipLoading =\n      this.skipLoadingValue || (requiresRole && !userHasRequiredRole);\n\n    if (false === skipLoading) {\n      runWhenDomLoaded(this.load.bind(this, true));\n    }\n\n    if (this.requiredRolesValue.length > 0 && false === userHasRequiredRole) {\n      this.element.remove();\n    }\n  }\n\n  reload(event) {\n    event.preventDefault();\n\n    // debugger;\n    let path = undefined;\n    if (event.params) {\n      path = event.params.path;\n    }\n    const { lazyPartialPath } = event.currentTarget.dataset;\n    if (lazyPartialPath || path) {\n      this.pathValue = lazyPartialPath || path;\n    }\n\n    this.load(false);\n  }\n\n  scrollToAnchor(parentElement) {\n    const targetElementID = window.location.hash;\n    const targetElement =\n      targetElementID.length > 0\n        ? parentElement.querySelector(targetElementID)\n        : false;\n\n    if (targetElement) {\n      targetElement.scrollIntoView();\n    }\n  }\n\n  async load(scrollToAnchor = false) {\n    const response = await get(this.pathValue);\n    if (response.ok) {\n      const html = await response.text;\n      const parentElement = this.hasContainerTarget\n        ? this.containerTarget\n        : this.element;\n\n      if (this.hasContainerTarget) {\n        this.containerTarget.innerHTML = html;\n      } else {\n        this.element.outerHTML = html;\n      }\n\n      // If the current url references a valid anchor, we attemp to scroll to it. Useful to deep-link to parts\n      // of dynamically loaded content, e.g. a comment in the comment system.\n      if (scrollToAnchor) {\n        this.scrollToAnchor(parentElement);\n      }\n    }\n  }\n}\n\nexport function reload(targetEl) {\n  targetEl.dispatchEvent(\n    new CustomEvent('lazy-partial:reload', { bubbles: true })\n  );\n}\n","// src/index.ts\nvar CONTROLLER_FILENAME_REGEX = /^(?:.*?(?:controllers|components)\\/|\\.?\\.\\/)?(.+)(?:[/_-]controller\\..+?)$/;\nfunction registerControllers(application, controllerModules) {\n  application.load(definitionsFromGlob(controllerModules));\n}\nfunction definitionsFromGlob(controllerModules) {\n  return Object.entries(controllerModules).map(definitionFromEntry).filter((value) => value);\n}\nfunction definitionFromEntry([name, controllerModule]) {\n  var _a;\n  const identifier = identifierForGlobKey(name);\n  const controllerConstructor = (_a = controllerModule.default) != null ? _a : controllerModule;\n  if (identifier && typeof controllerConstructor === \"function\")\n    return { identifier, controllerConstructor };\n}\nfunction identifierForGlobKey(key) {\n  const logicalName = (key.match(CONTROLLER_FILENAME_REGEX) || [])[1];\n  if (logicalName)\n    return logicalName.replace(/_/g, \"-\").replace(/\\//g, \"--\");\n}\nexport {\n  CONTROLLER_FILENAME_REGEX,\n  definitionsFromGlob,\n  identifierForGlobKey,\n  registerControllers\n};\n"],"names":["lazyPartial_controller","Controller","userRoles","CurrentUser","requiresRole","userHasRequiredRole","role","runWhenDomLoaded","event","path","lazyPartialPath","parentElement","targetElementID","targetElement","scrollToAnchor","response","get","html","__publicField","reload","targetEl","CONTROLLER_FILENAME_REGEX","registerControllers","application","controllerModules","definitionsFromGlob","definitionFromEntry","value","name","controllerModule","_a","identifier","identifierForGlobKey","controllerConstructor","key","logicalName"],"mappings":"2UAmBe,MAAKA,UAASC,CAAW,CAQtC,SAAU,CACR,KAAK,QAAQ,iBACX,sBACA,KAAK,OAAO,KAAK,IAAI,CACtB,EACD,MAAMC,EAAYC,EAAY,MAAO,EAC/BC,EAAe,KAAK,mBAAmB,OAAS,EAChDC,EACJ,KAAK,mBAAmB,OAAQC,GAASJ,EAAU,SAASI,CAAI,CAAC,EAC9D,OAAS,GAEZ,KAAK,kBAAqBF,GAAgB,CAACC,KAEzC,IACFE,EAAiB,KAAK,KAAK,KAAK,KAAM,EAAI,CAAC,EAGzC,KAAK,mBAAmB,OAAS,GAAeF,IAAV,IACxC,KAAK,QAAQ,OAAQ,CAE3B,CAEE,OAAOG,EAAO,CACZA,EAAM,eAAgB,EAGtB,IAAIC,EACAD,EAAM,SACRC,EAAOD,EAAM,OAAO,MAEtB,KAAM,CAAE,gBAAAE,CAAe,EAAKF,EAAM,cAAc,SAC5CE,GAAmBD,KACrB,KAAK,UAAYC,GAAmBD,GAGtC,KAAK,KAAK,EAAK,CACnB,CAEE,eAAeE,EAAe,CAC5B,MAAMC,EAAkB,OAAO,SAAS,KAClCC,EACJD,EAAgB,OAAS,EACrBD,EAAc,cAAcC,CAAe,EAC3C,GAEFC,GACFA,EAAc,eAAgB,CAEpC,CAEE,MAAM,KAAKC,EAAiB,GAAO,CACjC,MAAMC,EAAW,MAAMC,EAAI,KAAK,SAAS,EACzC,GAAID,EAAS,GAAI,CACf,MAAME,EAAO,MAAMF,EAAS,KACtBJ,EAAgB,KAAK,mBACvB,KAAK,gBACL,KAAK,QAEL,KAAK,mBACP,KAAK,gBAAgB,UAAYM,EAEjC,KAAK,QAAQ,UAAYA,EAKvBH,GACF,KAAK,eAAeH,CAAa,CAEzC,CACA,CACA,CA9EEO,EADkBlB,EACX,SAAS,CACd,KAAM,OACN,YAAa,QACb,cAAe,KAChB,GACDkB,EANkBlB,EAMX,UAAU,CAAC,WAAW,GA2ExB,SAASmB,EAAOC,EAAU,CAC/BA,EAAS,cACP,IAAI,YAAY,sBAAuB,CAAE,QAAS,EAAM,CAAA,CACzD,CACH,uHCvGA,IAAIC,EAA4B,6EAChC,SAASC,EAAoBC,EAAaC,EAAmB,CAC3DD,EAAY,KAAKE,EAAoBD,CAAiB,CAAC,CACzD,CACA,SAASC,EAAoBD,EAAmB,CAC9C,OAAO,OAAO,QAAQA,CAAiB,EAAE,IAAIE,CAAmB,EAAE,OAAQC,GAAUA,CAAK,CAC3F,CACA,SAASD,EAAoB,CAACE,EAAMC,CAAgB,EAAG,CACrD,IAAIC,EACJ,MAAMC,EAAaC,EAAqBJ,CAAI,EACtCK,GAAyBH,EAAKD,EAAiB,UAAY,KAAOC,EAAKD,EAC7E,GAAIE,GAAc,OAAOE,GAA0B,WACjD,MAAO,CAAE,WAAAF,EAAY,sBAAAE,CAAuB,CAChD,CACA,SAASD,EAAqBE,EAAK,CACjC,MAAMC,GAAeD,EAAI,MAAMb,CAAyB,GAAK,CAAE,GAAE,CAAC,EAClE,GAAIc,EACF,OAAOA,EAAY,QAAQ,KAAM,GAAG,EAAE,QAAQ,MAAO,IAAI,CAC7D","x_google_ignoreList":[1]}