\n clearTimeout(timeout);\n\n // Make a new timeout set to go off in 800ms\n timeout = setTimeout(function () {\n\n // hide all date headers that appear above serched items\n let listedVOodHeader = Array.from(document.querySelectorAll('.scheduled--day-line-break') );\n\n listedVOodHeader.forEach(dailyHeader => {\n dailyHeader.classList.add('headerHidden')\n })\n\n // grab all vods\n let listedVODs = Array.from(document.querySelectorAll('.scheduled--vod') );\n // use if you only want to filter current schedule\n\n listedVODs.map(vod => {\n // remove all dayhidden classes\n vod.classList.remove('dayFilterHidden')\n // remove all searchHidden classes from current schedule\n vod.classList.remove('searchHidden');\n // if title does NOT contain search term .. hide div\n if(!vod.querySelector('.scheduled--vod__daily__copy__title').textContent.toLowerCase().includes(searchValue.value.toLowerCase().trim())){\n vod.classList.add('searchHidden');\n totalVodCount ++;\n }else{\n // if title contains search term .. show div\n vod.classList.remove('searchHidden');\n // also show the date header associated with serched vod\n var vodDateOfSearchReturn = vod.dataset.vodDate\n var vodDateOfSearchReturnId = document.getElementById('vod-'+vodDateOfSearchReturn)\n vodDateOfSearchReturnId.classList.remove('headerHidden')\n vodDateOfSearchReturnId.style.display = 'block'\n }\n })\n // Empty search?\n // Is Search term is NOT found in any Vods? Then display empty log warning\n if(totalVodCount == listedVODs.length ){\n // If empty log is NOT showing .. show\n if(emptySearchDiv.classList.contains('hidden')){\n emptySearchDiv.classList.remove('hidden')\n }\n }else{\n emptySearchDiv.classList.add('hidden')\n }\n // Reset count for Search\n totalVodCount = 0;\n loader.classList.add('hidden')\n dynamicContent.classList.remove('hidden')\n }, 1000);\n document.documentElement.scrollTop = 0\n }\n };\n\n // Individual VOD content show/hide\n $('.scheduled--vod').off()\n $('.scheduled--vod').on('click', function(e){\n let vodContainer = $(this)\n let playBtn = vodContainer.find('.scheduled--vod__daily__img__play-btn')\n // VOD has clickable children, if they are the target disable parents onclick.\n // Brand requsts that div doesn't collapse on click\n // If VOD is open/active\n if( $(this).hasClass('active')){\n\n // If link clicked = MORE INFO -> link\n if($(e.target).hasClass(\"scheduled--vod__daily__copy__more-info\") ) {\n e.preventDefault()\n //console.log('Regular A link \\n'+ e.target.href)\n window.location.href = e.target.href\n\n // If link clicked = PLAYBTN link\n }else if($(e.target).hasClass('scheduled--vod__daily__img__play-btn')){\n // brand requsts that div doesn't collapse on click\n e.preventDefault();\n //var windowName = e.target.parentNode.parentElement.id\n window.open(e.target.parentNode.parentElement.href)\n\n // If clicked link = VOD Image / also open in new window\n }else if($(e.target).hasClass('scheduled--vod__daily__img__src') || $(e.target).hasClass('scheduled--vod__daily__img__src__now-showing')){\n // If VOD is available for streaming OR is current playing VOD\n if(e.target.parentNode.parentElement.href){\n e.preventDefault();\n //var windowName = e.target.parentNode.parentElement.id\n window.open(e.target.parentNode.parentElement.href);\n\n // If NOT, collapse the Show/Hide\n }else{\n playBtn.hide()\n vodContainer.removeClass(' active')\n }\n // If clicked link = VOD Title / open in same window\n }else if($(e.target).hasClass('scheduled--vod__daily__copy__title')){\n e.preventDefault();\n // Some BS on titles that Josh doesn't want to click-through\n if($(e.target).hasClass('dead-link')){\n console.table( $(this) )\n\n }else{\n let urlForTitle = $(this).find('.scheduled--vod__daily__copy__more-info').attr('href');\n //console.log('title \\n'+ urlForTitle)\n window.location.href = urlForTitle\n }\n }else{\n playBtn.hide()\n vodContainer.removeClass(' active')\n }\n // Close / Hide div\n }else{\n vodContainer.addClass('active')\n playBtn.show();\n }\n });\n\n // Scroll - content scroll on page load - to display 'now showing' vod in window frame\n function currentVodScroll(){\n // there are 2 currently playing vods on page 1US and 1 Canadian eh?\n let currentPlayingVODArray = Array.from(document.querySelectorAll(\".scheduled--vod.active\"))\n\n // grab the one thats doesn't contain class scheduleHidden\n let currentPlayingVOD = currentPlayingVODArray.find(vod => {\n if(!vod.className.includes('scheduleHidden')){\n return vod;\n }\n })\n currentPlayingVOD = currentPlayingVOD.getBoundingClientRect();\n\n let scrollToPoint;\n if (window.innerWidth >= 1000 || (window.innerWidth > 550 && window.innerWidth < 1000 && window.matchMedia(\"(orientation: portrait)\").matches)) {\n scrollToPoint = (currentPlayingVOD.top - (mainNav.offsetHeight + headerblock.offsetHeight + scheduleNav.offsetHeight) ) + (window.pageYOffset - 100);\n } else {\n scrollToPoint = (currentPlayingVOD.top - mainNav.offsetHeight) + (window.pageYOffset - 100);\n }\n\n // Validates is smooth scrolling works in browser\n if('scrollBehavior' in document.documentElement.style){\n window.scrollTo({\n top: scrollToPoint,\n behavior: 'smooth'\n });\n }else{\n window.scrollTo(0, scrollToPoint)\n }\n\n\n /* Validates is smooth scrolling works in browser\n if('scrollBehavior' in document.documentElement.style){\n window.scrollTo({\n top: scrollToPoint,\n behavior: 'smooth'\n });\n }else{\n window.scrollTo(0, scrollToPoint)\n } */\n }\n loader.classList.add('hidden')\n dynamicContent.classList.remove('hidden')\n }, 1000);\n\n searchIsActive = false;\n ajaxCall++\n },\n error: function (error) {\n console.log(`API connection error: ${apiURL}/tcmws/NewSchedule/${timeZoneCookieValue}\\n + error`);\n }\n });\n\n // change inner html of schedule BTN based on var scheduleClassName & timeZone\n function timeZoneScheduleBtnChg(){\n let timez, sched;\n sched = scheduleClassName == 'ca-schedule' ? 'ca' : 'us'\n switch(timeZone) {\n case 'ct':\n timez = 'central'\n document.cookie = \"timeZoneSetting=ct\";\n timeZoneCookieValue = \"cst\"\n break;\n case 'mt':\n timez = 'mountain'\n document.cookie = \"timeZoneSetting=mt\";\n timeZoneCookieValue = \"mst\"\n break;\n case 'pt':\n timez = 'pacific'\n document.cookie = \"timeZoneSetting=pt\";\n timeZoneCookieValue = \"pst\"\n break;\n default:\n timez = 'eastern'\n document.cookie = \"timeZoneSetting=et\";\n timeZoneCookieValue = \"est\"\n }\n return sched +'/'+ timez\n }\n }\n\n // fire this call on first page load only\n if( count <= 1){\n //console.log('Initial Page Refresh() ------- ')\n refreshPage(scheduleClassName , timeZone)\n }\n\n // X-out of Search\n clearSearchBtn.addEventListener('click', function(){\n emptySearchDiv.classList.add('hidden')\n searchIsActive = false;\n ajaxCall = 0; // reset like it's the first call\n scheduleNav.classList.remove('hidden')\n console.log('Clear button Page Refresh() ------- ')\n refreshPage(scheduleClassName , timeZone)\n })\n\n // Listen for click events on Dom\n window.addEventListener('click', function(){\n //if clicked into searchbox\n if (document.activeElement == searchValue) {\n cancelSearchBtn.classList.remove('hidden');\n } else {\n cancelSearchBtn.classList.add('hidden');\n }\n })\n }\n }\n }\n }\n}\n","import { createItemListSchema } from './Schema';\n\nexport default class ScheduleMonthly {\n\n static initialize(UrlPathname, apiURL) {\n // only activate if on monthly schedule page.\n if(UrlPathname == '/schedule-monthly'){\n\n document.addEventListener('DOMContentLoaded', loadMonthlyScheduleFunctionality, false);\n\n function loadMonthlyScheduleFunctionality(){ \n let scheduleClassName = 'us-schedule'\n //let scheduleDisplayName = 'U.S.'\n //let timezoneeDisplayName = 'EASTERN'\n let timeZone = 'et';\n let jsDate = new Date()\n let currentTimeStamp;\n let timeZoneMoment;\n let timeZoneOffset;\n //let scheduleDateClicked = 'today'; // not used?\n let searchIsActive = false\n let dateToDisplay = moment().format('MM') +'-'+moment().format('DD') ;\n let searchValue = document.getElementById('searchBox')\n let cancelSearchBtn = searchValue.nextElementSibling\n let timeZoneScheduleBtn = $('.timezone-btn')\n let timezoneList = timeZoneScheduleBtn.siblings('.timezone-overlay-content')\n let loader = document.querySelector('.loader')\n let dynamicContent = document.querySelector('.schedule__monthly__container')\n let clearSearchBtn = document.querySelector('.schedule__header--search__clear')\n let mainNav = document.querySelector(\".watch__header\");\n let emptySearchDiv = document.querySelector('.scheduled--vod--search-return-empty')\n let totalVodCount = 0;\n let count = 0;\n let ajaxCall = 0;\n let scheduleContainerMaster = $('#schedule')\n const itemListSchema = [];\n\n mainNav.classList.add(\"monthly__schedule\")\n\n function closeTimeZoneModal(){\n timeZoneScheduleBtn.removeClass('active');\n timezoneList.removeClass('active')\n $('body').css('overflow-y','scroll')\n }\n\n function resetTimeZoneOverlayMobile(currentScheduleClassName, currentTimeZone){\n //resets schedule back to current applied state\n $('.schedule').removeClass('active');\n $('.schedule').each(function(){\n if( $(this).data('schedule') == currentScheduleClassName){\n $(this).addClass('active');\n }\n })\n\n //resets timezone back to current applied state\n $('.timezone').removeClass('active');\n $('.timezone').each(function(){\n if( $(this).data('timezone') == currentTimeZone){\n $(this).addClass('active');\n }\n })\n }\n\n function refreshPage(scheduleClassName, timeZone){\n // variables with current applied state\n let currentScheduleClassName = scheduleClassName;\n let currentTimeZone = timeZone;\n\n\n // Timezone/Country Cookie Check ==================\n let tcmCookiesArray = document.cookie.split(';')\n let timeZoneCookieValue = null;\n let countryCodeCookieValue = null;\n tcmCookiesArray.forEach( (cookie, count) => {\n // IF Timezone Cookie Found\n if(cookie.trim().startsWith('timeZoneSetting=')){ \n timeZoneCookieValue = cookie.split('=').pop().trim()\n timeZone = timeZoneCookieValue; \n // Styles TZ and Region dropdown.\n $('.timezone').each(function( count ){\n if( $(this).data( \"timezone\" ) == timeZoneCookieValue ){\n $(this).addClass('active')\n }else{\n $(this).removeClass('active')\n }\n }); \n\n if(timeZoneCookieValue == 'et'){ \n timeZoneMoment = 'America/New_York' \n currentTimeStamp = moment(jsDate).tz(timeZoneMoment)\n currentTimeStamp = moment().tz(timeZoneMoment).add(1, 'h')\n timeZoneOffset = 0 \n }else if(timeZoneCookieValue == 'ct'){ \n timeZoneMoment = 'America/Chicago' \n currentTimeStamp = moment(jsDate).tz(timeZoneMoment)\n currentTimeStamp = moment().add(1, 'hours');\n timeZoneOffset = 1\n \n }else if(timeZoneCookieValue == 'mt'){ \n timeZoneMoment = 'America/Denver'\n currentTimeStamp = moment(jsDate).tz(timeZoneMoment)\n currentTimeStamp = moment().tz(timeZoneMoment).add(1, 'h')\n currentTimeStamp = moment().add(2, 'hours');\n timeZoneOffset = 2\n }else if(timeZoneCookieValue == 'pt'){ \n timeZoneMoment = 'America/Los_Angeles'\n currentTimeStamp = moment(jsDate).tz(timeZoneMoment)\n currentTimeStamp = moment().tz(timeZoneMoment).add(1, 'h')\n timeZoneOffset = 3\n }\n }else{ // Empty Timezone -- Set Cookie as it's not there \n if(count == tcmCookiesArray.length -1 && !timeZoneCookieValue) {\n document.cookie = \"timeZoneSetting=est\";\n timeZoneCookieValue = \"est\"\n timeZone = timeZoneCookieValue; \n timeZoneMoment = 'America/New_York' \n currentTimeStamp = moment(jsDate).tz(timeZoneMoment)\n currentTimeStamp = moment().tz(timeZoneMoment).add(1, 'h')\n timeZoneOffset = 0 \n }\n }\n // Country Code Cookie found\n if(cookie.trim().startsWith('countryCodeSetting=')){\n // Country Cookie Found\n countryCodeCookieValue = cookie.split('=').pop().trim()\n scheduleClassName = countryCodeCookieValue; \n //alert('Country cookie found '+ scheduleClassName +' '+countryCodeCookieValue )\n $('.schedule').each(function( count ){\n if( $(this).data( \"schedule\" ) == scheduleClassName){\n $(this).addClass('active')\n }else{\n $(this).removeClass('active')\n }\n }); \n }else{ // Country Code Cookie NOT found -- Set Cookie\n if(count == tcmCookiesArray.length -1 && !countryCodeCookieValue) {\n document.cookie = \"countryCodeSetting=us-schedule\"; \n countryCodeCookieValue = 'us-schedule'\n scheduleClassName = 'us-schedule' \n }\n } // Searched all of Cookie - Update HTML Drop Box\n if(count == tcmCookiesArray.length -1){\n timeZoneScheduleBtn.find('span').text( timeZoneScheduleBtnChg() )\n }\n })\n\n\n\n\n // grab all schedule data\n loader.classList.remove('hidden')\n dynamicContent.classList.add('hidden')\n searchValue.value = '';\n $.ajax({\n url: apiURL+\"/tcmws/MonthSchedule\",\n type: \"GET\",\n headers: {\n \"accept\": \"application/json;odata=verbose\"\n },\n success: function (data) {\n console.log('API connection success:'+apiURL+'/tcmws/MonthSchedule\\nPage schedule-monthly.js');\n let navElementsArray = [];\n // let currentTimeStamp = moment().toISOString(); // ORIGIONAL DON'T TOUCH \n let isCurrentVod = false;\n let isToday = false;\n let hasDateChanged = false;\n let dailyNavContainer = $(\"#pnProductNavContents\")\n dailyNavContainer.empty()\n scheduleContainerMaster.empty()\n\n $.each(data, function (index, item) {\n // garbage content check .. if there' no name .. fkit\n if(item.Name !== null){\n // format startdate and reassign\n item.StartDate = moment(item.StartDate).subtract(timeZoneOffset, 'hours')\n let fullDateYear = moment(item.StartDate).format('MM') +'-'+moment(item.StartDate).format('DD')\n let dayofWeek = moment(item.StartDate).format('dddd').substring(0, 3);\n let monthString = moment(item.StartDate).format('MMMM');\n let monthInt = moment(item.StartDate).format('MM');\n let dayNo = moment(item.StartDate).format('DD');\n let startTime = moment(item.StartDate).format('h:mm');\n let ampm = moment(item.StartDate).format('a');\n let country = item.NetworkFeedCode;\n item.Length = item.Length ? (item.Length > 59 ? ( Math.floor( item.Length / 60) + 'h ' + (item.Length % 60 == 0 ? '': item.Length % 60 + 'm ') ) : item.Length + 'm' ) : '';\n\n hasDateChanged = index == 0 ? true :\n !(moment(data[index -1].StartDate).format('DD') == moment(data[index].StartDate).format('DD'))\n\n // Used for Front-end Runtime | Genre | Rating\n let firstSlash = (item.Length && item.tvGenres) ? ' | ' : ''\n let secondSlash = ( (item.tvGenres && item.tvRating) || (item.Length && item.tvRating)) ? ' | ' : ''\n\n isToday = fullDateYear == dateToDisplay ? true : false;\n\n if (isToday && item.NetworkFeedCode === 'N') {\n itemListSchema.push(item)\n }\n\n let url = '/tcmdb/title/'+ item.TitleId + '/' + item.Name.split(' ').join('-')+ '/';\n if(item.status == \"yes\"){\n url = '/tcmdb/title/'+ item.TitleId + '/' + item.Name.split(' ').join('-')+ '/';\n var month_info_class = \"month-info-class-\"+item.status;\n var itemClose = \"\"\n var itemOpen = ``\n }\n else{\n url = '';\n var month_info_class = \"month-info-class-\"+item.status;\n var itemOpen = ``\n var itemClose = \"
\";\n }\n\n // Image - if no image\n if(!item.profileImage){\n // Image - If no image and vod is a short\n if(item.isShort){\n item.profileImage = 'https://prod-images.tcm.com/img/schedule-page/placeholder-short-film.jpg??h=470&w=273'\n }else{\n item.profileImage = 'https://prod-images.tcm.com/img/schedule-page/placeholder-vod-film.jpg?w=273'\n }\n }\n\n // item.profileImage = (item.isShort || item.profileImage == 'https://prod-images.tcm.com/v5cache/TCM/Images/placeholder_shortfilm_678x381.png') ? 'https://prod-images.tcm.com/img/schedule-page/placeholder-short-film.jpg?w=900' : item.profileImage\n\n // find currently playing vod .. will result in 2, one CAN one US\n if(currentTimeStamp >= moment(item.StartDate).toISOString() && currentTimeStamp <= moment(item.EndDate).toISOString()){\n isCurrentVod = true;\n }\n // Navigation: Iterate through all content, grab and create date ranges, give active state to today's\n // Create array, Remove for duplicate dates then create Nav\n let isDateAlreadyInNav = navElementsArray.find(date => date == (monthInt+'-'+dayNo) );\n if(!isDateAlreadyInNav){\n navElementsArray.push( monthInt+'-'+dayNo);\n }\n\n // Escape quotes in Cast listing\n item.Cast = item.Cast ? item.Cast.replace(/,/g , ', ') : 'No Cast Information Available.' ;\n item.Cast = item.Cast.length > 50 ?item.Cast.substring(0,50) + '...' : item.Cast\n\n // Create the header then grab the header\n // scheduleContainerMaster.append(`${hasDateChanged ? `` : '' }`)\n let currentDayDiv = $(`#header-${dayNo}`)\n // Append all VOD's to the header that has the current date.\n scheduleContainerMaster.append(`\n ${!isDateAlreadyInNav ? `${dayofWeek}, ${monthString} ${dayNo.charAt(0) == '0' ? dayNo.charAt(1) : dayNo}
` : ''}\n \n
\n
${startTime}
\n
${ampm}
\n ${isCurrentVod ? '
On Now
': '' }\n
\n ${itemOpen}\n
\n

\n
\n
\n
${item.Name} (${item.ReleaseYear})
\n
${item.Length ? item.Length : ''} ${firstSlash} ${item.tvGenres ? item.tvGenres : ''} ${secondSlash} ${item.tvRating ? item.tvRating : ''}
\n
${ item.Storyline ? (item.Storyline.length < 90) ? item.Storyline : item.Storyline.substring(0,90)+'...' : 'No Description available' }
\n
\n \n
${item.Director ? (item.Director.length > 30 ?item.Director.substring(0,30) + '...' : item.Director) : 'No Director Available' }
\n
\n
\n
\n\n ${itemClose}\n
`)\n isCurrentVod = false;\n } // end garbage content check .. if there' no name\n }); // end each loop\n createItemListSchema(itemListSchema);\n },\n error: function (error) {\n console.log('API connection error:'+apiURL+'/tcmws/MonthSchedule\\nPage schedule-monthly.js \\n' + error);\n }\n });\n\n\n\n // change inner html of schedule btn based on var scheduleClassName & timeZone\n function timeZoneScheduleBtnChg(){\n let timez, sched;\n sched = scheduleClassName == 'ca-schedule' ? 'ca' : 'us'\n switch(timeZone) {\n case 'ct':\n timez = 'central'\n document.cookie = \"timeZoneSetting=ct\";\n timeZoneCookieValue = \"cst\" \n break;\n case 'mt':\n timez = 'mountain'\n document.cookie = \"timeZoneSetting=mt\";\n timeZoneCookieValue = \"mst\"\n break;\n case 'pt':\n timez = 'pacific'\n document.cookie = \"timeZoneSetting=pt\";\n timeZoneCookieValue = \"pst\"\n break;\n default:\n timez = 'eastern'\n document.cookie = \"timeZoneSetting=et\";\n timeZoneCookieValue = \"est\"\n }\n return sched +'/'+ timez\n } \n\n // ajaxStop is firing mulitiple times unsure why, correcting by using loop\n if(ajaxCall <= 1){\n $(document).ajaxStop(function() {\n let timeout = null;\n\n // timezone and us/canadian click - schedule modification\n // remove previous eventlistner\n timeZoneScheduleBtn.off()\n timeZoneScheduleBtn.on('click', function(event){\n event.stopPropagation();\n // toggle class on timezone btn and flyout menu\n $(this).toggleClass('active');\n timezoneList.toggleClass('active')\n if( $(this).hasClass('active') ){\n $('body').css('overflow-y','hidden')\n }else{\n $('body').css('overflow-y','scroll')\n }\n })\n\n // Close Timezone and us/canadian flyout on window click\n if(window.innerWidth >= 1024){\n $(window).click(function() {\n timeZoneScheduleBtn.removeClass('active');\n timezoneList.removeClass('active')\n $('body').css('overflow-y','scroll')\n });\n }\n\n $('.timezone-overlay-content #close-modal').click(function() {\n resetTimeZoneOverlayMobile(currentScheduleClassName, currentTimeZone);\n closeTimeZoneModal();\n });\n\n $('.timezone-overlay-content #cancel-button').click(function() {\n resetTimeZoneOverlayMobile(currentScheduleClassName, currentTimeZone);\n closeTimeZoneModal();\n });\n\n $('.timezone-overlay-content #apply-button').click(function() {\n closeTimeZoneModal();\n document.cookie = \"timeZoneSetting=\"+timeZone;\n refreshPage(scheduleClassName , timeZone);\n timeZoneScheduleBtn.find('span').text(timeZoneScheduleBtnChg());\n });\n\n // add eventlistner to each flyout nav element\n // remove previous eventlistner\n timezoneList.off()\n timezoneList.children('.timezone-content').children('li').each( function(){\n $(this).off()\n $(this).on('click', function(){\n //console.log('click')\n // identify if schedule portion or timezone was clicked\n let whatChanged = $(this).data('schedule') ? 'schedule' : 'timezone';\n\n // handle Schedule clicks / changes\n if(whatChanged == 'schedule'){\n count ++\n // change style on btn dropdown\n $('.schedule').toggleClass('active')\n scheduleClassName = $(this).data('schedule');\n // Toggle VOD's on page based on Schedule selection\n $('.scheduled--vod ').each(function(){\n // search is active\n if(searchIsActive){\n // remove day filter class\n //$(this).removeClass('dayFilterHidden')\n // current vod is in current schedule\n if( $(this).hasClass(scheduleClassName) && !$(this).hasClass('searchHidden') ) {\n $(this).removeClass('scheduleHidden')\n }else{\n $(this).addClass('scheduleHidden')\n }\n }else{\n // if not in search view // in current schedule if date = today\n if( $(this).hasClass(scheduleClassName) ) {\n $(this).removeClass('scheduleHidden')\n // $(this).removeClass('dayFilterHidden')\n }else{\n $(this).addClass('scheduleHidden')\n // $(this).removeClass('dayFilterHidden')\n }\n }\n });\n // if(count <=1){\n // console.log('timezone Page Refresh() ----')\n // refreshPage( scheduleClassName , timeZone)\n // timeZoneScheduleBtn.find('span').text(timeZoneScheduleBtnChg())\n // }\n timeZoneScheduleBtn.find('span').text(timeZoneScheduleBtnChg())\n document.cookie = \"countryCodeSetting=\"+scheduleClassName;\n }\n // handle Timezone clicks / changes\n else{\n // Style change active states after click\n timeZone = $(this).data('timezone');\n $('.timezone').removeClass('active');\n $('.timezone').each(function(){\n if( $(this).data('timezone') == timeZone){\n $(this).addClass('active');\n }\n })\n // Refresh window and load new data\n if(window.innerWidth >= 1024){\n $('#schedule').empty()\n loader.classList.remove('hidden')\n console.log('timezone Page Refresh() ----')\n document.cookie = \"timeZoneSetting=\"+timeZone;\n refreshPage( scheduleClassName , timeZone)\n timeZoneScheduleBtn.find('span').text(timeZoneScheduleBtnChg())\n }\n }\n })\n })\n\n // Listen for keystroke events\n searchValue.onkeyup = function (e) {\n if(searchValue.value.trim() != ''){\n emptySearchDiv.classList.add('hidden')\n searchIsActive = true\n loader.classList.remove('hidden')\n dynamicContent.classList.add('hidden')\n // prevent retun key from refrehing page.\n e.preventDefault();\n // hide the daily navigation bar when search is activated.\n\n // Clear the timeout if it has already been set.\n // This will prevent the previous task from executing\n // if it has been less than \n clearTimeout(timeout);\n\n // Make a new timeout set to go off in 800ms\n timeout = setTimeout(function () {\n\n // hide all date headers that appear above serched items\n let listedVOodHeader = Array.from(document.querySelectorAll('.scheduled--day-line-break') );\n listedVOodHeader.forEach(header => {\n header.classList.add('headerHidden')\n })\n\n // grab all vods\n let listedVODs = Array.from(document.querySelectorAll('.scheduled--vod') );// use if you only want to filter current schedule\n //let listedVODs = Array.from(document.querySelectorAll('.scheduled--vod') );\n\n listedVODs.map(vod => {\n // remove all dayhidden classes\n vod.classList.remove('dayFilterHidden')\n // remove all searchHidden classes from current schedule\n vod.classList.remove('searchHidden');\n // if title does NOT contain search term .. hide div\n if(!vod.querySelector('.scheduled--vod__monthly__copy__title').textContent.toLowerCase().includes(searchValue.value.toLowerCase().trim())){\n vod.classList.add('searchHidden');\n totalVodCount ++\n }else{\n //console.log('value '+ searchValue.value +\"\\n\"+vod.querySelector('.scheduled--vod__copy__title').textContent)\n // if title contains search term .. show div\n vod.classList.remove('searchHidden');\n // also show the date header associated with serched vod\n var vodDateOfSearchReturn = vod.dataset.vodDate\n var vodDateOfSearchReturnId = document.getElementById('vod-'+vodDateOfSearchReturn)\n vodDateOfSearchReturnId.classList.remove('headerHidden')\n }\n })\n // Empty search?\n // Is Search term is NOT found in any Vods? Then display empty log warning\n if(totalVodCount == listedVODs.length ){\n // If empty log is NOT showing .. show\n if(emptySearchDiv.classList.contains('hidden')){\n emptySearchDiv.classList.remove('hidden')\n }\n }else{\n emptySearchDiv.classList.add('hidden')\n }\n // Reset count for Search\n totalVodCount = 0;\n\n loader.classList.add('hidden')\n dynamicContent.classList.remove('hidden')\n }, 1000);\n\n /* working working working don't touch\n timeout = setTimeout(function () {\n console.log('Input Value:', searchValue.value) + '\\ntypof '+ typeof searchValue.value;\n let listedVODs = Array.from(document.querySelectorAll('.scheduled--vod:not(.hidden) .scheduled--vod__copy__title') );\n\n let searchMatchForTitles = listedVODs\n .map(vodName => vodName.textContent.toLowerCase() )\n .filter(vodName => vodName.toLowerCase().includes(searchValue.value))\n console.log( searchMatchForTitles)\n\n }, 1000); */\n }\n };\n\n loader.classList.add('hidden')\n dynamicContent.classList.remove('hidden')\n });\n searchIsActive = false;\n ajaxCall++\n }\n }\n\n // fire this call on first page load only\n if( count <= 1){\n refreshPage(scheduleClassName , timeZone) \n }\n \n // X-out of Search\n clearSearchBtn.addEventListener('click', function(){\n emptySearchDiv.classList.add('hidden')\n searchIsActive = false;\n refreshPage(scheduleClassName , timeZone)\n })\n\n // Listen for click events on Dom\n window.addEventListener('click', function(){\n //if clicked into searchbox\n if (document.activeElement == searchValue) {\n cancelSearchBtn.classList.remove('hidden')\n } else {\n cancelSearchBtn.classList.add('hidden');\n }\n })\n }\n }\n }\n}\n","/**\n * TODO - Leaving this file in here because compiuled js file needs it (just broken things)\n */\nexport default class VideoPlayer {\n static initialize(UrlPathname, apiURL) {}\n\n} \n","import { createItemListSchema } from './Schema';\nexport default class TrendingPage {\n\n static initialize(UrlPathname, apiURL) {\n\n if(UrlPathname == '/trending' ){\n\n $.ajax({\n url: `${apiURL}/tcmws/trending`,\n type: \"GET\",\n success: function(data) {\n createItemListSchema(data, 'mixed');\n $(document).ready(function() {\n $.each(data, function(index, item) {\n if (item.itemStatus.toLocaleLowerCase() === 'published') {\n if(item.contentType == 'article'){\n console.log(item.titleConsumer)\n $('.tcm-trending').append(`\n \n `)\n }else{\n $(\".tcm-trending\").append(`\n \n `);\n }\n }\n })\n });\n },\n error: function(error) {\n console.log('error on page--watchtcm--titles.html.twig Flow Call\\n' + error);\n }\n });\n }\n }\n}\n","export default class sideNav {\n\n static initialize(UrlPathname, apiURL) {\n\n if (UrlPathname === '/hosts' || UrlPathname === '/host' || UrlPathname ===\n '/this-month' || UrlPathname === '/archives') {\n\n // ---------- Create Embedded Articles witnin this-month section\n // --------------// When side nav elements are clicked on /this-month:\n // Either empty the page and rebuild using api data Or link out to a\n // sepearte page\n window.openIn = function(linkType, linkUrl, contentId, contentType, landerText, source = 'nav') {\n if (landerText === '') {\n if (source.indexOf('HTM') >-1 ) {\n landerText = 'Happening This Month';\n } else {\n landerText = 'This Month';\n }\n }\n localStorage.setItem(source, decodeURIComponent(landerText));\n\n // Empty the page and rebuild using api data\n // Example of api return values\n // https://qa-tcmws.tcm.com/tcmws/contentApi/articleById/020635\n if (linkType === 'Content') {\n document.location.href = `/this-month/article/${contentId}?source=${source}`;\n }\n // not sure if this is used anymore.\n else if (linkType === 'Lander') {\n document.location.href = linkUrl;\n }\n\n // Update - Increment Trending Table for the current ContentId\n $.ajax({\n method: 'GET',\n url: `${apiURL}/tcmws/trending/article/${contentId}`,\n }, function(err, res, body) {\n if (err) {\n console.log('Failure Incrementing Trending');\n console.table(err);\n }\n else {\n console.log('Success Incrementing Trending ' + res);\n console.table(res);\n }\n });\n };\n }\n }\n}\n\n\n\n\n\n\n","\nexport default class hosts {\n\n static initialize(UrlPathname, apiURL) {\n\n // const throttle = (func, limit) => {\n // let inThrottle\n // return function () {\n // const args = arguments\n // const context = this\n // if (!inThrottle) {\n // func.apply(context, args)\n // inThrottle = true\n // setTimeout(() => inThrottle = false, limit)\n // }\n // }\n // }\n\n // Sticky Nav -- When the user scrolls the page run function\n if(UrlPathname == '/hosts'){\n\n $(document).ready(function() {\n\n // Admin preview page\n if (window.location.href.indexOf(\"?preview=true\") > -1) {\n //?previewHome=true&2020-06-10T00:00:00\n var dateTime = window.location.href.split(\"preview=true&\")[1];\n //$(\".content-body\").empty();\n //$(\".tcm-intro__header\").empty();\n\n $.ajax({\n url: apiURL+\"tcmws/hosts/categories/all\",\n type: \"GET\",\n cache: false,\n headers: {\n \"accept\": \"application/json;odata=verbose\",\n },\n success: function(data) {\n alert('preview')\n },\n error: function(error) {\n console.log('error connecting to ' +apiURL+\"/tcmws/thisMonth/\"+dateTime +'\\n'+ error );\n }\n });\n }\n // Customer Facing Non-Admin page // qa.tcm.com/this-month?icid=mainnav8-tcm-in-july\n else{\n $.ajax({\n url: apiURL+\"/tcmws/hosts/categories/all\",\n type: \"GET\",\n cache: false,\n headers: {\n \"accept\": \"application/json;odata=verbose\",\n },\n success: function(data) {\n // Add Host Lanes on page .. Primetime Hosts ... Noir Alley Hosts\n $.each(data, function(index, item) {\n var hostTypeId = item.title.replace(/ /g, \"-\");\n $(\".content-body\").append(`\n \n
${item.title}
\n
\n \n `)\n // Add Individual Hosts ---\n // Poor man's async\n if(index == (data.length -1)){\n $.ajax({\n url: apiURL+\"/tcmws/hosts/all\",\n type: \"GET\",\n cache: false,\n headers: {\n \"accept\": \"application/json;odata=verbose\",\n },\n success: function(data) {\n console.log('fired')\n $.each(data, function(index, item) {\n var hostTypeId = item.hostType.replace(/ /g, \"-\");\n console.log(hostTypeId)\n console.log(item.name)\n $(`#${hostTypeId}`).append(`\n \n
\n ${item.name}
\n \n `)\n })\n },\n error: function(error) {\n console.log('Error ' + apiURL+\"/tcmws/hosts/categories/all\\n\" + error);\n }\n });\n }\n })\n },\n error: function(error) {\n console.log('Error ' + apiURL+\"/tcmws/hosts/categories/all\\n\" + error);\n }\n });\n }\n });\n\n // function fillInArticles(articleData){\n // $.each(articleData, function(index, item) {\n // var articles = item.articles;\n // $.each(articles, function(index, item) {\n // var contentType = item.type.replace(/\\s/g, '');\n // if((item.headerImg == null) || (item.headerImg == \"\")){\n // var headerImg = \"https://prod-images.tcm.com/img/global/tcm-clip-no-image.png\";\n // }\n // else{\n // var headerImg = item.headerImg;\n // }\n // $(`#${contentType}Lane`).append(`\n // \n // \n //

