{"version":3,"file":"app.js","sources":["../src/scripts/renderArrows.js","../src/scripts/renderArrowsNav.js","../src/app.js"],"sourcesContent":["export const renderArrows = (filePath) => {\n $.ajax({\n method: 'GET',\n url: filePath,\n dataType: 'html',\n }).done(function (result) {\n $('.calendar .arrow').html(result);\n }).fail(function (error) {\n console.log(error);\n });\n}","export const renderArrowsNav = (months) => {\n // let months = document.querySelectorAll('.calendar .month');\t\t\n\t\n const tapAction = ( window.ontouchstart === null ) ? 'touchstart' : 'click';\n const handleButton = (e) => {\n // console.log(e);\n e.preventDefault();\n months.forEach((month, idx) => {\n month.classList.remove('active');\n if(month.classList.contains('month--' + e.srcElement.dataset.dir)) {\n month.classList.add('active');\n }\n });\n };\n\n months.forEach((month, idx) => {\n let prevMonth = month.querySelector('.calendar .calendar__arrow--left');\t\n let nextMonth = month.querySelector('.calendar .calendar__arrow--right');\n prevMonth.addEventListener(tapAction, handleButton);\n nextMonth.addEventListener(tapAction, handleButton);\n });\n}","import { renderArrows } from \"./scripts/renderArrows\";\nimport { renderArrowsNav } from \"./scripts/renderArrowsNav\";\n\nwindow.addEventListener('DOMContentLoaded', (ev) => {\n\n\t$ = jQuery.noConflict();\n\n\tlet performances, ticketProvider, csvOptions, calFilters; \n\tlet weeklyNumberDays; //for weekly vars\n\tlet $telecharge_production_name, $best_activation, $limited_activation, $limited_max, $sold_activation, $sold_max;\n\tlet weeklyCalendar, calendar, performanceName, $windowWidth, breakpoint, daysOfTheWeek;\n\tlet formatWeekly, formatMonthly; // For formatting\n\n\tperformances = limelight.performances;\n\tticketProvider = limelight.ticket_provider;\n\tformatWeekly = limelight.data.weekly_date_format;\n\tformatMonthly = limelight.data.monthly_date_format;\n\tweeklyNumberDays = limelight.data.weekly_shown_days ?? 7;\n\n\tcsvOptions = {\n\t\t'production_name': limelight.tc_name\n\t};\n\n\tcalFilters = [\n\t\t[\n\t\t\tlimelight.data.cal_filter_1,\n\t\t\tlimelight.data.cal_filter_1_max, \n\t\t],\n\t\t[\n\t\t\tlimelight.data.cal_filter_2,\n\t\t\tlimelight.data.cal_filter_2_max,\n\t\t],\n\t\tlimelight.data.cal_filter_3_max ? [\n\t\t\tlimelight.data.cal_filter_3,\n\t\t\tlimelight.data.cal_filter_3_max,\n\t\t] : null,\n\t\tlimelight.data.cal_best_filter ? [\n\t\t\t'Best Availability'\n\t\t] : null,\n\t];\n\n\t$telecharge_production_name = limelight.tc_name;\n\t$best_activation = limelight.best; \n\t$limited_activation = limelight.limited;\n\t$limited_max = limelight.limited_max ?? null;\n\t$sold_activation = limelight.sold;\n\t$sold_max = limelight.sold_max ?? null;\n\n\tif(performances && performances.length > 0) {\n\t\trenderCalendar();\n\t}\n\n\tfunction renderCalendar() {\n\n\t\tcalendar = document.querySelector('#cal');\n\t\tperformanceName = $telecharge_production_name;\n\t\tdaysOfTheWeek = [\n\t\t\t'Sunday',\n\t\t\t'Monday',\n\t\t\t'Tuesday',\n\t\t\t'Wednesday',\n\t\t\t'Thursday',\n\t\t\t'Friday',\n\t\t\t'Saturday',\n\t\t];\n\n\t\tif (calendar && performances) {\n\t\t\tif( calendar.classList.contains('calendar__weekly') ) {\n\t\t\t\treturn renderWeekly(ticketProvider);\n\t\t\t} else {\n\t\t\t\treturn renderMonthly(ticketProvider);\n\t\t\t}\n\t\t}\n\t}\n\n\tfunction renderMonthly(provider) {\n\t\t\n\t\trenderArrows(limelight.plugin_path + '/public/svg/arrow.svg');\n\n\t\tvar CALENDAR = {\n\t\t\t// OBJ TO HOLD USERS CURRENT WEBPAGE LOCATION\n\t\t\t// currentPage: window.location.pathname.substring(window.location.pathname.lastIndexOf('/') + 1),\n\t\t\tcurrentPage: window.location.pathname.replace(/\\//g, ''),\n\n\t\t\t// FUNCTION TO EXECUTE CODE BASED ON LOCATION\n\t\t\tuserLocation: function (pagename) {\n\t\t\t\t'use strict';\n\t\t\t\tSCHEDULE.getData(SCHEDULE.sched, '#cal');\n\t\t\t},\n\t\t\t\n\t\t};\n\n\t\t// NAMESPACE FOR SCHEDULE FUNCTIONS\n\t\tvar SCHEDULE = {\n\n\t\t\tTimes: null,\n\t\t\tAvail: null,\n\t\t\tsched: performances,\n\t\t\tSchedule: null,\n\n\t\t\tgetData: function (schedule, targetDiv) {\n\t\t\t\t// console.log(schedule);\n\t\t\t\tvar results = SCHEDULE.schedulePop(schedule); //********\n\t\t\t\t$(targetDiv).append(results); // Adds calendar to div\n\n\t\t\t\t// Renders Arrows\n\t\t\t\tlet months = document.querySelectorAll('.calendar .month');\n\t\t\t\trenderArrowsNav(months);\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\t$.getJSON(source, function (data) {\n\t\t\t\t\t// Format dates if Ticketmaster calendar\n\t\t\t\t\tSCHEDULE.Times = data;\n\t\t\t\t\tcallback();\n\t\t\t\t});\n\t\t\t},\n\n\t\t\t// Populates Schedule Menu\n\t\t\tschedulePop: function (schedule) {\n\t\t\t\tvar today = new Date();\n\t\t\t\tvar performances = schedule;\n\t\t\t\tvar today_month = today.getMonth(); today_month++; // because months are 0 indexed\n\t\t\t\tvar today_year = today.getFullYear();\n\t\t\t\tvar today_date = today.getDate();\n\t\t\t\tlet joinPerformancesByYearMonth = [];\n\t\t\t\t\n\t\t\t\ttoday_month = renderMonthNumber(today_month); // Formats months\n\n\t\t\t\tfor (let di = 0; di < performances.length; di++) {\n\t\t\t\t\tlet performanceYear = performances[di].date.split('-')[0];\n\t\t\t\t\tlet performanceMonth = performances[di].date.split('-')[1];\n\t\t\t\t\tlet performanceMonthYear = performanceYear + '-' + performanceMonth;\n\t\t\t\t\tjoinPerformancesByYearMonth.indexOf(performanceMonthYear) === -1 ? joinPerformancesByYearMonth.push(performanceMonthYear) : null /* console.log(\"This item already exists\") */;\n\t\t\t\t}\n\n\t\t\t\tconst sorter = (a, b) => {\n\t\t\t\t\t// console.log(a);\n\t\t\t\t\treturn new Date(a.date.split('-')[0]).toDateString() - new Date(b.date.split('-')[1]).toDateString();\n\t\t\t\t};\n\t\t\t\tperformances.sort(sorter);\n\n\t\t\t\tconst sorterMonths = (a, b) => {\n\t\t\t\t\treturn new Date(a) - new Date(b);\n\t\t\t\t};\n\t\t\t\tjoinPerformancesByYearMonth.sort(sorterMonths);\n\n\n\t\t\t\tvar months = joinPerformancesByYearMonth.filter(function(date){\n\t\t\t\t\tlet dd = today_month;\n\t\t\t\t\tlet dateCompare = date.replace('-', '');\n\t\t\t\t\tlet dateToday = today_year.toString() + dd.toString();\n\t\t\t\t\tif( dateCompare >= dateToday) {\n\t\t\t\t\t\treturn date;\n\t\t\t\t\t}\n\t\t\t\t});\n\n\t\t\t\tvar schedule_html = '';\n\n\t\t\t\tfor (let i = 0; i < months.length; i++) {\n\t\t\t\t\tlet calendar = '';\n\t\t\t\t\t\n\t\t\t\t\t// IF IT'S THIS MONTH ( DISPLAYS PAST DATES DARK )\n\t\t\t\t\t// This dictates the appropriate month number in the calendar dates when rendered on the frontend.\n\t\t\t\t\tif ( months[i] === (today_year + '-' + today_month.toString()) ) {\n\t\t\t\t\t\t\n\t\t\t\t\t\tlet totalDaysInMonth = new Date(today_year, today_month, 0).getDate();\n\t\t\t\t\t\tfor ( let dayNumber = 1; dayNumber <= Number(totalDaysInMonth); dayNumber++ ) {\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\tif (today_date > dayNumber) { // days before today\n\t\t\t\t\t\t\t\tcalendar +=\n\t\t\t\t\t\t\t\t\t`
\n\t\t\t\t\t\t\t\t\t\t\t${renderCalendarNumber(dayNumber)}\n\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t${renderCalendarNumber(dayNumber)}\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t\t\t\t\t\t${renderCalendarNumber(dayNumber)}\n\t\t\t\t\t\t\t\t\t\t\t
\n\t\t\t\t\t\t\t\t\t\t' + renderCalendarNumber(dayNumber) + '
' + renderCalendarNumber(dayNumber) + '
' + legend[0] + '
Best Availability