{
  "version": 3,
  "sources": ["../../javascript/premium-reviews.js"],
  "sourcesContent": ["const reviews = [\n  {\n    author: 'Olli B\u00F6\u00F6k',\n    text: 'Hole19 Premium helps you to know your own weaknesses and strengths. The real level of your game.',\n  },\n  {\n    author: 'Edoardo Noseda',\n    text: 'After testing other apps, I decided to continue with Hole19. After one year, I upgraded to Premium to use all of the features. It is stable and works well with Apple Watch.',\n  },\n  {\n    author: 'Mitch Adler',\n    text: 'Hole19 is simply terrific! Easy, quick, accurate\u2026 runs all by itself! All I have to do is grab the right club and hit it straight!',\n  },\n  {\n    author: 'Veruski Kings',\n    text: 'This is the best golf app I\\'ve seen. Super accurate distances! It helps me to improve my game. Thanks Hole19!',\n  },\n  {\n    author: 'Peter Rom\u00E3o',\n    text: 'Hole19 Premium helps me get track of my club distances, more accurately, during my golf rounds.',\n  },\n  {\n    author: 'Robin Hamilton',\n    text: 'Thanks to Hole19 Premium my golf game is headed in the right direction. Trendline graphs allow me to understand recent development and expected future progress. Provides feedback and motivation in equal measure.',\n  },\n  {\n    author: 'Rafaela Szabo',\n    text: 'When someone asks me which is the most important tool to take on the course, I don\u2019t think twice, Hole19. Every version is always better than the last one. Great job Hole19 team.\u201D.',\n  },\n];\n\nconst speed = window.innerWidth > 900 ? 50 : 40;\n\ndocument.addEventListener('DOMContentLoaded', () => {\n  (function (selector, reviewsArray, sliderSpeed) {\n    const container = document.querySelector(selector);\n\n    const buildUI = function () {\n      reviewsArray.forEach((review) => {\n        const UIReviewCard = document.createElement('li');\n        const UIReviewContent = document.createElement('div');\n        const UIReviewText = document.createElement('span');\n        const UIReviewAuthor = document.createElement('span');\n\n        UIReviewAuthor.innerText = review.author;\n        UIReviewText.innerText = review.text;\n\n        UIReviewCard.classList.add('review-card');\n        UIReviewContent.classList.add('review-content');\n        UIReviewText.classList.add('review-text');\n        UIReviewAuthor.classList.add('review-author');\n\n        UIReviewContent.appendChild(UIReviewAuthor);\n        UIReviewContent.appendChild(UIReviewText);\n        UIReviewCard.appendChild(UIReviewContent);\n\n        container.appendChild(UIReviewCard);\n      });\n    };\n\n    let containerPosition = 0;\n\n    const moveContainer = function () {\n      container.style.transform = `translate(${containerPosition}px)`;\n      containerPosition -= 0.5;\n\n      const firstElement = document.querySelectorAll(`${selector} li`)[0];\n      const firstElementWidth = firstElement.offsetWidth + parseInt(getComputedStyle(firstElement).marginLeft, 10);\n\n      // When the container has slides all the way through, reset its position\n      if (Math.abs(containerPosition) >= (reviewsArray.length * firstElementWidth)) {\n        containerPosition = 0;\n      }\n    };\n\n    // Build the UI 2x\n    buildUI();\n    buildUI();\n\n    // Moves the container\n    setInterval(moveContainer, sliderSpeed);\n  }('.premium-reviews-slider .reviews-container', reviews, speed));\n});\n"],
  "mappings": "AAAA,IAAMA,EAAU,CACd,CACE,OAAQ,kBACR,KAAM,kGACR,EACA,CACE,OAAQ,iBACR,KAAM,8KACR,EACA,CACE,OAAQ,cACR,KAAM,yIACR,EACA,CACE,OAAQ,gBACR,KAAM,+GACR,EACA,CACE,OAAQ,iBACR,KAAM,iGACR,EACA,CACE,OAAQ,iBACR,KAAM,qNACR,EACA,CACE,OAAQ,gBACR,KAAM,gMACR,CACF,EAEMC,EAAQ,OAAO,WAAa,IAAM,GAAK,GAE7C,SAAS,iBAAiB,mBAAoB,IAAM,EACjD,SAAUC,EAAUC,EAAcC,EAAa,CAC9C,IAAMC,EAAY,SAAS,cAAcH,CAAQ,EAE3CI,EAAU,UAAY,CAC1BH,EAAa,QAASI,GAAW,CAC/B,IAAMC,EAAe,SAAS,cAAc,IAAI,EAC1CC,EAAkB,SAAS,cAAc,KAAK,EAC9CC,EAAe,SAAS,cAAc,MAAM,EAC5CC,EAAiB,SAAS,cAAc,MAAM,EAEpDA,EAAe,UAAYJ,EAAO,OAClCG,EAAa,UAAYH,EAAO,KAEhCC,EAAa,UAAU,IAAI,aAAa,EACxCC,EAAgB,UAAU,IAAI,gBAAgB,EAC9CC,EAAa,UAAU,IAAI,aAAa,EACxCC,EAAe,UAAU,IAAI,eAAe,EAE5CF,EAAgB,YAAYE,CAAc,EAC1CF,EAAgB,YAAYC,CAAY,EACxCF,EAAa,YAAYC,CAAe,EAExCJ,EAAU,YAAYG,CAAY,CACpC,CAAC,CACH,EAEII,EAAoB,EAElBC,EAAgB,UAAY,CAChCR,EAAU,MAAM,UAAY,aAAaO,CAAiB,MAC1DA,GAAqB,GAErB,IAAME,EAAe,SAAS,iBAAiB,GAAGZ,CAAQ,KAAK,EAAE,CAAC,EAC5Da,EAAoBD,EAAa,YAAc,SAAS,iBAAiBA,CAAY,EAAE,WAAY,EAAE,EAGvG,KAAK,IAAIF,CAAiB,GAAMT,EAAa,OAASY,IACxDH,EAAoB,EAExB,EAGAN,EAAQ,EACRA,EAAQ,EAGR,YAAYO,EAAeT,CAAW,CACxC,GAAE,6CAA8CJ,EAASC,CAAK,CAChE,CAAC",
  "names": ["reviews", "speed", "selector", "reviewsArray", "sliderSpeed", "container", "buildUI", "review", "UIReviewCard", "UIReviewContent", "UIReviewText", "UIReviewAuthor", "containerPosition", "moveContainer", "firstElement", "firstElementWidth"]
}