123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405 |
- (function toggleColorModes(){
- const light = 'lit';
- const dark = 'dim';
- const storageKey = 'colorMode';
- const key = '--color-mode';
- const data = 'data-mode';
- const bank = window.localStorage;
- function currentMode() {
- let acceptableChars = light + dark;
- acceptableChars = [...acceptableChars];
- let mode = getComputedStyle(doc).getPropertyValue(key).replace(/\"/g, '').trim();
- mode = [...mode].filter(function(letter){
- return acceptableChars.includes(letter);
- });
- return mode.join('');
- }
- function changeMode(isDarkMode) {
- if(isDarkMode) {
- bank.setItem(storageKey, light)
- elemAttribute(doc, data, light);
- } else {
- bank.setItem(storageKey, dark);
- elemAttribute(doc, data, dark);
- }
- }
- function setUserColorMode(mode = false) {
- const isDarkMode = currentMode() == dark;
- const storedMode = bank.getItem(storageKey);
- if(storedMode) {
- if(mode) {
- changeMode(isDarkMode);
- } else {
- elemAttribute(doc, data, storedMode);
- }
- } else {
- if(mode === true) {
- changeMode(isDarkMode)
- }
- }
- }
- setUserColorMode();
- doc.addEventListener('click', function(event) {
- let target = event.target;
- let modeClass = 'color_choice';
- let animateClass = 'color_animate';
- let isModeToggle = containsClass(target, modeClass);
- if(isModeToggle) {
- pushClass(target, animateClass);
- setUserColorMode(true);
- }
- });
- })();
- function fileClosure(){
- (function updateDate() {
- const date = new Date();
- const year = date.getFullYear();
- const yearEl = elem('.year');
- yearEl ? yearEl.innerHTML = year : false;
- })();
- (function makeExternalLinks(){
- let links = elems('a');
- if(links) {
- Array.from(links).forEach(function(link){
- let target, rel, blank, noopener, attr1, attr2, url, isExternal;
- url = elemAttribute(link, 'href');
- isExternal = (url && typeof url == 'string' && url.startsWith('http')) && !url.startsWith(parentURL) ? true : false;
- if(isExternal) {
- target = 'target';
- rel = 'rel';
- blank = '_blank';
- noopener = 'noopener';
- attr1 = elemAttribute(link, target);
- attr2 = elemAttribute(link, noopener);
- attr1 ? false : elemAttribute(link, target, blank);
- attr2 ? false : elemAttribute(link, rel, noopener);
- }
- });
- }
- })();
- let headingNodes = [], results, link, icon, current, id,
- tags = ['h2', 'h3', 'h4', 'h5', 'h6'];
- current = document.URL;
- tags.forEach(function(tag){
- const article = elem('.post_content');
- if (article) {
- results = article.getElementsByTagName(tag);
- Array.prototype.push.apply(headingNodes, results);
- }
- });
- headingNodes.forEach(function(node){
- link = createEl('a');
- loadSvg('link', link);
- link.className = 'link icon';
- id = node.getAttribute('id');
- if(id) {
- link.href = `${current}#${id}`;
- node.appendChild(link);
- pushClass(node, 'link_owner');
- }
- });
- let inlineListItems = elems('ol li');
- if(inlineListItems) {
- inlineListItems.forEach(function(listItem){
- let firstChild = listItem.children[0]
- let containsHeading = isMatch(firstChild, tags);
- containsHeading ? pushClass(listItem, 'align') : false;
- })
- }
- function copyFeedback(parent) {
- const copyText = document.createElement('div');
- const yanked = 'link_yanked';
- copyText.classList.add(yanked);
- copyText.innerText = 'Link Copied';
- if(!elem(`.${yanked}`, parent)) {
- parent.appendChild(copyText);
- setTimeout(function() {
- parent.removeChild(copyText)
- }, 3000);
- }
- }
- (function copyHeadingLink() {
- let deeplink, deeplinks, newLink, parent, target;
- deeplink = 'link';
- deeplinks = elems(`.${deeplink}`);
- if(deeplinks) {
- document.addEventListener('click', function(event)
- {
- target = event.target;
- parent = target.parentNode;
- if (target && containsClass(target, deeplink) || containsClass(parent, deeplink)) {
- event.preventDefault();
- newLink = target.href != undefined ? target.href : target.parentNode.href;
- copyToClipboard(newLink);
- target.href != undefined ? copyFeedback(target) : copyFeedback(target.parentNode);
- }
- });
- }
- })();
- (function copyLinkToShare() {
- let copy, copied, excerpt, isCopyIcon, isInExcerpt, link, postCopy, postLink, target;
- copy = 'copy';
- copied = 'copy_done';
- excerpt = 'excerpt';
- postCopy = 'post_copy';
- postLink = 'post_card';
- doc.addEventListener('click', function(event) {
- target = event.target;
- isCopyIcon = containsClass(target, copy);
- let isWithinCopyIcon = target.closest(`.${copy}`);
- if (isCopyIcon || isWithinCopyIcon) {
- let icon = isCopyIcon ? isCopyIcon : isWithinCopyIcon;
- isInExcerpt = containsClass(icon, postCopy);
- if (isInExcerpt) {
- link = target.closest(`.${excerpt}`).previousElementSibling;
- link = containsClass(link, postLink)? elemAttribute(link, 'href') : false;
- } else {
- link = window.location.href;
- }
- if(link) {
- copyToClipboard(link);
- pushClass(icon, copied);
- }
- }
- const yankLink = '.link_yank';
- const isCopyLink = target.matches(yankLink);
- const isCopyLinkIcon = target.closest(yankLink);
- if(isCopyLink || isCopyLinkIcon) {
- event.preventDefault();
- const yankContent = isCopyLinkIcon ? elemAttribute(target.closest(yankLink), 'href') : elemAttribute(target, 'href');
- copyToClipboard(yankContent);
- isCopyLink ? copyFeedback(target) : copyFeedback(target.parentNode);
- }
- });
- })();
- (function hideAside(){
- let aside, title, posts;
- aside = elem('.aside');
- title = aside ? aside.previousElementSibling : null;
- if(aside && title.nodeName.toLowerCase() === 'h3') {
- posts = Array.from(aside.children);
- posts.length < 1 ? title.remove() : false;
- }
- })();
- (function goBack() {
- let backBtn = elem('.btn_back');
- let history = window.history;
- if (backBtn) {
- backBtn.addEventListener('click', function(){
- history.back();
- });
- }
- })();
- function showingImagePosition(){
- // whether or not to track image position for non-linear images within the article body element.
- const thisPage = document.documentElement;
- let showImagePositionOnPage = thisPage.dataset.figures;
- if(showImagePositionOnPage) {
- showImagePosition = showImagePositionOnPage;
- }
- return showImagePosition === "true" ? true : false;
- }
- function largeImages(baseParent, images = []) {
- if(images) {
- images.forEach(function(image) {
- image.addEventListener('load', function(){
- let actualWidth = image.naturalWidth;
- let parentWidth = baseParent.offsetWidth;
- let actionableRatio = actualWidth / parentWidth;
- if (actionableRatio > 1) {
- pushClass(image, "image-scalable");
- image.dataset.scale = actionableRatio;
- let figure = createEl('figure');
- wrapEl(image, figure)
- }
- });
- })
- }
- }
- doc.addEventListener('click', function(event) {
- let target = event.target;
- isClickableImage = target.matches('.image-scalable');
- let isFigure = target.matches('figure');
- if(isFigure) {
- let hasClickableImage = containsClass(target.children[0], 'image-scalable');
- if(hasClickableImage) {
- modifyClass(target, 'image-scale');
- }
- }
- if(isClickableImage) {
- let figure = target.parentNode;
- modifyClass(figure, 'image-scale');
- }
- });
- const tables = elems('table');
- if (tables) {
- const scrollable = 'scrollable';
- tables.forEach(function(table) {
- const wrapper = createEl();
- wrapper.className = scrollable;
- wrapEl(table, wrapper);
- });
- }
- function toggleTags(target = null) {
- const tagsButtonClass = 'post_tags_toggle';
- const tagsButtonClass2 = 'tags_hide';
- const tagsShowClass = 'jswidgetopen';
- const postTagsWrapper = elem(`.${tagsShowClass}`);
- target = target === null ? postTagsWrapper : target;
- const showingAllTags = target.matches(`.${tagsShowClass}`);
- const isExandButton = target.matches(`.${tagsButtonClass}`);
- const isCloseButton = target.matches(`.${tagsButtonClass2}`) || target.closest(`.${tagsButtonClass2}`);
- const isButton = isExandButton || isCloseButton;
- const isActionable = isButton || showingAllTags;
- if(isActionable) {
- if(isButton) {
- if(isExandButton) {
- let allTagsWrapper = target.nextElementSibling
- pushClass(allTagsWrapper, tagsShowClass);
- } else {
- deleteClass(postTagsWrapper, tagsShowClass);
- }
- } else {
- isActionable ? deleteClass(target, tagsShowClass) : false;
- }
- }
- }
- (function showAllPostTags(){
- doc.addEventListener('click', function(event){
- const target = event.target;
- toggleTags(target)
- });
- horizontalSwipe(doc, toggleTags, 'left');
- })();
- (function navToggle() {
- doc.addEventListener('click', function(event){
- const target = event.target;
- const open = 'jsopen';
- const navCloseIconClass = '.nav_close';
- const navClose = elem(navCloseIconClass);
- const isNavToggle = target.matches(navCloseIconClass) || target.closest(navCloseIconClass);
- const harmburgerIcon = navClose.firstElementChild.firstElementChild;
- if(isNavToggle) {
- event.preventDefault();
- modifyClass(doc, open);
- modifyClass(harmburgerIcon, 'isopen');
- }
- if(!target.closest('.nav') && elem(`.${open}`)) {
- modifyClass(doc, open);
- let navIsOpen = containsClass(doc, open);
- !navIsOpen ? modifyClass(harmburgerIcon, 'isopen') : false;
- }
- const navItem = 'nav_item';
- const navSub = 'nav_sub';
- const showSub = 'nav_open';
- const isNavItem = target.matches(`.${navItem}`);
- const isNavItemIcon = target.closest(`.${navItem}`)
- if(isNavItem || isNavItemIcon) {
- const thisItem = isNavItem ? target : isNavItemIcon;
- const hasNext = thisItem.nextElementSibling
- const hasSubNav = hasNext ? hasNext.matches(`.${navSub}`) : null;
- if (hasSubNav) {
- event.preventDefault();
- Array.from(thisItem.parentNode.parentNode.children).forEach(function(item){
- const targetItem = item.firstElementChild;
- targetItem != thisItem ? deleteClass(targetItem, showSub) : false;
- });
- modifyClass(thisItem, showSub);
- }
- }
- });
- })();
- function isMobileDevice() {
- const agent = navigator.userAgent.toLowerCase();
- const isMobile = agent.includes('android') || agent.includes('iphone');
- return isMobile;
- };
- (function ifiOS(){
- // modify backto top button
- const backToTopButton = elem('.to_top');
- const thisOS = getMobileOperatingSystem();
- const ios = 'ios';
- if(backToTopButton && thisOS === 'iOS') {
- pushClass(backToTopButton, ios);
- }
- if(!isMobileDevice()){
- backToTopButton.style.right = `100px`;
- }
- })();
- (function sortTags() {
- doc.addEventListener('click', function(event){
- const active = 'active';
- const target = event.target;
- const isSortButton = target.matches('.tags_sort') || target.matches('.tags_sort span');
- if(isSortButton) {
- const tagsList = target.closest('.tags_list');
- const sortButton = elem('.tags_sort', tagsList);
- modifyClass(sortButton, 'sorted');
- const tags = elems('.post_tag', tagsList);
- Array.from(tags).forEach(function(tag){
- const order = tag.dataset.position;
- const reverseSorting = containsClass(tag, active);
- tag.style.order = reverseSorting ? 0 : -order;
- modifyClass(tag, active);
- })
- }
- })
- })();
- (function shareViaLinkedin() {
- doc.addEventListener('click', function(event){
- const linkedin = '.linkedin';
- const target = event.target;
- if(target.matches(linkedin) || target.closest(linkedin)) {
- window.open('http://www.linkedin.com/shareArticle?mini=true&url='+encodeURIComponent(window.location.href), '', 'left=0,top=0,width=650,height=420,personalbar=0,toolbar=0,scrollbars=0,resizable=0');
- }
- });
- })();
- // add new code above this line
- }
- window.addEventListener('load', fileClosure());
|