\n //
${item.consumerTitle}
\n //
\n // \n // `)\n // })\n // })\n // }\n\n // highlight hosts sidenav .. until you refactor sidenav film.detail.js\n setTimeout( function(){\n $('.film-detail__sidebar__list__item').removeClass('active');\n $('[data-settings-section=\"hosts\"]').addClass('active');\n }, 900);\n }\n }\n}\n","import { appendSchema, createArticleSchema } from './Schema';\nexport default class thisMonth {\n\n static initialize(UrlPathname, apiURL) {\n\n // Sticky Nav -- When the user scrolls the page run function\n if(UrlPathname == '/this-month'){\n // Set dev/prod variables based off url:\n let envVars = window.location.hostname;\n let s3Pool, s3Bucket, akamaiPre\n switch (envVars) {\n case 'dev.tcm.com':\n s3Pool = \"us-east-1:815c496b-b17c-4d68-87ae-25af39af7d0c\"\n s3Bucket = \"tcm-qa-www\"\n akamaiPre = \"https://qa-images.tcm.com/\"\n break;\n case 'dev-admin.tcm.com':\n s3Pool = \"us-east-1:815c496b-b17c-4d68-87ae-25af39af7d0c\"\n s3Bucket = \"tcm-qa-www\"\n akamaiPre = \"https://qa-images.tcm.com/\"\n break;\n case 'qa.tcm.com':\n s3Pool = \"us-east-1:815c496b-b17c-4d68-87ae-25af39af7d0c\"\n s3Bucket = \"tcm-qa-www\"\n akamaiPre = \"https://qa-images.tcm.com/\"\n break;\n case 'qa-admin.tcm.com':\n s3Pool = \"us-east-1:815c496b-b17c-4d68-87ae-25af39af7d0c\"\n s3Bucket = \"tcm-qa-www\"\n akamaiPre = \"https://qa-images.tcm.com/\"\n break;\n case 'staging.tcm.com':\n s3Pool = \"us-east-1:815c496b-b17c-4d68-87ae-25af39af7d0c\"\n s3Bucket = \"tcm-stage-www\"\n akamaiPre = \"https://staging-images.tcm.com/\"\n break;\n case 'staging-admin.tcm.com':\n s3Pool = \"us-east-1:815c496b-b17c-4d68-87ae-25af39af7d0c\"\n s3Bucket = \"tcm-stage-www\"\n akamaiPre = \"https://staging-images.tcm.com/\"\n break;\n case \"prod.tcm.com\":\n s3Pool = \"us-east-1:30cf1fd4-ac22-4a68-b1e5-05d5f33a12a5\"\n s3Bucket = \"tcm-prod-www\"\n akamaiPre = \"https://prod-images.tcm.com/\"\n break;\n case \"prod-admin.tcm.com\":\n s3Pool = \"us-east-1:30cf1fd4-ac22-4a68-b1e5-05d5f33a12a5\"\n s3Bucket = \"tcm-prod-www\"\n akamaiPre = \"https://prod-images.tcm.com/\"\n break;\n case \"www.tcm.com\":\n s3Pool = \"us-east-1:30cf1fd4-ac22-4a68-b1e5-05d5f33a12a5\"\n s3Bucket = \"tcm-prod-www\"\n akamaiPre = \"https://prod-images.tcm.com/\"\n break;\n default:\n s3Pool = \"us-east-1:815c496b-b17c-4d68-87ae-25af39af7d0c\"\n s3Bucket = \"tcm-develop-www\"\n akamaiPre = \"http://dev-images.tcm.com/\"\n }\n\n $(document).ready(function() {\n // Admin Preview-Page for /this-month -------------------------------\n if (window.location.href.indexOf(\"?preview=true\") > -1) {\n //$(\".tcm-share-hanger\").hide();\n var dateTime = window.location.href.split(\"preview=true&\")[1];\n $.ajax({\n url: apiURL+\"/tcmws/thisMonth/\"+dateTime,\n type: \"GET\",\n cache: false,\n headers: {\n \"accept\": \"application/json;odata=verbose\",\n },\n success: function(data) {\n var heroCount = 0\n // Hero-Banner at Top of Page -----------------\n $.each(data.tcm.thisMonthHeroes, function(index, item) {\n if(heroCount < 1){ // not sure why we loop here\n var landerText = item.landerText || '';\n var url = item.linkUrl;\n var linkType = item.linkType;\n let anchorLinks = ''\n let newWindow = item.newWindow == \"YES\"? true : false;\n\n if(linkType == \"External\"){\n $(\"#thisMonthHeader\").append(`\n \n `)\n }else if(linkType == \"Content\"){ // if Content or Lander\n let isVideo = url.includes('/video/')\n if(isVideo){ // if video .. use a regular href\n anchorLinks = ``\n }else{ // use the onClick()\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = url.split('/');\n // Escape quotes used in lander text\n // // landerText = landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n anchorLinks = ``\n\n }\n $(\"#thisMonthHeader\").append(`\n \n `)\n }else if(linkType == \"Lander\"){\n // Escape quotes used in lander text\n // // landerText = landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n // create onclick()\n anchorLinks = ``\n\n $(\"#thisMonthHeader\").append(`\n \n `)\n }\n\n heroCount++\n console.log(\"heroCount = \"+ heroCount)\n }\n })\n\n // Hero Blocks on /this-month page ... 2 of them at top of page -----------------\n var blockOneCount = 0\n var blockTwoCount = 0\n $.each(data.tcm.thisMonthBlocks, function(index, item) {\n var landerText = item.landerText || '';\n if(blockOneCount < 1 && item.itemOrder == \"1\"){\n // All HTM articles should open as embeded articles i.e. this-month?articleId=123456\n let isArticle = item.linkUrl.includes('/articles/')\n let anchorLinks = ''\n item.linkUrl = item.linkUrl.replace(/'/g, '').replace(/\"/g, '').replace(/ /g, '-')\n // need to excape quotes, ascii or char encodes just display a quote .. which breaks onclick()\n // landerText = item.landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n\n // If HTM Links to an article use the global onclick()\n if(item.linkType == \"Content\" && isArticle){\n\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = item.linkUrl.split('/');\n\n anchorLinks = ``\n\n }else{\n // Otherwise use the href\n anchorLinks = ``\n }\n\n $(\"#thisMonthBlock1\").append(`\n ${anchorLinks}
\n \n
${item.header}
\n
\n ${item.subHeader}
\n ${item.teaserText}\n ${anchorLinks}${item.linkText}\n \n `)\n blockOneCount++\n }\n // Hero Block 2\n if(blockTwoCount < 1 && item.itemOrder == \"2\"){\n\n // All HTM articles should open as embeded articles i.e. this-month?articleId=123456\n let isArticle = item.linkUrl.includes('/articles/')\n let anchorLinks = ''\n item.linkUrl = item.linkUrl.replace(/'/g, '').replace(/\"/g, '').replace(/ /g, '-')\n // need to excape quotes, ascii or char encodes just display a quote .. which breaks onclick()\n landerText = escape(item.landerText);\n // If HTM Links to an article use the global onclick()\n if(item.linkType == \"Content\" && isArticle){\n\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = item.linkUrl.split('/');\n\n\n anchorLinks = ``\n\n }else{\n // Otherwise use the href\n anchorLinks = ``\n }\n $(\"#thisMonthBlock2\").append(`\n ${anchorLinks}
\n \n
${item.header}
\n
\n ${item.subHeader}
\n ${item.teaserText}\n ${anchorLinks}${item.linkText} \n \n `)\n blockTwoCount++\n }\n })\n\n // Happening This Month - Headers\n var thisMonthHTM = data.tcm.thisMonthHTM.sort((a,b) => a.itemOrder-b.itemOrder )\n if(thisMonthHTM.length > 0){\n $(\"#HTMContentWell\").append(`\n Happening This Month
\n
\n `);\n }\n\n // Happening This Month - Tiles\n $.each(thisMonthHTM, function(index, item) {\n var landerText = item.landerText || '';\n // All HTM articles should open as embeded articles i.e. this-month?articleId=123456\n let isArticle = item.linkUrl.includes('/articles/')\n let anchorLinks = ''\n item.linkUrl = item.linkUrl.replace(/'/g, '').replace(/\"/g, '').replace(/ /g, '-')\n // need to excape quotes, ascii or char encodes just display a quote .. which breaks onclick()\n landerText = escape(item.landerText);\n item.linkText = item.linkText.replace(/\\'/g, \"'\").replace(/\\\"/g, '\"')\n // If HTM Links to an article use the global onclick()\n if(item.linkType == \"Content\" && isArticle){\n\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = item.linkUrl.split('/');\n\n anchorLinks = ` `\n\n }else{\n // Otherwise use the href\n anchorLinks = ` `\n }\n\n $(\"#HTMContentWell\").append(`\n ${anchorLinks}\n
\n ${item.linkText ? item.linkText : item.header}
\n \n `)\n })\n var lanesLength = data.tcm.thisMonthLanes.length;\n var laneCount = lanesLength - 1;\n var i;\n\n // Other lanes Found below Happening This Month ... Movie News, Film Comments\n for (i = 0; i < data.tcm.thisMonthLanes.length; i++) {\n if(lanesLength != i){\n var contentTypeId = data.tcm.thisMonthLanes[i].contentType.replace(/\\s/g, '').replace(\"'\",\"\");\n $(\"#lanesWell\").append(`\n \n
${data.tcm.thisMonthLanes[i].contentType}
\n \n `)\n }\n if (laneCount == i){\n var articleData = data.tcm.thisMonthLanes\n fillInArticles(articleData);\n }\n }\n\n // Ad Banner at the footer of /this-month\n let footerAd;\n // Ad Banner - random number generator / if 4 ads are in flight ... rotate.\n if(data.tcm.thisMonthBanners.length > 1){\n let max = data.tcm.thisMonthBanners.length\n let randomInt = Math.floor(Math.random() * max)\n footerAd = data.tcm.thisMonthBanners[randomInt]\n }else{\n footerAd = data.tcm.thisMonthBanners[0]\n }\n\n\n $(\"#TM-Banners\").append(`\n \n
\n \n `)\n },\n error: function(error) {\n console.log('Error ' + apiURL+'/tcmws/thisMonth\\n' + error);\n }\n });\n }\n\n // Admin Preview-Page -- Preview Hero\n else if (window.location.href.indexOf(\"?preview=Hero\") > -1){\n var headerImg = $.cookie(\"HeroheaderImg\");\n //var header = $.cookie(\"Heroheader\");\n var landerText = $.cookie(\"HerolanderText\") || '';\n //var link = $.cookie(\"Herolink\");\n var url = $.cookie(\"linkUrl\");\n var linkType = $.cookie(\"linkType\");\n var newWindow = $.cookie(\"newWindow\") == \"YES\"? true : false;\n let anchorLinks = ''\n\n\n if(linkType == \"External\"){\n $(\"#thisMonthHeader\").append(`\n \n `)\n }else if(linkType == \"Content\"){ // if Content or Lander\n let isVideo = url.includes('/video/')\n if(isVideo){ // if video .. use a regular href\n anchorLinks = ``\n }else{ // use the onClick()\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = url.split('/');\n // Escape quotes used in lander text\n // // landerText = landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n // create onclick()\n anchorLinks = ``\n\n }\n $(\"#thisMonthHeader\").append(`\n \n `)\n }else if(linkType == \"Lander\"){\n // Escape quotes used in lander text\n // // landerText = landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n // create onclick()\n anchorLinks = ``\n\n $(\"#thisMonthHeader\").append(`\n \n `)\n }\n\n //Block 1 - Dummy Content\n $(\"#thisMonthBlock1\").append(`\n
\n \n
Block 2 Header
\n
\n
Block 2 Subheader
\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\n
LEARN MORE \n
\n `)\n //Block 2 - Dummy Content\n $(\"#thisMonthBlock2\").append(`\n
\n \n
Block 2 Header
\n
\n
Block 2 Subheader
\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\n
LEARN MORE \n
\n `)\n //HTM Preview and Placeholder Content - Dummy Content\n $(\"#HTMContentWell\").append(`\n \n
\n HTM Block 1 Placeholder Text Goes Here
\n \n `)\n $(\"#HTMContentWell\").append(`\n \n
\n HTM Block 2 Placeholder Text Goes Here
\n \n `)\n $(\"#HTMContentWell\").append(`\n \n
\n HTM Block 3 Placeholder Text Goes Here
\n \n `)\n //Placeholder Lane Content - Dummy Content\n $(\"#lanesWell\").append(`\n \n \n `)\n $(`#PlaceholderLane`).append(`\n \n \n

