{"version":3,"file":"bootstrap-carousel-DJy8mHZP.js","sources":["../../../app/assets/javascripts/plugins/jquery_plugins/bootstrap-carousel.ts"],"sourcesContent":["import $ from \"jquery\"\nimport \"bootstrap-transition\"\n/*\n * temp fix for https://sentry.io/spacious/spacious-rails-js/issues/156593907/events/4779178639/\n * http://stackoverflow.com/questions/29027830/getting-cannot-read-property-offsetwidth-of-undefined-with-bootstrap-carousel\n */\n\n/* ==========================================================\n * bootstrap-carousel.js v2.3.2\n * http://twitter.github.com/bootstrap/javascript.html#carousel\n * ==========================================================\n * Copyright 2012 Twitter, Inc.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\")\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n * ========================================================== */\n\n\n/* eslint-disable */\n(function ($) {\n\n \"use strict\" // jshint _\n\n\n /* CAROUSEL CLASS DEFINITION\n * ========================= */\n\n var Carousel = function (element, options) {\n this.$element = $(element)\n this.$indicators = this.$element.find('.carousel-indicators')\n this.options = options\n this.options.pause == 'hover' && this.$element\n .on('mouseenter', $.proxy(this.pause, this))\n .on('mouseleave', $.proxy(this.cycle, this))\n }\n\n Carousel.prototype = {\n\n cycle: function (e) {\n if (!e) this.paused = false\n if (this.interval) clearInterval(this.interval)\n if (this.options.interval && !this.paused) {\n // Since sometimes \"transition end\" event does not fire\n // internal state `sliding` stuck in `true` and the cycling would never\n // run due to internal state `sliding` check in `#next`\n //\n // Resetting here\n this.sliding = false\n this.interval = setInterval($.proxy(this.next, this), this.options.interval)\n }\n return this\n }\n\n , getActiveIndex: function () {\n this.$active = this.$element.find('.item.active')\n this.$items = this.$active.parent().children()\n return this.$items.index(this.$active)\n }\n\n , to: function (pos) {\n var activeIndex = this.getActiveIndex()\n , that = this\n\n if (pos > (this.$items.length - 1) || pos < 0) return\n\n if (this.sliding) {\n return this.$element.one('slid', function () {\n that.to(pos)\n })\n }\n\n if (activeIndex == pos) {\n return this.pause().cycle()\n }\n\n return this.slide(pos > activeIndex ? 'next' : 'prev', $(this.$items[pos]))\n }\n\n , pause: function (e) {\n if (!e) this.paused = true\n if (this.$element.find('.next, .prev').length && $.support.transition.end) {\n this.$element.trigger($.support.transition.end)\n this.cycle(true)\n }\n clearInterval(this.interval)\n this.interval = null\n return this\n }\n\n , next: function () {\n if (this.sliding) return\n return this.slide('next')\n }\n\n , prev: function () {\n if (this.sliding) return\n return this.slide('prev')\n }\n\n , slide: function (type, next) {\n var $active = this.$element.find('.item.active')\n , $next = next || $active[type]()\n , isCycling = this.interval\n , direction = type == 'next' ? 'left' : 'right'\n , fallback = type == 'next' ? 'first' : 'last'\n , that = this\n , e\n\n this.sliding = true\n isCycling && this.pause()\n\n $next = $next.length ? $next : this.$element.find('.item')[fallback]()\n\n e = $.Event('slide', {\n relatedTarget: $next[0]\n , direction: direction\n })\n\n if ($next.hasClass('active')) return\n\n if (this.$indicators.length) {\n this.$indicators.find('.active').removeClass('active')\n this.$element.one('slid', function () {\n var $nextIndicator = $(that.$indicators.children()[that.getActiveIndex()])\n $nextIndicator && $nextIndicator.addClass('active')\n })\n }\n\n if ($.support.transition && this.$element.hasClass('slide')) {\n this.$element.trigger(e)\n if (e.isDefaultPrevented()) return\n $next.addClass(type)\n if (typeof $next == 'object' && $next.length) $next[0].offsetWidth // force reflow\n $active.addClass(direction)\n $next.addClass(direction)\n this.$element.one($.support.transition.end, function () {\n $next.removeClass([type, direction].join(' ')).addClass('active')\n $active.removeClass(['active', direction].join(' '))\n that.sliding = false\n setTimeout(function () { that.$element.trigger('slid') }, 0)\n })\n } else {\n this.$element.trigger(e)\n if (e.isDefaultPrevented()) return\n $active.removeClass('active')\n $next.addClass('active')\n this.sliding = false\n this.$element.trigger('slid')\n }\n\n isCycling && this.cycle()\n\n return this\n }\n\n }\n\n\n /* CAROUSEL PLUGIN DEFINITION\n * ========================== */\n\n var old = $.fn.carousel\n\n $.fn.carousel = function (option) {\n return this.each(function () {\n var $this = $(this)\n , data = $this.data('carousel')\n , options = $.extend({}, $.fn.carousel.defaults, typeof option == 'object' && option)\n , action = typeof option == 'string' ? option : options.slide\n if (!data) $this.data('carousel', (data = new Carousel(this, options)))\n if (typeof option == 'number') data.to(option)\n else if (action) data[action]()\n else if (options.interval) data.pause().cycle()\n })\n }\n\n $.fn.carousel.defaults = {\n interval: 5000\n , pause: 'hover'\n }\n\n $.fn.carousel.Constructor = Carousel\n\n\n /* CAROUSEL NO CONFLICT\n * ==================== */\n\n $.fn.carousel.noConflict = function () {\n $.fn.carousel = old\n return this\n }\n\n /* CAROUSEL DATA-API\n * ================= */\n let slideIndex\n $(document).on('click.carousel.data-api', '[data-slide], [data-slide-to]', function (e) {\n var $this = $(this), href\n , $target = $($this.attr('data-target') || (href = $this.attr('href')) && href.replace(/.*(?=#[^\\s]+$)/, '')) //strip for ie7\n , options = $.extend({}, $target.data(), $this.data())\n , slideIndex\n\n $target.carousel(options)\n\n if (slideIndex = $this.attr('data-slide-to')) {\n $target.data('carousel').pause().to(slideIndex).cycle()\n }\n\n e.preventDefault()\n })\n\n})($)\n"],"names":["$","Carousel","element","options","e","pos","activeIndex","that","type","next","$active","$next","isCycling","direction","fallback","$nextIndicator","old","option","$this","data","action","href","$target","slideIndex"],"mappings":"qFA4BC,SAAUA,EAAG,CAQR,IAAAC,EAAW,SAAUC,EAASC,EAAS,CACpC,KAAA,SAAWH,EAAEE,CAAO,EACzB,KAAK,YAAc,KAAK,SAAS,KAAK,sBAAsB,EAC5D,KAAK,QAAUC,EACV,KAAA,QAAQ,OAAS,SAAW,KAAK,SACnC,GAAG,aAAcH,EAAE,MAAM,KAAK,MAAO,IAAI,CAAC,EAC1C,GAAG,aAAcA,EAAE,MAAM,KAAK,MAAO,IAAI,CAAC,CAC/C,EAEAC,EAAS,UAAY,CAEnB,MAAO,SAAUG,EAAG,CACd,OAACA,IAAG,KAAK,OAAS,IAClB,KAAK,UAAwB,cAAA,KAAK,QAAQ,EAC1C,KAAK,QAAQ,UAAY,CAAC,KAAK,SAMjC,KAAK,QAAU,GACV,KAAA,SAAW,YAAYJ,EAAE,MAAM,KAAK,KAAM,IAAI,EAAG,KAAK,QAAQ,QAAQ,GAEtE,IACT,EAEA,eAAgB,UAAY,CAC1B,YAAK,QAAU,KAAK,SAAS,KAAK,cAAc,EAChD,KAAK,OAAS,KAAK,QAAQ,OAAA,EAAS,SAAS,EACtC,KAAK,OAAO,MAAM,KAAK,OAAO,CACvC,EAEA,GAAI,SAAUK,EAAK,CACjB,IAAIC,EAAc,KAAK,eAAe,EAClCC,EAAO,KAEX,GAAI,EAAAF,EAAO,KAAK,OAAO,OAAS,GAAMA,EAAM,GAE5C,OAAI,KAAK,QACA,KAAK,SAAS,IAAI,OAAQ,UAAY,CAC3CE,EAAK,GAAGF,CAAG,CAAA,CACZ,EAGCC,GAAeD,EACV,KAAK,MAAM,EAAE,MAAM,EAGrB,KAAK,MAAMA,EAAMC,EAAc,OAAS,OAAQN,EAAE,KAAK,OAAOK,CAAG,CAAC,CAAC,CAC5E,EAEA,MAAO,SAAUD,EAAG,CACd,OAACA,IAAG,KAAK,OAAS,IAClB,KAAK,SAAS,KAAK,cAAc,EAAE,QAAUJ,EAAE,QAAQ,WAAW,MACpE,KAAK,SAAS,QAAQA,EAAE,QAAQ,WAAW,GAAG,EAC9C,KAAK,MAAM,EAAI,GAEjB,cAAc,KAAK,QAAQ,EAC3B,KAAK,SAAW,KACT,IACT,EAEA,KAAM,UAAY,CAChB,GAAI,MAAK,QACF,OAAA,KAAK,MAAM,MAAM,CAC1B,EAEA,KAAM,UAAY,CAChB,GAAI,MAAK,QACF,OAAA,KAAK,MAAM,MAAM,CAC1B,EAEA,MAAO,SAAUQ,EAAMC,EAAM,CACvB,IAAAC,EAAU,KAAK,SAAS,KAAK,cAAc,EAC3CC,EAAQF,GAAQC,EAAQF,CAAI,EAC5B,EAAAI,EAAY,KAAK,SACjBC,EAAYL,GAAQ,OAAS,OAAS,QACtCM,EAAYN,GAAQ,OAAS,QAAU,OACvCD,EAAO,KACPH,EAYA,GAVJ,KAAK,QAAU,GACfQ,GAAa,KAAK,MAAM,EAEhBD,EAAAA,EAAM,OAASA,EAAQ,KAAK,SAAS,KAAK,OAAO,EAAEG,CAAQ,EAAE,EAEjEd,EAAAA,EAAE,MAAM,QAAS,CACnB,cAAeW,EAAM,CAAC,EACtB,UAAAE,CAAA,CACD,EAEG,CAAAF,EAAM,SAAS,QAAQ,EAU3B,IARI,KAAK,YAAY,SACnB,KAAK,YAAY,KAAK,SAAS,EAAE,YAAY,QAAQ,EAChD,KAAA,SAAS,IAAI,OAAQ,UAAY,CAChC,IAAAI,EAAiBf,EAAEO,EAAK,YAAY,WAAWA,EAAK,eAAe,CAAC,CAAC,EACvDQ,GAAAA,EAAe,SAAS,QAAQ,CAAA,CACnD,GAGCf,EAAE,QAAQ,YAAc,KAAK,SAAS,SAAS,OAAO,EAAG,CAEvD,GADC,KAAA,SAAS,QAAQI,CAAC,EACnBA,EAAE,qBAAsB,OAC5BO,EAAM,SAASH,CAAI,EACf,OAAOG,GAAS,UAAYA,EAAM,QAAQA,EAAM,CAAC,EAAE,YACvDD,EAAQ,SAASG,CAAS,EAC1BF,EAAM,SAASE,CAAS,EACxB,KAAK,SAAS,IAAIb,EAAE,QAAQ,WAAW,IAAK,UAAY,CAChDW,EAAA,YAAY,CAACH,EAAMK,CAAS,EAAE,KAAK,GAAG,CAAC,EAAE,SAAS,QAAQ,EAChEH,EAAQ,YAAY,CAAC,SAAUG,CAAS,EAAE,KAAK,GAAG,CAAC,EACnDN,EAAK,QAAU,GACf,WAAW,UAAY,CAAOA,EAAA,SAAS,QAAQ,MAAM,GAAK,CAAC,CAAA,CAC5D,CAAA,KACI,CAED,GADC,KAAA,SAAS,QAAQH,CAAC,EACnBA,EAAE,qBAAsB,OAC5BM,EAAQ,YAAY,QAAQ,EAC5BC,EAAM,SAAS,QAAQ,EACvB,KAAK,QAAU,GACV,KAAA,SAAS,QAAQ,MAAM,CAAA,CAG9B,OAAAC,GAAa,KAAK,MAAM,EAEjB,KAAA,CAGX,EAMI,IAAAI,EAAMhB,EAAE,GAAG,SAEfA,EAAE,GAAG,SAAW,SAAUiB,EAAQ,CACzB,OAAA,KAAK,KAAK,UAAY,CAC3B,IAAIC,EAAQlB,EAAE,IAAI,EACdmB,EAAOD,EAAM,KAAK,UAAU,EAC5Bf,EAAUH,EAAE,OAAO,CAAA,EAAIA,EAAE,GAAG,SAAS,SAAU,OAAOiB,GAAU,UAAYA,CAAM,EAClFG,EAAS,OAAOH,GAAU,SAAWA,EAASd,EAAQ,MACrDgB,GAAMD,EAAM,KAAK,WAAaC,EAAO,IAAIlB,EAAS,KAAME,CAAO,CAAE,EAClE,OAAOc,GAAU,SAAUE,EAAK,GAAGF,CAAM,EACpCG,EAAaD,EAAAC,CAAM,EAAE,EACrBjB,EAAQ,UAAegB,EAAA,MAAA,EAAQ,MAAM,CAAA,CAC/C,CACH,EAEAnB,EAAE,GAAG,SAAS,SAAW,CACvB,SAAU,IACV,MAAO,OACT,EAEAA,EAAE,GAAG,SAAS,YAAcC,EAM5BD,EAAE,GAAG,SAAS,WAAa,UAAY,CACrCA,OAAAA,EAAE,GAAG,SAAWgB,EACT,IACT,EAKAhB,EAAE,QAAQ,EAAE,GAAG,0BAA2B,gCAAiC,SAAUI,EAAG,CACtF,IAAIc,EAAQlB,EAAE,IAAI,EAAGqB,EACjBC,EAAUtB,EAAEkB,EAAM,KAAK,aAAa,IAAMG,EAAOH,EAAM,KAAK,MAAM,IAAMG,EAAK,QAAQ,iBAAkB,EAAE,CAAC,EAC1GlB,EAAUH,EAAE,OAAO,CAAA,EAAIsB,EAAQ,KAAK,EAAGJ,EAAM,KAAA,CAAM,EACnDK,EAEJD,EAAQ,SAASnB,CAAO,GAEpBoB,EAAaL,EAAM,KAAK,eAAe,IACjCI,EAAA,KAAK,UAAU,EAAE,QAAQ,GAAGC,CAAU,EAAE,MAAM,EAGxDnB,EAAE,eAAe,CAAA,CAClB,CAEH,GAAGJ,CAAC"}