{"version":3,"sources":["webpack:///./groups_list.js","webpack:///./landing.js","webpack:///./pages/explore/groups/index.js"],"names":["GroupsList","_classCallCheck","this","form","document","querySelector","filter","holder","FilterableList","initSearch","Landing","landingElement","dismissButton","cookieName","landing_classCallCheck","eventWrapper","isDismissed","classList","toggle","addEvents","dismissLanding","bind","addEventListener","removeEventListener","add","Cookies","set","expires","parseBoolean","get","initGroupsList"],"mappings":"8JAMqBA,EACnB,SAAAA,iGAAcC,CAAAC,KAAAF,GACZ,IAAMG,EAAOC,SAASC,cAAc,0BAC9BC,EAASF,SAASC,cAAc,0BAChCE,EAASH,SAASC,cAAc,0BAElCF,GAAQG,GAAUC,GACP,IAAIC,IAAeL,EAAMG,EAAQC,GACzCE,iNCuBIC,aAjCb,SAAAA,EAAYC,EAAgBC,EAAeC,gGAAYC,CAAAZ,KAAAQ,GACrDR,KAAKS,eAAiBA,EACtBT,KAAKW,WAAaA,EAClBX,KAAKU,cAAgBA,EACrBV,KAAKa,aAAe,2DAIpB,IAAMC,EAAcd,KAAKc,cAEzBd,KAAKS,eAAeM,UAAUC,OAAO,SAAUF,GAC1CA,GAAad,KAAKiB,gDAIvBjB,KAAKa,aAAaK,eAAiBlB,KAAKkB,eAAeC,KAAKnB,MAC5DA,KAAKU,cAAcU,iBAAiB,QAASpB,KAAKa,aAAaK,uDAI/DlB,KAAKU,cAAcW,oBAAoB,QAASrB,KAAKa,aAAaK,yDAIlElB,KAAKS,eAAeM,UAAUO,IAAI,UAClCC,IAAQC,IAAIxB,KAAKW,WAAY,OAAQ,CAAEc,QAAS,4CAIhD,OAAOC,YAAaH,IAAQI,IAAI3B,KAAKW,2DC7BzCT,SAASkB,iBAAiB,mBAAoB,WAC5C,IAAItB,EACJ8B,cACA,IAAMnB,EAAiBP,SAASC,cAAc,8BACzCM,GACwB,IAAID,EAC/BC,EACAA,EAAeN,cAAc,mBAC7B,oCAEmBa","file":"pages.explore.groups.ffbda8fa.chunk.js","sourcesContent":["import FilterableList from './filterable_list';\n\n/**\n * Makes search request for groups when user types a value in the search input.\n * Updates the html content of the page with the received one.\n */\nexport default class GroupsList {\n constructor() {\n const form = document.querySelector('form#group-filter-form');\n const filter = document.querySelector('.js-groups-list-filter');\n const holder = document.querySelector('.js-groups-list-holder');\n\n if (form && filter && holder) {\n const list = new FilterableList(form, filter, holder);\n list.initSearch();\n }\n }\n}\n","import Cookies from 'js-cookie';\nimport { parseBoolean } from '~/lib/utils/common_utils';\n\nclass Landing {\n constructor(landingElement, dismissButton, cookieName) {\n this.landingElement = landingElement;\n this.cookieName = cookieName;\n this.dismissButton = dismissButton;\n this.eventWrapper = {};\n }\n\n toggle() {\n const isDismissed = this.isDismissed();\n\n this.landingElement.classList.toggle('hidden', isDismissed);\n if (!isDismissed) this.addEvents();\n }\n\n addEvents() {\n this.eventWrapper.dismissLanding = this.dismissLanding.bind(this);\n this.dismissButton.addEventListener('click', this.eventWrapper.dismissLanding);\n }\n\n removeEvents() {\n this.dismissButton.removeEventListener('click', this.eventWrapper.dismissLanding);\n }\n\n dismissLanding() {\n this.landingElement.classList.add('hidden');\n Cookies.set(this.cookieName, 'true', { expires: 365 });\n }\n\n isDismissed() {\n return parseBoolean(Cookies.get(this.cookieName));\n }\n}\n\nexport default Landing;\n","import GroupsList from '~/groups_list';\nimport Landing from '~/landing';\nimport initGroupsList from '../../../groups';\n\ndocument.addEventListener('DOMContentLoaded', () => {\n new GroupsList(); // eslint-disable-line no-new\n initGroupsList();\n const landingElement = document.querySelector('.js-explore-groups-landing');\n if (!landingElement) return;\n const exploreGroupsLanding = new Landing(\n landingElement,\n landingElement.querySelector('.dismiss-button'),\n 'explore_groups_landing_dismissed',\n );\n exploreGroupsLanding.toggle();\n});\n"],"sourceRoot":""}