\n
Placeholder Text Goes Here
\n
\n \n `);\n $(`#PlaceholderLane`).append(`\n \n \n

\n
Placeholder Text Goes Here
\n
\n \n `)\n $(`#PlaceholderLane`).append(`\n \n \n

\n
Placeholder Text Goes Here
\n
\n \n `)\n //Banner Placeholder - Dummy Content\n $(\"#TM-Banners\").append(`\n \n
\n `\n );\n }\n\n // Admin Preview-Page -- Preview Block\n else if (window.location.href.indexOf(\"?preview=Block\") > -1){\n var headerImg = $.cookie(\"BlockheaderImg\");\n var header = $.cookie(\"Blockheader\");\n var landerText = $.cookie(\"BlocklanderText\") || '';\n var link = $.cookie(\"Blocklink\");\n var BlocklinkUrl = $.cookie(\"BlocklinkUrl\");\n var BlocklinkType = $.cookie(\"BlocklinkType\");\n var BlockheroNewWindow = $.cookie(\"BlockheroNewWindow\");\n var BlocklinkText = $.cookie(\"BlocklinkText\");\n var BlockteaserText = $.cookie(\"BlockteaserText\");\n var BlocksubHeader = $.cookie(\"BlocksubHeader\");\n // Sean moved anchor link to scope to other content types\n let anchorLinks = ''\n //$(\".tcm-share-hanger\").hide();\n //Hero\n $(\"#thisMonthHeader\").append(`\n \n `)\n\n //Block 1\n if(BlocklinkType == \"Content\"){\n\n // All HTM articles should open as embeded articles i.e. this-month?articleId=123456\n let isArticle = BlocklinkUrl.includes('/articles/')\n\n BlocklinkUrl = BlocklinkUrl.replace(/'/g, '').replace(/\"/g, '').replace(/ /g, '-')\n // need to excape quotes, ascii or char encodes just display a quote .. which breaks onclick()\n\n // If HTM Links to an article use the global onclick()\n if(BlocklinkType == \"Content\" && isArticle){\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = BlocklinkUrl.split('/');\n // landerText = landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n anchorLinks = ``\n\n }else{\n // Otherwise use the href\n anchorLinks = ``\n }\n $(\"#thisMonthBlock1\").append(`\n ${anchorLinks}
\n \n
${header}
\n
\n ${BlocksubHeader}
\n ${BlockteaserText}\n ${anchorLinks}${BlocklinkText} \n \n `)\n }\n\n else if(BlocklinkType ==\"External\"){\n // Sean Added anchor links External\n anchorLinks = ``\n\n $(\"#thisMonthBlock1\").append(`\n ${anchorLinks}
\n \n
${header}
\n
\n ${BlocksubHeader}
\n ${BlockteaserText}\n ${anchorLinks}${BlocklinkText} \n \n `)\n }\n else if(BlocklinkType ==\"Lander\"){\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = BlocklinkUrl.split('/');\n // landerText = landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n anchorLinks = ``\n\n $(\"#thisMonthBlock1\").append(`\n ${anchorLinks}
\n \n
${header}
\n
\n ${BlocksubHeader}
\n ${BlockteaserText}\n ${anchorLinks}${BlocklinkText} \n \n `)\n }\n\n //Block 2\n $(\"#thisMonthBlock2\").append(`\n
\n \n
Block 2 Header
\n
\n
Block 2 Subheader
\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\n
LEARN MORE \n
\n `)\n //HTM Preview and Placeholder Content\n $(\"#HTMContentWell\").append(`\n \n
\n HTM Block 1 Placeholder Text Goes Here
\n \n `)\n $(\"#HTMContentWell\").append(`\n \n
\n HTM Block 2 Placeholder Text Goes Here
\n \n `)\n $(\"#HTMContentWell\").append(`\n \n
\n HTM Block 3 Placeholder Text Goes Here
\n \n `)\n //Placeholder Lane Content\n $(\"#lanesWell\").append(`\n \n \n `)\n $(`#PlaceholderLane`).append(`\n \n \n

