{"version":3,"file":"index-DeXczk9t.js","sources":["../../../app/assets/javascripts/concepts/listings/feature/lister_speaking_languages/badge_with_popover/index.ts"],"sourcesContent":["\n// region JS Imports\n\n// region External Modules\nimport $ from \"jquery\"\nimport \"bootstrap3-tooltip\"\nimport \"bootstrap3-popover\"\nimport u from \"umbrellajs\"\n// endregion External Modules\n\n// Private Modules\nimport MultiDevice from \"app/multi_device\"\nimport {\n onClickOutside,\n} from \"plugins/vanilla-clickout\"\n// Private Modules\n\n// region Public Components\n// endregion Public Components\n\n// region Private Components\n// endregion Private Components\n\n// endregion JS Imports\n\n\nconst CELL_CLASS_NAME = \"cell--listings--feature--lister_speaking_languages--badge_with_popover\"\nconst CELL_INITIALIZED_CLASS_NAME = `${CELL_CLASS_NAME}--js-spacious-initialized`\n\n\ninterface Selector {\n cell: string | JQuery | Element,\n lister_speaking_chinese_badge: string,\n}\ninterface InputSelector {\n cell: string | JQuery | Element,\n lister_speaking_chinese_badge?: string,\n}\nconst DEFAULT_SELECTOR = {\n cell: \".cell--listings--feature--lister_speaking_languages--badge_with_popover\",\n lister_speaking_chinese_badge: \".cell--listings--feature--lister_speaking_languages--badge_with_popover__lister_speaking_chinese_badge\",\n}\n\n\ninterface InputOptions {\n popover_options?: Bootstrap3Popover.Options\n}\nconst DEFAULT_POPOVER_OPTIONS = {\n placement: \"auto\",\n}\n\n\nclass Cell {\n protected selector: Selector\n\n protected $cell: JQuery\n protected $lister_speaking_chinese_badge: JQuery\n\n constructor(selector: InputSelector, options?: InputOptions) {\n this.selector = Object.assign({}, DEFAULT_SELECTOR, selector)\n\n this.$cell = $(this.selector.cell as string)\n this.$lister_speaking_chinese_badge = this.$cell.find(this.selector.lister_speaking_chinese_badge)\n\n if (this.$cell.hasClass(CELL_INITIALIZED_CLASS_NAME)) { return }\n this.$cell.addClass(CELL_INITIALIZED_CLASS_NAME)\n\n if (MultiDevice.Device.isForDesktop()) {\n const popover_options = Object.assign(\n {},\n DEFAULT_POPOVER_OPTIONS,\n options == null ? {} : options.popover_options,\n {\n content: \"This lister can speak in Chinese only. If you want to exclude this kind of listing, you can filter them by “English Speaking Lister” in your search.\",\n trigger: \"hover\",\n },\n )\n this.$lister_speaking_chinese_badge.popover(popover_options)\n }\n else {\n const popover_options = Object.assign(\n {},\n DEFAULT_POPOVER_OPTIONS,\n options == null ? {} : options.popover_options,\n {\n content: \"This lister can speak in Chinese only. If you want to exclude this kind of listing, you can filter them by “English Speaking Lister” in your search.\",\n trigger: \"manual\",\n },\n )\n this.$lister_speaking_chinese_badge.popover(popover_options)\n\n this.$lister_speaking_chinese_badge.on(\"click\", () => {\n this.$lister_speaking_chinese_badge.popover(\"show\")\n })\n\n onClickOutside(this.$lister_speaking_chinese_badge[0] as HTMLElement, () => {\n this.$lister_speaking_chinese_badge.popover(\"hide\")\n })\n }\n }\n}\n\nconst initAllMatchingElements = (options?: InputOptions) => {\n u(`.${CELL_CLASS_NAME}`).each((el) => {\n new Cell({cell: $(el)}, options)\n })\n}\n\nexport {\n initAllMatchingElements,\n}\n"],"names":["CELL_CLASS_NAME","CELL_INITIALIZED_CLASS_NAME","DEFAULT_SELECTOR","DEFAULT_POPOVER_OPTIONS","Cell","selector","options","$","MultiDevice","popover_options","onClickOutside","initAllMatchingElements","u","el"],"mappings":"mNA0BA,MAAMA,EAAkB,yEAClBC,EAA8B,GAAG,OAAAD,EAAe,6BAWhDE,EAAmB,CACvB,KAAgC,0EAChC,8BAAgC,wGAClC,EAMMC,EAA0B,CAC9B,UAAY,MACd,EAGA,MAAMC,CAAK,CAMT,YAAYC,EAAyBC,EAAwB,CAM3D,GALA,KAAK,SAAW,OAAO,OAAO,CAAC,EAAGJ,EAAkBG,CAAQ,EAE5D,KAAK,MAAQE,EAAE,KAAK,SAAS,IAAc,EAC3C,KAAK,+BAAiC,KAAK,MAAM,KAAK,KAAK,SAAS,6BAA6B,EAE7F,MAAK,MAAM,SAASN,CAA2B,EAG/C,GAFC,KAAA,MAAM,SAASA,CAA2B,EAE3CO,EAAY,OAAO,eAAgB,CACrC,MAAMC,EAAkB,OAAO,OAC7B,CAAC,EACDN,EACAG,GAAW,KAAO,GAAKA,EAAQ,gBAC/B,CACE,QAAY,uJACZ,QAAY,OAAA,CAEhB,EACK,KAAA,+BAA+B,QAAQG,CAAe,CAAA,KAExD,CACH,MAAMA,EAAkB,OAAO,OAC7B,CAAC,EACDN,EACAG,GAAW,KAAO,GAAKA,EAAQ,gBAC/B,CACE,QAAY,uJACZ,QAAY,QAAA,CAEhB,EACK,KAAA,+BAA+B,QAAQG,CAAe,EAEtD,KAAA,+BAA+B,GAAG,QAAS,IAAM,CAC/C,KAAA,+BAA+B,QAAQ,MAAM,CAAA,CACnD,EAEDC,EAAe,KAAK,+BAA+B,CAAC,EAAkB,IAAM,CACrE,KAAA,+BAA+B,QAAQ,MAAM,CAAA,CACnD,CAAA,CACH,CAEJ,CAEM,MAAAC,EAA2BL,GAA2B,CAC1DM,EAAE,IAAI,OAAAZ,EAAiB,EAAE,KAAMa,GAAO,CACpC,IAAIT,EAAK,CAAC,KAAMG,EAAEM,CAAE,GAAIP,CAAO,CAAA,CAChC,CACH"}