123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116 |
- '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 = '<button class="copy">Copy</button>';
- var expand = '<button class="expand">Expand</button>';
- $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);
- }
- });
|