\n
Placeholder Text Goes Here
\n
\n \n `);\n $(`#PlaceholderLane`).append(`\n \n \n

\n
Placeholder Text Goes Here
\n
\n \n `)\n $(`#PlaceholderLane`).append(`\n \n \n

\n
Placeholder Text Goes Here
\n
\n \n `)\n //Banner Placeholder\n $(\"#TM-Banners\").append(`\n \n
\n `\n );\n }\n\n // Admin Preview-Page - Preview HTM\n else if (window.location.href.indexOf(\"?preview=HTM\") > -1){\n var headerImg = $.cookie(\"HTMheaderImg\");\n var header = $.cookie(\"HTMheader\");\n var landerText = $.cookie(\"HTMlanderText\") || '';\n var link = $.cookie(\"HTMlink\");\n var HTMlinkUrl = $.cookie(\"HTMlinkUrl\");\n var HTMlinkType = $.cookie(\"HTMlinkType\");\n var HTMheroNewWindow = $.cookie(\"HTMheroNewWindow\");\n var HTMlinkText = $.cookie(\"HTMlinkText\");\n //$(\".tcm-share-hanger\").hide();\n //Hero\n $(\"#thisMonthHeader\").append(`\n \n `)\n //Block 1\n $(\"#thisMonthBlock1\").append(`\n
\n \n
Block 1 Header
\n
\n
Block 1 Subheader
\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\n
LEARN MORE \n
\n `)\n //Block 2\n $(\"#thisMonthBlock2\").append(`\n
\n \n
Block 2 Header
\n
\n
Block 2 Subheader
\n Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.\n
LEARN MORE \n
\n `)\n //HTM Preview and Placeholder Content\n $(\"#HTMContentWell\").append(`\n Happening This Month
\n
\n `);\n // All HTM articles should open as embeded articles i.e. this-month?articleId=123456\n let isArticle = HTMlinkUrl.includes('/articles/')\n let anchorLinks = ''\n HTMlinkUrl = HTMlinkUrl.replace(/'/g, '').replace(/\"/g, '').replace(/ /g, '-')\n // need to excape quotes, ascii or char encodes just display a quote .. which breaks onclick()\n // landerText = landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n HTMlinkText = HTMlinkText.replace(/\\'/g, \"'\").replace(/\\\"/g, '\"')\n // If HTM Links to an article use the global onclick()\n if(HTMlinkType == \"Content\" && isArticle){\n\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = HTMlinkUrl.split('/');\n\n anchorLinks = ` `\n\n }else{\n // Otherwise use the href\n anchorLinks = ` `\n }\n\n $(\"#HTMContentWell\").append(`\n ${anchorLinks}\n
\n ${HTMlinkText ? HTMlinkText : header}
\n \n `)\n $(\"#HTMContentWell\").append(`\n \n
\n HTM Block 2 Placeholder Text Goes Here
\n \n `)\n $(\"#HTMContentWell\").append(`\n \n
\n HTM Block 3 Placeholder Text Goes Here
\n \n `)\n //Placeholder Lane Content\n $(\"#lanesWell\").append(`\n \n \n `)\n $(`#PlaceholderLane`).append(`\n \n \n

