'use strict'; document.addEventListener('DOMContentLoaded', function () { // Toggles var $burgers = getAll('.burger'); var $fries = getAll('.fries'); if ($burgers.length > 0) { $burgers.forEach(function ($el) { $el.addEventListener('click', function () { var target = $el.dataset.target; var $target = document.getElementById(target); $el.classList.toggle('is-active'); $target.classList.toggle('is-active'); }); }); } // Modals var $html = document.documentElement; var $modals = getAll('.modal'); var $modalButtons = getAll('.modal-button'); var $modalCloses = getAll('.modal-background, .modal-close, .modal-card-head .delete, .modal-card-foot .button'); if ($modalButtons.length > 0) { $modalButtons.forEach(function ($el) { $el.addEventListener('click', function () { var target = $el.dataset.target; var $target = document.getElementById(target); $html.classList.add('is-clipped'); $target.classList.add('is-active'); }); }); } if ($modalCloses.length > 0) { $modalCloses.forEach(function ($el) { $el.addEventListener('click', function () { $html.classList.remove('is-clipped'); closeModals(); }); }); } document.addEventListener('keydown', function (e) { if (e.keyCode === 27) { $html.classList.remove('is-clipped'); closeModals(); } }); function closeModals() { $modals.forEach(function ($el) { $el.classList.remove('is-active'); }); } // Clipboard var $highlights = getAll('.highlight'); var itemsProcessed = 0; if ($highlights.length > 0) { $highlights.forEach(function ($el) { var copy = ''; var expand = ''; $el.insertAdjacentHTML('beforeend', copy); if ($el.firstElementChild.scrollHeight > 320) { $el.insertAdjacentHTML('beforeend', expand); } itemsProcessed++; if (itemsProcessed === $highlights.length) { addHighlightControls(); } }); } function addHighlightControls() { var $highlightButtons = getAll('.highlight .copy, .highlight .expand'); $highlightButtons.forEach(function ($el) { $el.addEventListener('mouseenter', function () { $el.parentNode.style.boxShadow = '0 0 0 1px #ed6c63'; }); $el.addEventListener('mouseleave', function () { $el.parentNode.style.boxShadow = 'none'; }); }); var $highlightExpands = getAll('.highlight .expand'); $highlightExpands.forEach(function ($el) { $el.addEventListener('click', function () { $el.parentNode.firstElementChild.style.maxHeight = 'none'; }); }); } new Clipboard('.copy', { target: function target(trigger) { return trigger.previousSibling; } }); // Functions function getAll(selector) { return Array.prototype.slice.call(document.querySelectorAll(selector), 0); } });