bulma/docs/lib/main.js

453 lines
12 KiB
JavaScript
Raw Normal View History

2017-07-01 17:30:39 +00:00
'use strict';
document.addEventListener('DOMContentLoaded', function () {
2018-03-26 14:33:31 +00:00
// Cookies
2018-03-28 08:10:39 +00:00
var cookieBookModalName = 'bulma_closed_book_modal';
var cookieBookModal = Cookies.getJSON(cookieBookModalName) || false;
2018-03-26 14:33:31 +00:00
2018-04-09 19:19:29 +00:00
// Sidebar links
var $categories = getAll('#categories .bd-category');
if ($categories.length > 0) {
$categories.forEach(function (el) {
var toggle_el = el.querySelector('.bd-category-toggle');
toggle_el.addEventListener('click', function (event) {
2018-05-03 00:41:52 +00:00
// closeCategories(el);
2018-04-09 19:19:29 +00:00
el.classList.toggle('is-active');
});
});
}
function closeCategories(current_el) {
$categories.forEach(function (el) {
if (current_el == el) {
return;
}
el.classList.remove('is-active');
});
}
2018-04-10 22:52:51 +00:00
var anchors_ref_el = document.getElementById('anchorsReference');
var anchors_el = document.getElementById('anchors');
var anchor_links_el = getAll('.bd-anchor-link');
2018-04-11 00:14:29 +00:00
var anchors_by_id = {};
var anchors_order = [];
var anchor_nav_els = [];
2018-04-10 22:52:51 +00:00
if (anchors_el && anchor_links_el.length > 0) {
2018-04-11 01:11:12 +00:00
anchors_el.classList.add('is-active');
2018-04-10 22:52:51 +00:00
var anchors_el_list = anchors_el.querySelector('.bd-anchors-list');
2018-04-11 00:14:29 +00:00
anchor_links_el.forEach(function (el, index) {
2018-04-10 22:52:51 +00:00
var link_target = el.getAttribute('href');
var link_text = el.previousElementSibling.innerText;
if (link_text != '') {
var item_el = createAnchorLink(link_text, link_target);
anchors_el_list.appendChild(item_el);
2018-04-11 00:14:29 +00:00
var anchor_key = link_target.substring(1); // #target -> target
anchors_by_id[anchor_key] = {
id: anchor_key,
index: index,
target: link_target,
text: link_text,
nav_el: item_el
};
anchors_order.push(anchor_key);
anchor_nav_els.push(item_el);
2018-04-10 22:52:51 +00:00
}
});
var back_to_top_el = createAnchorLink('Back to top', '');
back_to_top_el.onclick = scrollToTop;
anchors_el_list.appendChild(back_to_top_el);
}
function scrollToTop() {
window.scrollTo(0, 0);
}
function createAnchorLink(text, target) {
var item_el = document.createElement('li');
var link_el = document.createElement('a');
var text_node = document.createTextNode(text);
if (target) {
link_el.setAttribute('href', target);
}
link_el.appendChild(text_node);
item_el.appendChild(link_el);
return item_el;
}
function closeCategories(current_el) {
$categories.forEach(function (el) {
if (current_el == el) {
return;
}
el.classList.remove('is-active');
});
}
2018-03-26 14:33:31 +00:00
// Meta links
2017-07-20 19:01:55 +00:00
2017-07-29 12:02:00 +00:00
var $metalinks = getAll('#meta a');
if ($metalinks.length > 0) {
$metalinks.forEach(function ($el) {
$el.addEventListener('click', function (event) {
event.preventDefault();
var target = $el.getAttribute('href');
var $target = document.getElementById(target.substring(1));
$target.scrollIntoView(true);
return false;
});
});
}
// Dropdowns
2017-07-24 10:34:43 +00:00
var $dropdowns = getAll('.dropdown:not(.is-hoverable)');
2017-07-20 19:01:55 +00:00
if ($dropdowns.length > 0) {
$dropdowns.forEach(function ($el) {
$el.addEventListener('click', function (event) {
event.stopPropagation();
$el.classList.toggle('is-active');
});
});
document.addEventListener('click', function (event) {
2017-07-21 07:30:56 +00:00
closeDropdowns();
});
}
function closeDropdowns() {
$dropdowns.forEach(function ($el) {
$el.classList.remove('is-active');
2017-07-20 19:01:55 +00:00
});
}
2017-07-02 16:34:44 +00:00
// Toggles
2017-07-01 17:30:39 +00:00
2017-07-02 16:34:44 +00:00
var $burgers = getAll('.burger');
2017-07-01 17:30:39 +00:00
2017-07-02 16:34:44 +00:00
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');
});
2017-07-01 17:30:39 +00:00
});
}
// Modals
2017-10-26 18:47:48 +00:00
var rootEl = document.documentElement;
2017-07-02 15:52:20 +00:00
var $modals = getAll('.modal');
var $modalButtons = getAll('.modal-button');
var $modalCloses = getAll('.modal-background, .modal-close, .modal-card-head .delete, .modal-card-foot .button');
2017-07-01 17:30:39 +00:00
if ($modalButtons.length > 0) {
$modalButtons.forEach(function ($el) {
$el.addEventListener('click', function () {
var target = $el.dataset.target;
2018-03-26 14:33:31 +00:00
openModal(target);
2017-07-01 17:30:39 +00:00
});
});
}
if ($modalCloses.length > 0) {
$modalCloses.forEach(function ($el) {
$el.addEventListener('click', function () {
closeModals();
});
});
}
2018-03-26 14:33:31 +00:00
function openModal(target) {
var $target = document.getElementById(target);
rootEl.classList.add('is-clipped');
$target.classList.add('is-active');
}
2017-07-01 17:30:39 +00:00
function closeModals() {
2017-10-26 18:47:48 +00:00
rootEl.classList.remove('is-clipped');
2017-07-01 17:30:39 +00:00
$modals.forEach(function ($el) {
$el.classList.remove('is-active');
});
}
2017-07-02 15:52:20 +00:00
2018-04-08 18:54:36 +00:00
document.addEventListener('keydown', function (event) {
var e = event || window.event;
if (e.keyCode === 27) {
closeModals();
closeDropdowns();
}
});
2017-07-02 15:52:20 +00:00
// Clipboard
var $highlights = getAll('.highlight');
var itemsProcessed = 0;
if ($highlights.length > 0) {
$highlights.forEach(function ($el) {
2017-10-09 11:27:08 +00:00
var copyEl = '<button class="button is-small bd-copy">Copy</button>';
var expandEl = '<button class="button is-small bd-expand">Expand</button>';
$el.insertAdjacentHTML('beforeend', copyEl);
2017-07-02 15:52:20 +00:00
2017-10-09 11:27:08 +00:00
var $parent = $el.parentNode;
2017-10-09 14:38:12 +00:00
if ($parent && $parent.classList.contains('bd-is-more')) {
2018-02-13 11:15:12 +00:00
var showEl = '<button class="bd-show"><div><span class="icon"><i class="fas fa-code"></i></span> <strong>Show code</strong></div></button>';
2017-10-09 11:27:08 +00:00
$el.insertAdjacentHTML('beforeend', showEl);
2017-10-09 14:38:12 +00:00
} else if ($el.firstElementChild.scrollHeight > 480 && $el.firstElementChild.clientHeight <= 480) {
$el.insertAdjacentHTML('beforeend', expandEl);
2017-07-02 15:52:20 +00:00
}
itemsProcessed++;
if (itemsProcessed === $highlights.length) {
addHighlightControls();
}
});
}
function addHighlightControls() {
2017-08-14 11:58:21 +00:00
var $highlightButtons = getAll('.highlight .bd-copy, .highlight .bd-expand');
2017-07-02 15:52:20 +00:00
$highlightButtons.forEach(function ($el) {
$el.addEventListener('mouseenter', function () {
2017-08-14 17:25:14 +00:00
$el.parentNode.classList.add('bd-is-hovering');
2017-07-02 15:52:20 +00:00
});
$el.addEventListener('mouseleave', function () {
2017-08-14 17:25:14 +00:00
$el.parentNode.classList.remove('bd-is-hovering');
2017-07-02 15:52:20 +00:00
});
});
2017-08-14 11:58:21 +00:00
var $highlightExpands = getAll('.highlight .bd-expand');
2017-07-02 15:52:20 +00:00
$highlightExpands.forEach(function ($el) {
$el.addEventListener('click', function () {
$el.parentNode.firstElementChild.style.maxHeight = 'none';
});
});
2017-10-09 11:27:08 +00:00
2017-10-09 14:38:12 +00:00
var $highlightShows = getAll('.highlight .bd-show');
2017-10-09 11:27:08 +00:00
$highlightShows.forEach(function ($el) {
$el.addEventListener('click', function () {
2017-10-09 14:38:12 +00:00
$el.parentNode.parentNode.classList.remove('bd-is-more-clipped');
2017-10-09 11:27:08 +00:00
});
});
2017-07-02 15:52:20 +00:00
}
2018-02-13 11:15:12 +00:00
setTimeout(function () {
new Clipboard('.bd-copy', {
target: function target(trigger) {
return trigger.previousElementSibling.firstElementChild;
}
});
}, 100);
2017-07-02 15:52:20 +00:00
// Functions
function getAll(selector) {
return Array.prototype.slice.call(document.querySelectorAll(selector), 0);
}
2017-07-29 13:59:10 +00:00
2017-10-26 18:47:48 +00:00
// Scrolling
2018-04-10 22:52:51 +00:00
var html_el = document.documentElement;
2017-10-26 18:47:48 +00:00
var navbarEl = document.getElementById('navbar');
var navbarBurger = document.getElementById('navbarBurger');
var specialShadow = document.getElementById('specialShadow');
2017-11-07 14:03:21 +00:00
var NAVBAR_HEIGHT = 52;
var THRESHOLD = 160;
var horizon = NAVBAR_HEIGHT;
2017-10-26 18:47:48 +00:00
var whereYouStoppedScrolling = 0;
var scrollFactor = 0;
2017-11-07 14:03:21 +00:00
var currentTranslate = 0;
2017-10-26 18:47:48 +00:00
2018-04-11 00:14:29 +00:00
// Anchors highlight
var past_anchors = [];
anchor_links_el.reverse();
var trigger_offset = 24; // In pixels
var typo_el = document.getElementById('typo');
function whenScrolling() {
2018-04-10 22:52:51 +00:00
if (anchors_ref_el) {
var bounds = anchors_ref_el.getBoundingClientRect();
2018-04-11 00:14:29 +00:00
var anchors_height = anchors_el.clientHeight;
var typo_bounds = typo_el.getBoundingClientRect();
var typo_height = typo_el.clientHeight;
2018-04-10 22:52:51 +00:00
2018-04-11 00:14:29 +00:00
if (bounds.top < 1 && typo_bounds.top - anchors_height + typo_height > 0) {
2018-04-10 22:52:51 +00:00
anchors_el.classList.add('is-pinned');
} else {
anchors_el.classList.remove('is-pinned');
}
2018-04-11 00:14:29 +00:00
anchor_links_el.some(function (el) {
var bounds = el.getBoundingClientRect();
var href = el.getAttribute('href');
var key = href.substring(1); // #target -> target
if (bounds.top < 1 + trigger_offset && past_anchors.indexOf(key) == -1) {
past_anchors.push(key);
highlightAnchor();
return;
} else if (bounds.top > 0 + trigger_offset && past_anchors.indexOf(key) != -1) {
removeFromArray(past_anchors, key);
highlightAnchor();
return;
}
});
2018-04-10 22:52:51 +00:00
}
}
2018-04-11 00:14:29 +00:00
function highlightAnchor() {
var future_anchors = anchors_order.diff(past_anchors);
var highest_index = -1;
var highest_anchor_key = '';
if (past_anchors.length > 0) {
past_anchors.forEach(function (key, index) {
var anchor = anchors_by_id[key];
anchor.nav_el.className = 'is-past';
// Keep track of the bottom most item
if (anchor.index > highest_index) {
highest_index = anchor.index;
highest_anchor_key = key;
}
});
if (highest_anchor_key in anchors_by_id) {
anchors_by_id[highest_anchor_key].nav_el.className = 'is-current';
}
}
if (future_anchors.length > 0) {
future_anchors.forEach(function (key, index) {
var anchor = anchors_by_id[key];
anchor.nav_el.className = '';
});
}
}
// Scroll
2017-10-26 18:47:48 +00:00
function upOrDown(lastY, currentY) {
if (currentY >= lastY) {
return goingDown(currentY);
}
return goingUp(currentY);
2017-07-29 13:59:10 +00:00
}
2017-10-26 18:47:48 +00:00
function goingDown(currentY) {
2017-11-07 14:03:21 +00:00
var trigger = NAVBAR_HEIGHT;
2017-10-26 18:47:48 +00:00
whereYouStoppedScrolling = currentY;
if (currentY > horizon) {
horizon = currentY;
}
2017-11-07 14:03:21 +00:00
translateHeader(currentY, false);
2017-07-29 13:59:10 +00:00
}
2017-10-26 18:47:48 +00:00
function goingUp(currentY) {
var trigger = 0;
2017-11-07 14:03:21 +00:00
if (currentY < whereYouStoppedScrolling - NAVBAR_HEIGHT) {
horizon = currentY + NAVBAR_HEIGHT;
2017-07-29 13:59:10 +00:00
}
2017-10-26 18:47:48 +00:00
2017-11-07 14:03:21 +00:00
translateHeader(currentY, true);
2017-07-29 13:59:10 +00:00
}
2017-10-26 18:47:48 +00:00
function constrainDelta(delta) {
2017-11-07 14:03:21 +00:00
return Math.max(0, Math.min(delta, NAVBAR_HEIGHT));
2017-10-26 18:47:48 +00:00
}
2017-11-07 14:03:21 +00:00
function translateHeader(currentY, upwards) {
// let topTranslateValue;
var translateValue = void 0;
2017-10-26 18:47:48 +00:00
2017-11-07 14:03:21 +00:00
if (upwards && currentTranslate == 0) {
translateValue = 0;
} else if (currentY <= NAVBAR_HEIGHT) {
translateValue = currentY * -1;
} else {
var delta = constrainDelta(Math.abs(currentY - horizon));
translateValue = delta - NAVBAR_HEIGHT;
}
if (translateValue != currentTranslate) {
var navbarStyle = '\n transform: translateY(' + translateValue + 'px);\n ';
currentTranslate = translateValue;
navbarEl.setAttribute('style', navbarStyle);
}
if (currentY > THRESHOLD * 2) {
2017-10-26 18:47:48 +00:00
scrollFactor = 1;
2017-11-07 14:03:21 +00:00
} else if (currentY > THRESHOLD) {
scrollFactor = (currentY - THRESHOLD) / THRESHOLD;
2017-10-26 18:47:48 +00:00
} else {
2017-10-26 19:00:25 +00:00
scrollFactor = 0;
2017-10-26 18:47:48 +00:00
}
2017-11-07 14:03:21 +00:00
var translateFactor = 1 + translateValue / NAVBAR_HEIGHT;
2018-04-09 00:12:55 +00:00
if (specialShadow) {
specialShadow.style.opacity = scrollFactor;
specialShadow.style.transform = 'scaleY(' + translateFactor + ')';
}
2017-10-26 18:47:48 +00:00
}
2018-04-10 22:52:51 +00:00
var ticking = false;
var lastY = 0;
2017-10-26 18:47:48 +00:00
2018-04-10 22:52:51 +00:00
window.addEventListener('scroll', function () {
var currentY = window.scrollY;
2017-11-07 14:03:21 +00:00
2018-04-10 22:52:51 +00:00
if (!ticking) {
window.requestAnimationFrame(function () {
// upOrDown(lastY, currentY);
2018-04-11 00:14:29 +00:00
whenScrolling();
2018-04-10 22:52:51 +00:00
ticking = false;
lastY = currentY;
});
}
2017-10-26 18:47:48 +00:00
2018-04-10 22:52:51 +00:00
ticking = true;
});
2018-04-11 00:14:29 +00:00
// Utils
function removeFromArray(array, value) {
if (array.includes(value)) {
var value_index = array.indexOf(value);
array.splice(value_index, 1);
}
return array;
}
Array.prototype.diff = function (a) {
return this.filter(function (i) {
return a.indexOf(i) < 0;
});
};
2017-07-01 17:30:39 +00:00
});