\n
Placeholder Text Goes Here
\n
\n \n `);\n $(`#PlaceholderLane`).append(`\n \n \n

\n
Placeholder Text Goes Here
\n
\n \n `)\n $(`#PlaceholderLane`).append(`\n \n \n

\n
Placeholder Text Goes Here
\n
\n \n `)\n //Banner Placeholder\n $(\"#TM-Banners\").append(`\n \n
\n `\n );\n }\n\n // Customer Facing Non-Admin page // qa.tcm.com/this-month ---------------------------------\n else{\n var cacheStamp = moment.utc().format('YYYY-MM-DD');\n $.ajax({\n url: apiURL+\"/tcmws/thisMonth?\"+cacheStamp,\n type: \"GET\",\n cache: true,\n headers: {\n \"accept\": \"application/json;odata=verbose\",\n },\n success: function(data) {\n console.log('Success 1st api page--this-month.twig:\\n'+ apiURL+\"/tcmws/thisMonth\" )\n var heroCount = 0\n // Hero-Banner at Top of Page -----------------\n $.each(data.tcm.thisMonthHeroes, function(index, item) {\n if(heroCount < 1){ // not sure why we loop here\n var landerText = item.landerText || '';\n var url = item.linkUrl;\n var linkType = item.linkType;\n let anchorLinks = ''\n let newWindow = item.newWindow == \"YES\"? true : false;\n\n if(linkType == \"External\"){\n $(\"#thisMonthHeader\").append(`\n \n `)\n }else if(linkType == \"Content\"){ // if Content or Lander\n let isVideo = url.includes('/video/')\n if(isVideo){ // if video .. use a regular href\n anchorLinks = ``\n }else{ // use the onClick()\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = url.split('/');\n // Escape quotes used in lander text\n // landerText = landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n // create onclick()\n anchorLinks = ``\n\n }\n $(\"#thisMonthHeader\").append(`\n \n `)\n }else if(linkType == \"Lander\"){\n // Escape quotes used in lander text\n // landerText = landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n // create onclick()\n anchorLinks = ``\n\n $(\"#thisMonthHeader\").append(`\n \n `)\n }\n\n heroCount++\n console.log(\"heroCount = \"+ heroCount)\n }\n })\n\n // Hero Blocks on /this-month page ... 2 of them at top of page -----------------\n var blockOneCount = 0\n var blockTwoCount = 0\n $.each(data.tcm.thisMonthBlocks, function(index, item) {\n var landerText = item.landerText || '';\n if(blockOneCount < 1 && item.itemOrder == \"1\"){\n\n // All HTM articles should open as embeded articles i.e. this-month?articleId=123456\n let isArticle = item.linkUrl.includes('/articles/')\n let anchorLinks = ''\n item.linkUrl = item.linkUrl.replace(/'/g, '').replace(/\"/g, '').replace(/ /g, '-')\n // need to excape quotes, ascii or char encodes just display a quote .. which breaks onclick()\n // landerText = item.landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n\n // If HTM Links to an article use the global onclick()\n if(item.linkType == \"Content\" && isArticle){\n\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = item.linkUrl.split('/');\n\n anchorLinks = ``\n\n }else{\n // Otherwise use the href\n anchorLinks = ``\n }\n\n\n $(\"#thisMonthBlock1\").append(`\n ${anchorLinks}
\n \n
${item.header}
\n
\n ${item.subHeader}
\n ${item.teaserText}\n ${anchorLinks}${item.linkText}\n \n `)\n blockOneCount++\n }\n // Hero Block 2\n if(blockTwoCount < 1 && item.itemOrder == \"2\"){\n\n // All HTM articles should open as embeded articles i.e. this-month?articleId=123456\n let isArticle = item.linkUrl.includes('/articles/')\n let anchorLinks = ''\n item.linkUrl = item.linkUrl.replace(/'/g, '').replace(/\"/g, '').replace(/ /g, '-')\n // need to excape quotes, ascii or char encodes just display a quote .. which breaks onclick()\n // landerText = item.landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n // If HTM Links to an article use the global onclick()\n if(item.linkType == \"Content\" && isArticle){\n\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = item.linkUrl.split('/');\n\n\n anchorLinks = ``\n\n }else{\n // Otherwise use the href\n anchorLinks = ``\n }\n $(\"#thisMonthBlock2\").append(`\n ${anchorLinks}
\n \n
${item.header}
\n
\n ${item.subHeader}
\n ${item.teaserText}\n ${anchorLinks}${item.linkText} \n \n `)\n blockTwoCount++\n }\n })\n\n // Happening This Month - Headers\n var thisMonthHTM = data.tcm.thisMonthHTM.sort((a,b) => a.itemOrder-b.itemOrder )\n if(thisMonthHTM.length > 0){\n $(\"#HTMContentWell\").append(`\n Happening This Month
\n
\n `);\n }\n\n // Happening This Month - Tiles\n $.each(thisMonthHTM, function(index, item) {\n // All HTM articles should open as embeded articles i.e. this-month?articleId=123456\n let isArticle = item.linkUrl.includes('/articles/')\n let anchorLinks = ''\n item.linkUrl = item.linkUrl.replace(/'/g, '').replace(/\"/g, '').replace(/ /g, '-')\n // need to excape quotes, ascii or char encodes just display a quote .. which breaks onclick()\n var landerText = item.landerText || '';\n // landerText = item.landerText.replace(/'/g, '-html-single-').replace(/\"/g, '-html-double-')\n item.linkText = item.linkText.replace(/\\'/g, \"'\").replace(/\\\"/g, '\"')\n // If HTM Links to an article use the global onclick()\n if(item.linkType == \"Content\" && isArticle){\n\n // Api doesn't currenly have articleID .. soo\n // Grab the articleId from the URL key ... split into and array and use the 3nd arr value\n let articleURLArray = item.linkUrl.split('/');\n\n anchorLinks = ` `\n\n }else{\n // Otherwise use the href\n anchorLinks = ` `\n }\n\n $(\"#HTMContentWell\").append(`\n ${anchorLinks}\n
\n ${item.linkText ? item.linkText : item.header}
\n \n `)\n })\n var lanesLength = data.tcm.thisMonthLanes.length;\n var laneCount = lanesLength - 1;\n var i;\n\n // Other lanes Found below Happening This Month ... Movie News, Film Comments\n for (i = 0; i < data.tcm.thisMonthLanes.length; i++) {\n if(lanesLength != i){\n var contentTypeId = data.tcm.thisMonthLanes[i].contentType.replace(/\\s/g, '').replace(\"'\",\"\");\n $(\"#lanesWell\").append(`\n \n
${data.tcm.thisMonthLanes[i].contentType}
\n \n `)\n }\n if (laneCount == i){\n var articleData = data.tcm.thisMonthLanes\n fillInArticles(articleData);\n }\n }\n\n // Ad Banner at the footer of /this-month\n let footerAd;\n // Ad Banner - random number generator / if 4 ads are in flight ... rotate.\n if(data.tcm.thisMonthBanners.length > 1){\n let max = data.tcm.thisMonthBanners.length\n let randomInt = Math.floor(Math.random() * max)\n footerAd = data.tcm.thisMonthBanners[randomInt]\n }else{\n footerAd = data.tcm.thisMonthBanners[0]\n }\n\n if (footerAd && footerAd.linkUrl) {\n $(\"#TM-Banners\").append(`\n \n
\n \n `)\n }\n },\n error: function(error) {\n console.log('Error ' + apiURL+'/tcmws/thisMonth\\n' + error);\n }\n });\n }\n });\n\n // Article Blocks Found within Lanes on /this-month\n function fillInArticles(articleData){\n $.each(articleData, function(index, item) {\n var articles = item.articles;\n $.each(articles, function(index, item) {\n var contentType = item.type.replace(/\\s/g, '').replace(\"'\",\"\");\n if((item.headerImg == null) || (item.headerImg == \"\")){\n var headerImg = \"https://prod-images.tcm.com/img/global/tcm-clip-no-image.png\";\n }else{\n var headerImg = item.headerImg;\n }\n $(`#${contentType}Lane`).append(`\n \n \n

