{"version":3,"file":"infinite_scroll_controller-BscNahD8.js","sources":["../../../app/javascript/controllers/infinite_scroll_controller.js"],"sourcesContent":["import { Controller } from '@hotwired/stimulus'\nimport { Turbo } from '@hotwired/turbo-rails'\n\n// attaches an infinite-scroll listener on either a specific scrollable element or\n// the entire window()\n\n// if you want to attach the listener to the window, you can do this\n// data-infinite-scroll-attach-to-body-value=\"true\", then the listener will be attached on the window\n// rather than the element.\n\n// If you omit this option, the controller will attach the event listener-\n// on the element that has the declaration\n//\n\n// make sure that there is for the controller to work correctly.\n\nexport default class extends Controller {\n static targets = ['next']\n static values = {\n threshold: Number,\n attachToBody: Boolean,\n }\n\n initialize() {\n this.bodyScrollListener = this.bodyScrollListener.bind(this)\n this.scroll = this.scroll.bind(this)\n }\n\n connect() {\n if (this.attachToBodyValue) {\n document.addEventListener('scroll', this.bodyScrollListener)\n return\n }\n\n this.element.addEventListener('scroll', this.scroll)\n }\n\n scroll() {\n if (this.scrollReachedEnd && this.hasNextTarget) {\n this.nextTarget.click()\n }\n }\n\n disconnect() {\n document.removeEventListener('scroll', this.bodyScrollListener)\n this.element.removeEventListener('scroll', this.scroll)\n\n super.disconnect()\n }\n\n bodyScrollListener() {\n if (this.reachedEndOfBody && this.hasNextTarget) {\n this.nextTarget.click()\n }\n }\n\n get reachedEndOfBody() {\n return (\n document.documentElement.scrollTop >=\n document.documentElement.scrollHeight - document.body.offsetHeight - 100\n )\n }\n\n get scrollReachedEnd() {\n return (\n this.element.scrollTop >=\n this.element.scrollHeight - this.element.offsetHeight - 100\n )\n }\n}\n"],"names":["infinite_scroll_controller","Controller","__publicField"],"mappings":"mPAgBe,MAAKA,UAASC,CAAW,CAOtC,YAAa,CACX,KAAK,mBAAqB,KAAK,mBAAmB,KAAK,IAAI,EAC3D,KAAK,OAAS,KAAK,OAAO,KAAK,IAAI,CACvC,CAEE,SAAU,CACR,GAAI,KAAK,kBAAmB,CAC1B,SAAS,iBAAiB,SAAU,KAAK,kBAAkB,EAC3D,MACN,CAEI,KAAK,QAAQ,iBAAiB,SAAU,KAAK,MAAM,CACvD,CAEE,QAAS,CACH,KAAK,kBAAoB,KAAK,eAChC,KAAK,WAAW,MAAK,CAE3B,CAEE,YAAa,CACX,SAAS,oBAAoB,SAAU,KAAK,kBAAkB,EAC9D,KAAK,QAAQ,oBAAoB,SAAU,KAAK,MAAM,EAEtD,MAAM,WAAU,CACpB,CAEE,oBAAqB,CACf,KAAK,kBAAoB,KAAK,eAChC,KAAK,WAAW,MAAK,CAE3B,CAEE,IAAI,kBAAmB,CACrB,OACE,SAAS,gBAAgB,WACzB,SAAS,gBAAgB,aAAe,SAAS,KAAK,aAAe,GAE3E,CAEE,IAAI,kBAAmB,CACrB,OACE,KAAK,QAAQ,WACb,KAAK,QAAQ,aAAe,KAAK,QAAQ,aAAe,GAE9D,CACA,CApDEC,EADkBF,EACX,UAAU,CAAC,MAAM,GACxBE,EAFkBF,EAEX,SAAS,CACd,UAAW,OACX,aAAc,OAClB"}