hexo-theme-stellar/source/js/main.js

276 lines
7.7 KiB
JavaScript
Raw Normal View History

2021-04-01 22:36:26 +08:00
console.log('hexo-theme-stellar:\n' + stellar.github);
2021-02-21 17:27:48 +08:00
// utils
const util = {
2021-02-19 23:33:19 +08:00
2021-02-21 17:27:48 +08:00
// https://github.com/jerryc127/hexo-theme-butterfly
diffDate: (d, more = false) => {
const dateNow = new Date()
const datePost = new Date(d)
const dateDiff = dateNow.getTime() - datePost.getTime()
const minute = 1000 * 60
const hour = minute * 60
const day = hour * 24
const month = day * 30
let result
if (more) {
const monthCount = dateDiff / month
const dayCount = dateDiff / day
const hourCount = dateDiff / hour
const minuteCount = dateDiff / minute
if (monthCount > 12) {
result = null
} else if (monthCount >= 1) {
result = parseInt(monthCount) + ' ' + stellar.config.date_suffix.month
} else if (dayCount >= 1) {
result = parseInt(dayCount) + ' ' + stellar.config.date_suffix.day
} else if (hourCount >= 1) {
result = parseInt(hourCount) + ' ' + stellar.config.date_suffix.hour
} else if (minuteCount >= 1) {
result = parseInt(minuteCount) + ' ' + stellar.config.date_suffix.min
} else {
result = stellar.config.date_suffix.just
2021-02-20 14:56:07 +08:00
}
2021-02-21 17:27:48 +08:00
} else {
result = parseInt(dateDiff / day)
2021-02-20 14:56:07 +08:00
}
2021-02-21 17:27:48 +08:00
return result
},
2021-02-27 20:08:36 +08:00
copy: (id, msg) => {
const el = document.getElementById(id);
2021-02-25 13:12:04 +08:00
if (el) {
el.select();
document.execCommand("Copy");
2021-02-27 21:50:18 +08:00
if (msg && msg.length > 0) {
hud.toast(msg);
}
2021-02-25 13:12:04 +08:00
}
},
2021-02-27 20:08:36 +08:00
toggle: (id) => {
const el = document.getElementById(id);
2021-02-25 13:12:04 +08:00
if (el) {
el.classList.toggle("display");
}
},
2021-02-19 23:33:19 +08:00
}
2021-02-27 20:08:36 +08:00
const hud = {
toast: (msg, duration) => {
duration=isNaN(duration)?2000:duration;
var el = document.createElement('div');
el.classList.add('toast');
el.innerHTML = msg;
document.body.appendChild(el);
setTimeout(function() {
var d = 0.5;
el.style.webkitTransition = '-webkit-transform ' + d + 's ease-in, opacity ' + d + 's ease-in';
el.style.opacity = '0';
setTimeout(function() { document.body.removeChild(el) }, d * 1000);
}, duration);
},
}
2021-02-21 17:27:48 +08:00
// defines
const l_body = document.querySelector('.l_body');
const sidebar = {
toggle: () => {
if (l_body) {
l_body.classList.add('mobile');
l_body.classList.toggle("sidebar");
}
}
}
const init = {
toc: () => {
2021-03-13 23:31:52 +08:00
stellar.jQuery(() => {
2021-02-21 17:27:48 +08:00
const scrollOffset = 32;
var segs = [];
$("article.md :header").each(function (idx, node) {
segs.push(node)
});
// 滚动
$(document, window).scroll(function(e) {
var scrollTop = $(this).scrollTop();
var topSeg = null
for (var idx in segs) {
var seg = $(segs[idx])
if (seg.offset().top > scrollTop + scrollOffset) {
continue
}
if (!topSeg) {
topSeg = seg
} else if (seg.offset().top >= topSeg.offset().top) {
topSeg = seg
}
}
if (topSeg) {
$("#toc a.toc-link").removeClass("active")
var link = "#" + topSeg.attr("id")
if (link != '#undefined') {
$('#toc a.toc-link[href="' + encodeURI(link) + '"]').addClass("active")
} else {
$('#toc a.toc-link:first').addClass("active")
}
}
})
})
},
sidebar: () => {
2021-03-13 23:31:52 +08:00
stellar.jQuery(() => {
2021-02-21 17:27:48 +08:00
$("#toc a.toc-link").click(function(e) {
l_body.classList.remove("sidebar");
});
})
},
relativeDate: (selector) => {
selector.forEach(item => {
const $this = item
const timeVal = $this.getAttribute('datetime')
let relativeValue = util.diffDate(timeVal, true)
if (relativeValue) {
$this.innerText = relativeValue
}
})
2021-03-08 17:54:23 +08:00
},
/**
* Tabs tag listener (without twitter bootstrap).
*/
registerTabsTag: function() {
// Binding `nav-tabs` & `tab-content` by real time permalink changing.
document.querySelectorAll('.tabs ul.nav-tabs .tab').forEach(element => {
element.addEventListener('click', event => {
event.preventDefault();
// Prevent selected tab to select again.
if (element.classList.contains('active')) return;
// Add & Remove active class on `nav-tabs` & `tab-content`.
[...element.parentNode.children].forEach(target => {
target.classList.toggle('active', target === element);
});
// https://stackoverflow.com/questions/20306204/using-queryselector-with-ids-that-are-numbers
const tActive = document.getElementById(element.querySelector('a').getAttribute('href').replace('#', ''));
[...tActive.parentNode.children].forEach(target => {
target.classList.toggle('active', target === tActive);
});
// Trigger event
tActive.dispatchEvent(new Event('tabs:click', {
bubbles: true
}));
});
});
window.dispatchEvent(new Event('tabs:register'));
},
2021-02-21 17:27:48 +08:00
}
// init
init.toc()
init.sidebar()
init.relativeDate(document.querySelectorAll('#post-meta time'))
2021-03-08 17:54:23 +08:00
init.registerTabsTag()
2021-02-21 17:27:48 +08:00
// scrollreveal
if (stellar.plugins.scrollreveal) {
2021-03-13 23:31:52 +08:00
stellar.loadScript(stellar.plugins.scrollreveal.js).then(function () {
2021-02-21 17:27:48 +08:00
ScrollReveal().reveal("body .reveal", {
distance: stellar.plugins.scrollreveal.distance,
duration: stellar.plugins.scrollreveal.duration,
interval: stellar.plugins.scrollreveal.interval,
scale: stellar.plugins.scrollreveal.scale,
2021-07-13 22:25:24 +08:00
easing: "ease-out"
2021-02-21 17:27:48 +08:00
});
})
}
// lazyload
if (stellar.plugins.lazyload) {
2021-03-13 23:31:52 +08:00
stellar.loadScript(stellar.plugins.lazyload.js, {defer:true})
2021-02-21 17:27:48 +08:00
// https://www.npmjs.com/package/vanilla-lazyload
// Set the options globally
// to make LazyLoad self-initialize
window.lazyLoadOptions = {
2021-03-04 23:38:41 +08:00
elements_selector: ".lazy",
2021-02-21 17:27:48 +08:00
};
// Listen to the initialization event
// and get the instance of LazyLoad
window.addEventListener(
"LazyLoad::Initialized",
function (event) {
window.lazyLoadInstance = event.detail.instance;
},
false
);
document.addEventListener('DOMContentLoaded', function () {
lazyLoadInstance.update();
2021-02-19 23:33:19 +08:00
});
}
2021-02-21 17:27:48 +08:00
// issuesjs
2021-03-03 22:05:29 +08:00
if (stellar.plugins.sitesjs) {
const issues_api = document.getElementById('sites-api');
2021-02-21 17:27:48 +08:00
if (issues_api != undefined) {
2021-03-13 23:31:52 +08:00
stellar.jQuery( () => {
stellar.loadScript(stellar.plugins.sitesjs, {defer:true})
2021-03-03 22:05:29 +08:00
})
}
}
if (stellar.plugins.friendsjs) {
const issues_api = document.getElementById('friends-api');
if (issues_api != undefined) {
2021-03-13 23:31:52 +08:00
stellar.jQuery( () => {
stellar.loadScript(stellar.plugins.friendsjs, {defer:true})
2021-02-21 18:56:56 +08:00
})
2021-02-21 17:27:48 +08:00
}
}
2021-02-20 14:56:07 +08:00
2021-02-21 17:27:48 +08:00
// swiper
if (stellar.plugins.swiper) {
const swiper_api = document.getElementById('swiper-api');
if (swiper_api != undefined) {
2021-03-13 23:31:52 +08:00
stellar.loadCSS(stellar.plugins.swiper.css);
stellar.loadScript(stellar.plugins.swiper.js, {defer:true}).then(function () {
2021-02-21 17:27:48 +08:00
var swiper = new Swiper('.swiper-container', {
slidesPerView: 'auto',
spaceBetween: 8,
centeredSlides: true,
2021-02-22 22:03:02 +08:00
loop: true,
2021-02-21 17:27:48 +08:00
pagination: {
el: '.swiper-pagination',
clickable: true,
},
navigation: {
nextEl: '.swiper-button-next',
prevEl: '.swiper-button-prev',
},
});
})
}
}
// preload
if (stellar.plugins.preload) {
if (stellar.plugins.preload.service == 'instant_page') {
2021-03-13 23:31:52 +08:00
stellar.loadScript(stellar.plugins.preload.instant_page, {
2021-02-21 18:48:38 +08:00
defer: true,
type: 'module',
2021-02-21 17:27:48 +08:00
integrity: 'sha384-OeDn4XE77tdHo8pGtE1apMPmAipjoxUQ++eeJa6EtJCfHlvijigWiJpD7VDPWXV1'
})
} else if (stellar.plugins.preload.service == 'flying_pages') {
window.FPConfig = {
delay: 0,
ignoreKeywords: [],
maxRPS: 5,
hoverDelay: 25
};
2021-03-13 23:31:52 +08:00
stellar.loadScript(stellar.plugins.preload.flying_pages, {defer:true})
2021-02-21 17:27:48 +08:00
}
}