\n
${item.consumerTitle}
\n
\n \n `)\n })\n })\n }\n }\n }\n}\n","\nexport default class FooterRibbon {\n\n static initialize() {\n\n document.addEventListener('DOMContentLoaded', closeFooterRibbon, false);\n \n function closeFooterRibbon(){ \n let ribbon = document.querySelector('.universal-footer__ribbon')\n let closeRibbonBtn = document.querySelector('.universal-footer__ribbon__content__clear')\n\n // used for testing\n //deleteCookie('privacyagreement')\n \n // Has user closed agreemnet? // no cookie is found\n // Set cookie, add EventListener on close\n if( !getCookie('privacyagreement')){\n console.log('No Cookie \\nsetting evnt list')\n ribbon.classList.add('active')\n closeRibbonBtn.addEventListener('click', function(){ \n setCookie('privacyagreement', true, 100) \n ribbon.classList.toggle('active')\n console.log('is Set Now')\n }) \n // User has closed agreement\n }else{ \n ribbon.classList.remove('active')\n }\n \n function getCookie(name) {\n var v = document.cookie.match('(^|;) ?' + name + '=([^;]*)(;|$)');\n return v ? v[2] : null;\n } \n function setCookie(name, value, days) {\n var d = new Date;\n d.setTime(d.getTime() + 24*60*60*1000*days);\n document.cookie = name + \"=\" + value + \";path=/;expires=\" + d.toGMTString();\n }\n\n function deleteCookie(name) { setCookie(name, '', -1); }\n\n\n\n // add links behind stupid Drupal stuff in footer\n $('a[href^=\"http://www.tcm.com/code-of-conduct.html\"]').attr('target','_blank');\n $('a[href^=\"https://www.turner.com/pressroom\"]').attr('target','_blank');\n }\n\n\n }\n}","\nexport default class Polyfills {\n /**\n * Mainly for dev & qa environments where Babel isn't used. \n * Create polyfills for missing ECMA2016 methods.\n */\n static initialize() {\n \n // Array.find() polyfill\n // https://tc39.github.io/ecma262/#sec-array.prototype.find\n // Adds .find() method to Array for use in i.e.11 \n if (!Array.prototype.find) {\n Object.defineProperty(Array.prototype, 'find', {\n value: function(predicate) {\n // 1. Let O be ? ToObject(this value).\n if (this == null) {\n throw new TypeError('\"this\" is null or not defined');\n }\n \n var o = Object(this);\n \n // 2. Let len be ? ToLength(? Get(O, \"length\")).\n var len = o.length >>> 0;\n \n // 3. If IsCallable(predicate) is false, throw a TypeError exception.\n if (typeof predicate !== 'function') {\n throw new TypeError('predicate must be a function');\n }\n \n // 4. If thisArg was supplied, let T be thisArg; else let T be undefined.\n var thisArg = arguments[1];\n \n // 5. Let k be 0.\n var k = 0;\n \n // 6. Repeat, while k < len\n while (k < len) {\n // a. Let Pk be ! ToString(k).\n // b. Let kValue be ? Get(O, Pk).\n // c. Let testResult be ToBoolean(? Call(predicate, T, « kValue, k, O »)).\n // d. If testResult is true, return kValue.\n var kValue = o[k];\n if (predicate.call(thisArg, kValue, k, o)) {\n return kValue;\n }\n // e. Increase k by 1.\n k++;\n }\n \n // 7. Return undefined.\n return undefined;\n }\n });\n }\n\n \n // Array.from() polyfill\n // From https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/from\n // Production steps of ECMA-262, Edition 6, 22.1.2.1\n if (!Array.from) {\n Array.from = (function () {\n var toStr = Object.prototype.toString;\n var isCallable = function (fn) {\n return typeof fn === 'function' || toStr.call(fn) === '[object Function]';\n };\n var toInteger = function (value) {\n var number = Number(value);\n if (isNaN(number)) { return 0; }\n if (number === 0 || !isFinite(number)) { return number; }\n return (number > 0 ? 1 : -1) * Math.floor(Math.abs(number));\n };\n var maxSafeInteger = Math.pow(2, 53) - 1;\n var toLength = function (value) {\n var len = toInteger(value);\n return Math.min(Math.max(len, 0), maxSafeInteger);\n };\n\n // The length property of the from method is 1.\n return function from(arrayLike/*, mapFn, thisArg */) {\n // 1. Let C be the this value.\n var C = this;\n\n // 2. Let items be ToObject(arrayLike).\n var items = Object(arrayLike);\n\n // 3. ReturnIfAbrupt(items).\n if (arrayLike == null) {\n throw new TypeError('Array.from requires an array-like object - not null or undefined');\n }\n\n // 4. If mapfn is undefined, then let mapping be false.\n var mapFn = arguments.length > 1 ? arguments[1] : void undefined;\n var T;\n if (typeof mapFn !== 'undefined') {\n // 5. else\n // 5. a If IsCallable(mapfn) is false, throw a TypeError exception.\n if (!isCallable(mapFn)) {\n throw new TypeError('Array.from: when provided, the second argument must be a function');\n }\n\n // 5. b. If thisArg was supplied, let T be thisArg; else let T be undefined.\n if (arguments.length > 2) {\n T = arguments[2];\n }\n }\n\n // 10. Let lenValue be Get(items, \"length\").\n // 11. Let len be ToLength(lenValue).\n var len = toLength(items.length);\n\n // 13. If IsConstructor(C) is true, then\n // 13. a. Let A be the result of calling the [[Construct]] internal method\n // of C with an argument list containing the single item len.\n // 14. a. Else, Let A be ArrayCreate(len).\n var A = isCallable(C) ? Object(new C(len)) : new Array(len);\n\n // 16. Let k be 0.\n var k = 0;\n // 17. Repeat, while k < len… (also steps a - h)\n var kValue;\n while (k < len) {\n kValue = items[k];\n if (mapFn) {\n A[k] = typeof T === 'undefined' ? mapFn(kValue, k) : mapFn.call(T, kValue, k);\n } else {\n A[k] = kValue;\n }\n k += 1;\n }\n // 18. Let putStatus be Put(A, \"length\", len, true).\n A.length = len;\n // 20. Return A.\n return A;\n };\n }());\n } \n\n // Array.includes() polyfill\n // https://tc39.github.io/ecma262/#sec-array.prototype.includes\n if (!Array.prototype.includes) {\n Object.defineProperty(Array.prototype, 'includes', {\n value: function(valueToFind, fromIndex) {\n \n if (this == null) {\n throw new TypeError('\"this\" is null or not defined');\n }\n \n // 1. Let O be ? ToObject(this value).\n var o = Object(this);\n \n // 2. Let len be ? ToLength(? Get(O, \"length\")).\n var len = o.length >>> 0;\n \n // 3. If len is 0, return false.\n if (len === 0) {\n return false;\n }\n \n // 4. Let n be ? ToInteger(fromIndex).\n // (If fromIndex is undefined, this step produces the value 0.)\n var n = fromIndex | 0;\n \n // 5. If n ≥ 0, then\n // a. Let k be n.\n // 6. Else n < 0,\n // a. Let k be len + n.\n // b. If k < 0, let k be 0.\n var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);\n \n function sameValueZero(x, y) {\n return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y));\n }\n \n // 7. Repeat, while k < len\n while (k < len) {\n // a. Let elementK be the result of ? Get(O, ! ToString(k)).\n // b. If SameValueZero(valueToFind, elementK) is true, return true.\n if (sameValueZero(o[k], valueToFind)) {\n return true;\n }\n // c. Increase k by 1. \n k++;\n }\n \n // 8. Return false\n return false;\n }\n });\n } \n \n // String.includes() polyfill\n if (!String.prototype.includes) {\n Object.defineProperty(String.prototype, 'includes', {\n value: function(search, start) {\n if (typeof start !== 'number') {\n start = 0\n }\n \n if (start + search.length > this.length) {\n return false\n } else {\n return this.indexOf(search, start) !== -1\n }\n }\n })\n } \n \n // Object.assign() polyfill \n // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign\n if (typeof Object.assign !== 'function') {\n // Must be writable: true, enumerable: false, configurable: true\n Object.defineProperty(Object, \"assign\", {\n value: function assign(target, varArgs) { // .length of function is 2\n 'use strict';\n if (target === null || target === undefined) {\n throw new TypeError('Cannot convert undefined or null to object');\n }\n \n var to = Object(target);\n \n for (var index = 1; index < arguments.length; index++) {\n var nextSource = arguments[index];\n \n if (nextSource !== null && nextSource !== undefined) { \n for (var nextKey in nextSource) {\n // Avoid bugs when hasOwnProperty is shadowed\n if (Object.prototype.hasOwnProperty.call(nextSource, nextKey)) {\n to[nextKey] = nextSource[nextKey];\n }\n }\n }\n }\n return to;\n },\n writable: true,\n configurable: true\n });\n } \n }\n}","import truncata from \"../../../../../libraries/truncata/truncata\";\n\nexport default class VideoPage {\n static initialize(UrlPathname) {\n\t\t$( document ).ready(function() {\n if (UrlPathname == '/video'){\n truncata('.video-page__related-video__block__content-header', {lines: 2});\n truncata('.video-page__related-video__block__content-copy', {lines: 3})\n }\n })\n }\n}"],"names":["module","exports","defaults","lines","percentage","decoration","throttlingDelay","dataAttributeName","target","options","els","ctx","settings","API","truncateElements","i","length","elm","content","undefined","dataset","setAttribute","innerHTML","truncateElementContent","width","getBoundingClientRect","style","window","getComputedStyle","font","join","max_parragh_width","measureText","accumulatedSize","founded","split","reduce","acc","cur","arr","size","concat","resizeHandler","event","throttled","setTimeout","destroy","removeEventListener","removeAttribute","merged","Array","prototype","forEach","call","arguments","obj","key","hasOwnProperty","extend","Error","document","querySelectorAll","canvas","createElement","createDocumentFragment","appendChild","getContext","setup","addEventListener","factory","__webpack_module_cache__","__webpack_require__","moduleId","cachedModule","__webpack_modules__","n","getter","__esModule","d","a","definition","o","Object","defineProperty","enumerable","get","prop","TrackingMetrics","initialize","$","children","on","trackMetricsObj","type","data","url","this","attr","log","trackMetrics","e","warn","socialType","metricsObj","trackClickInteraction","each","linkObj","find","first","addTrackingToLink","DEBUG","location","href","indexOf","console","apply","name","position","text","linkHref","linkText","formatText","linkParam","bottomMenu","trim","toLowerCase","replace","Modal","constructor","modal_template","onOpen","onClose","custom_open_callback","bind","custom_close_callback","modal_selector","modal_open_class","modal_close_selector","modal_sidebar_close_selector","modal_player_close_selector","is_open","_setupEventListeners","open","close","addClass","append","template","hide","sidebarTemplate","toggleTemplate","fullText","overlay_type","prepend","detach","removeClass","getIsOpen","createBroadcastEventSchema","Storyline","durationISO8601","profileImage","Name","SortDate","StartDate","EndDate","CreatedDate","appendSchema","description","duration","thumbnailUrl","uploadDate","publication","isLiveBroadcast","startDate","endDate","createItemListSchema","scriptText","itemListElement","item","TitleId","itemFormatted","origin","encodeURIComponent","push","contentType","publishedDate","titleConsumer","imageUrl","contentUrl","createVideoObjectSchema","modifiedDate","author","consumerTitleOG","headline","datePublished","dateModified","image","publisher","alternateName","logo","mainEntityOfPage","createArticleSchema","structuredData","scriptEl","getElementById","contentJSON","JSON","parse","textContent","itemListArray","stringify","script","head","SearchFlyout","deviceWidth","apiURL","passedEvent","jqUniversalSearchInput","positionOptions","appendElement","currentOrientation","device","deviceWas","universalSearchIconMoblie","querySelector","universalSearchBar","universalSearchBarClear","from","universalSearchBarClearDesktop","universalSearchBarClearMobile","suggestionsMobileTarget","suggestionDefaultTarget","innerWidth","innerHeight","my","at","of","contentForOrientationChange","runAutoComplete","which","val","searchValue","escape","encodeURI","autocomplete","keyup","classList","add","remove","appendTo","html","delay","source","request","response","elasticsearchEndpoint","drupalSettings","site_env","term","xhr","XMLHttpRequest","withCredentials","onreadystatechange","readyState","res","map","hits","termRegex","RegExp","displayString","_source","substr","label","value","null","setRequestHeader","send","handleObj","css","empty","focus","select","toggle","contains","proto","ui","initSource","_initSource","isArray","array","matcher","escapeRegex","grep","test","_renderItem","ul","jQuery","ModalCarousel","ready","inputData","getAttribute","overlay_img","overlay_copy","overlay_title","overlay_subtitle","vodData","modal_player_template","title","des","custom_options_that_are_not_required","carouselImageArray","carouselImageCopyArrayEscaped","count","img","slick","lazyLoad","dots","customPaging","slider","$slides","nextArrow","prevArrow","infinite","populateOverlayCarousel","alert","modalCreation","FilmDetail","UrlPathname","hash","section","substring","includes","activateSection","pathname","onhashchange","articleId","articleClicked","click","sideNavClicked","hasClass","sectionClicked","readMoreData","settingsSection","scrollTo","metrics","linkTextFormated","interactionlocation","interaction","interactionevent","removeTruncateIfExist","element","truncateOverviewDescription","truncateArticlesTitles","truncateArticlesBodies","truncatePhotosVideoTitles","truncatePhotosVideoBodies","_that","truncata","show","deviceHeight","responsiveChangeCanidate","api_base","tem","ua","M","morePath","inPreview","cookie","consumerTitle","carouselBody","imageLink","imageLinkWindow","linkOne","linkTwo","imageMarkup","body_div","slidesToShow","slidesToScroll","arrows","fade","asNavFor","draggable","focusOnSelect","autoplay","appendArrows","appendDots","ajax","cache","headers","success","tcm","titles","index","imageProfiles","titleID","titleId","error","errorSrc","rightNow","moment","utc","format","archives","id","urlHtml","imagesArray","images","newImagesArray","imageCopyArray","len","myImageUrlsJSON","myimageCopyArray","adConsumerTitle","adCopy","shortAdCopy","oneThirdImage","twoThirdImage","sa1Link","sa2Link","timeStamp","carouselSlides","homeCarousels","homepageCarouselCount","itemType","carouselImage","now","body","dataTitle","editorialTitle","toString","homeAds","firstRoadBlockIndex","secondRoadBlockIndex","is1Roadblocked","is2Roadblocked","filteredArray","sa1Roadblocked","sa2Roadblocked","floor","SA1tries","smallAd","largeAd","adContainer","Math","random","SA1","SA2","adShortCopy","adTitle","gallery","homeGallery","image1","titleEditorialClean","titleEditorial","imageArray","singleDescription","itemImgHttps","cacheStamp","slideLinks","sa1FilteredArray","filter","ad","sa2FilteredArray","sa1Index","findIndex","sa2Index","contentId","splice","imageURL","icid","movieName","releaseYear","usage","isShort","throttle","func","limit","inThrottle","args","loadStickyNav","dailyLineBreaks","mainNav","headerblock","scheduleNav","createStickyNavEle","matchMedia","matches","top","offsetHeight","ele","onscroll","onresize","colType","processedTitle","indexTrending","slice","itemStatus","toLocaleLowerCase","titleCleaned","enterpriseSubNav","enterpriseSubNavMenuItems","menuLenghtArray","link","offsetWidth","stringToBeAppended","loadDailyScheduleFunctionality","isSchemaSet","scheduleClassName","timeZone","searchIsActive","dateToDisplay","cancelSearchBtn","nextElementSibling","timeZoneScheduleBtn","timezoneList","siblings","loader","dynamicContent","clearSearchBtn","emptySearchDiv","totalVodCount","ajaxCall","scheduleContainerMaster","closeTimeZoneModal","resetTimeZoneOverlayMobile","currentScheduleClassName","currentTimeZone","refreshPage","USA","localStorage","getItem","USATable","CAN","CANTable","timeZoneOffset","navElementsArray","currentTimeStamp","toISOString","isCurrentVod","isToday","utcOffset","fullDateYear","dayofWeek","monthString","fullMonthString","monthInt","dayNo","dayNoNoZero","startTime","ampm","country","NetworkFeedCode","Available","urlSlug","Length","isDateAlreadyInNav","date","vodUrlAvalible","status","ReleaseYear","tvGenres","tvRating","Director","Cast","timeout","timeZoneScheduleBtnChg","timez","sched","currentVodScroll","scrollToPoint","currentPlayingVOD","vod","className","pageYOffset","documentElement","behavior","off","stopPropagation","whatChanged","toggleClass","clickedNavElement","headerId","scrollTop","SETTINGS","navBarTravelling","navBarTravelDirection","navBarTravelDistance","pnAdvancerLeft","pnAdvancerRight","pnProductNav","pnProductNavContents","determineOverflow","ticking","container","containerMetrics","containerMetricsRight","right","containerMetricsLeft","left","contentMetrics","contentMetricsRight","contentMetricsLeft","scrollY","requestAnimationFrame","availableScrollLeft","scrollLeft","transform","navBarRightEdge","navBarScrollerRightEdge","availableScrollRight","styleOfTransform","tr","getPropertyValue","amount","abs","parseInt","onkeyup","preventDefault","clearTimeout","sup","listedVODs","vodDateOfSearchReturn","vodDate","vodContainer","playBtn","parentNode","parentElement","urlForTitle","activeElement","timeZoneMoment","todaysDate","emptyDayDiv","itemListSchema","tcmCookiesArray","timeZoneCookieValue","countryCodeCookieValue","correctedOffset","jsDate","Date","trueOffset","startsWith","pop","tz","subtract","guess","isDailyNavHighlight","dayCount","firstSlash","secondSlash","todaysVodCount","dayHasVods","dailyHeader","vodDateOfSearchReturnId","display","table","loadMonthlyScheduleFunctionality","hasDateChanged","itemClose","itemOpen","charAt","ajaxStop","header","truncate","truncateDescriptions","queryString","decodeURIComponent","unescape","search","loadSearchFunctionality","titleLength","peopleLength","dataLength","searchReturnWrap","resultOrResults","fullSearchCountWrap","fullSearchCount","innerText","updateCount","context","parent","sectionfilter","emptySearchReturn","emptySearchReturnTerm","fullSerchTerm","buttonsWrap","fullSearchReturn","fullSearchReturnTitles","fullSearchReturnPeople","fullSearchReturnTitlesAll","fullSearchReturnPeopleAll","method","dataType","jsonpCallback","statusText","replaceWith","done","participants","turner_metadata","synopsis","akaName","AkaName","personId","primaryRole","items","numItems","pagination","itemsOnPage","prevText","nextText","onPageClick","pageNumber","showFrom","showTo","animate","openIn","linkType","linkUrl","landerText","setItem","err","dateTime","hostTypeId","hostType","headerImg","s3Pool","s3Bucket","akamaiPre","hostname","fillInArticles","articleData","articles","heroCount","thisMonthHeroes","anchorLinks","newWindow","imgUrl","articleURLArray","blockOneCount","blockTwoCount","thisMonthBlocks","itemOrder","isArticle","subHeader","teaserText","thisMonthHTM","sort","b","lanesLength","thisMonthLanes","laneCount","contentTypeId","footerAd","thisMonthBanners","max","randomInt","BlocklinkUrl","BlocklinkType","BlockheroNewWindow","BlocklinkText","BlockteaserText","BlocksubHeader","HTMlinkUrl","HTMlinkType","HTMheroNewWindow","HTMlinkText","ribbon","closeRibbonBtn","v","match","days","setTime","getTime","toGMTString","setCookie","toStr","isCallable","maxSafeInteger","toLength","predicate","TypeError","thisArg","k","kValue","fn","pow","number","Number","isNaN","isFinite","toInteger","min","arrayLike","T","mapFn","A","valueToFind","fromIndex","x","y","String","start","assign","varArgs","to","nextSource","nextKey","writable","configurable","height","navigator","browserSpecs","userAgent","version","exec","appName","appVersion","modal"],"sourceRoot":""}