{"version":3,"file":"rpmmodules.min.js","sources":["../src/js/Calendar.js","../src/js/AnimateIn.js","../node_modules/@glidejs/glide/dist/glide.esm.js","../src/js/Carousels.js","../src/js/ResponsiveImageMaps.js","../src/js/SomeModule.js"],"sourcesContent":["export const RPMCalendar = (function () {\n\t'use strict';\n\n\tlet weeklyCalendar, calendar;\n\t\n\tfunction init() {\n\t\tweeklyCalendar = document.querySelector('#weekly-calendar');\n\t\tcalendar = document.querySelector('#cal');\n\t\t// console.log('here', weeklyCalendar);\n\t\tif(weeklyCalendar) {\n\t\t\tweekly(); \n\t\t}\n\t\tif(calendar) {\n\t\t\tmonthly(); \n\t\t}\n\t}\n\n\tfunction weekly() {\n\n\t\tvar COMMONUTILS = {\n\t\t\tpageWidth: function() {\n\t\t\t\t\"use strict\";\n\t\t\t\treturn document.documentElement.clientWidth;\n\t\t\t},\n\t\t\tuserLocation: function() {\n\t\t\t\t\"use strict\";\n\t\t\t\tSCHEDULE.initWeekly();\n\t\t\t\tSCHEDULE.Fetch( weeklyCalendar.dataset.events,\n\t\t\t\t\tfunction() {\n\t\t\t\t\t\tSCHEDULE.Weekly(\"#weekly-calendar\");\n\t\t\t\t\t}\n\t\t\t\t);\n\t\t\t}\n\t\t};\n\n\t\tvar SCHEDULE = {\n\t\t\tTimes: null,\n\t\t\tAvail: null,\n\t\t\tSchedule: null,\n\n\t\t\tgetData: function(schedule, targetdiv, href) {\n\n\t\t\t\t$.getJSON(schedule, {\n\t\t\t\t\tformat: \"json\"\n\t\t\t\t}, function(data) {\n\t\t\t\t\tvar dd = new Date();\n\t\t\t\t\tvar dn = dd.getMonth();\n\t\t\t\t\tdn++; // because months are 0 indexed\n\n\t\t\t\t\tfor (di = 0; di <= data.schedule_info.length; di++) { // changed < to <= to compare fill length\n\t\t\t\t\t\tcurrentMonth = Number(data.schedule_info[0].dateID);\n\t\t\t\t\t\tif (currentMonth < dn) {\n\t\t\t\t\t\t\tdata.schedule_info.shift();\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\n\t\t\t\t\t$(\".cal-right\").click(function(e) {\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tvar months = $(\".month\").length - 1;\n\t\t\t\t\t\tvar next = $(\".month:visible\").index();\n\n\t\t\t\t\t\tif ($(\".cal-left\").hasClass(\"inactive\")) {\n\t\t\t\t\t\t\t$(\".cal-left\").removeClass(\"inactive\");\n\t\t\t\t\t\t};\n\t\t\t\t\t\tif ($(\".month:visible\").index() < months) {\n\t\t\t\t\t\t\t$(\".month:visible\").hide();\n\t\t\t\t\t\t\t$(\".month\").eq(next).fadeIn(\"slow\");\n\t\t\t\t\t\t} else if ($(\".month:visible\").index() == months) {\n\t\t\t\t\t\t\t$(this).addClass(\"inactive\");\n\t\t\t\t\t\t\t$(\".month:visible\").hide();\n\t\t\t\t\t\t\t$(\".month\").eq(next).fadeIn(\"slow\");\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\n\t\t\t\t\t$(\".cal-left\").click(function(e) {\n\t\t\t\t\t\te.preventDefault();\n\t\t\t\t\t\tvar months = 1;\n\t\t\t\t\t\tvar next = $(\".month:visible\").index() - 2;\n\t\t\t\t\t\tif ($(\".cal-right\").hasClass(\"inactive\")) {\n\t\t\t\t\t\t\t$(\".cal-right\").removeClass(\"inactive\");\n\t\t\t\t\t\t};\n\t\t\t\t\t\tif ($(\".month:visible\").index() > months) {\n\t\t\t\t\t\t\t$(\".month:visible\").hide();\n\t\t\t\t\t\t\t$(\".month\").eq(next).fadeIn(\"slow\");\n\t\t\t\t\t\t} else if ($(\".month:visible\").index() == months) {\n\t\t\t\t\t\t\t$(this).addClass(\"inactive\");\n\t\t\t\t\t\t\t$(\".month:visible\").hide();\n\t\t\t\t\t\t\t$(\".month\").eq(next).fadeIn(\"slow\");\n\t\t\t\t\t\t}\n\t\t\t\t\t});\n\t\t\t\t});\n\t\t\t},\n\n\t\t\t// Get JSON file, call appropriate parsing function after\n\t\t\tFetch: function(source, callback) {\n\t\t\t\tif(typeof source === 'string') {\n\t\t\t\t\tlet data = JSON.parse(source);\n\t\t\t\t\tSCHEDULE.Times = data.schedule_info;\n\t\t\t\t\tcallback();\n\t\t\t\t} else {\n\t\t\t\t\t$.getJSON(source, function(data) {\n\t\t\t\t\t\t// console.log('here', data);\n\t\t\t\t\t\t// Format dates if Ticketmaster calendar\n\t\t\t\t\t\tSCHEDULE.Times = data.schedule_info;\n\t\t\t\t\t\t// console.log('schedule times set');\n\t\t\t\t\t\tcallback();\n\t\t\t\t\t});\n\t\t\t\t}\n\t\t\t},\n\n\t\t\t// Populates Schedule Menu\n\t\t\tPopulateWeekly: function(container, eventslist) {\n\n\t\t\t\t// console.log('here', eventslist);\n\n\t\t\t\t//Append ticket links to corresponding date div\n\t\t\t\tfor (var i = 0; i < eventslist.length; i++) {\n\t\t\t\t\t//var eventDate = \".\" + eventslist[i].start.slice(-5);\n\t\t\t\t\tlet eventDate = \".\" + eventslist[i].start;\n\t\t\t\t\tlet eventTime = eventslist[i].title;\n\t\t\t\t\tlet isBest = eventslist[i].best ? 'event-time--best' : '';\n\t\t\t\t\tlet eventInfo;\n\n\t\t\t\t\teventTime = eventTime.replace(\":00\", \":00\");\n\n\t\t\t\t\tconsole.log(eventslist[i]);\n\t\t\t\t\t// var eventInfo = \"\" + eventTime + \"\";\n\t\t\t\t\tif( eventslist[i].featured ) {\n\t\t\t\t\t\teventInfo = \"
' + n + '
' + (m + 1) + '/' + d + '
' + dayNumber + \"
' + dayNumber + '
' + dayNumber + \"
' + m + '
' + m + \"
= BEST AVAILABILITY
\n\t\t\t\t\t\t\t\t\t