jekyll-theme-h2o-ac 1.2.1 → 1.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +5 -4
- data/_config.yml +4 -1
- data/_data/collections.yml +11 -0
- data/_data/locales/en.yml +6 -0
- data/_data/locales/ja.yml +6 -0
- data/_data/locales/zh-Hans.yml +6 -0
- data/_data/locales/zh-Hant.yml +6 -0
- data/_includes/calendar.html +31 -0
- data/_includes/footer.html +52 -31
- data/_includes/head.html +4 -0
- data/_includes/header.html +1 -1
- data/_includes/mathjax.html +4 -9
- data/_includes/paginate-article.html +1 -1
- data/_includes/sidebar.html +21 -4
- data/_includes/submenu.html +20 -0
- data/_includes/waline.html +1 -1
- data/_layouts/archives.html +25 -0
- data/_layouts/default.html +10 -2
- data/_layouts/links.html +14 -4
- data/_layouts/post.html +7 -55
- data/_layouts/stats.html +22 -0
- data/assets/css/app.min.css +1 -2591
- data/assets/css/app.min.css.map +1 -1
- data/assets/css/cv.min.css +1 -279
- data/assets/css/cv.min.css.map +1 -1
- data/assets/js/app.min.js +1 -686
- data/assets/js/app.min.js.LICENSE.txt +15 -0
- data/assets/js/app.min.js.map +1 -1
- metadata +7 -2
data/assets/js/app.min.js
CHANGED
@@ -1,686 +1 @@
|
|
1
|
-
/******/ (() => { // webpackBootstrap
|
2
|
-
/******/ var __webpack_modules__ = ({
|
3
|
-
|
4
|
-
/***/ "./dev/js/index.js":
|
5
|
-
/*!*************************!*\
|
6
|
-
!*** ./dev/js/index.js ***!
|
7
|
-
\*************************/
|
8
|
-
/***/ (() => {
|
9
|
-
|
10
|
-
$(document).ready(function () {
|
11
|
-
document.body.addEventListener('touchstart', function () {}, { passive: true });
|
12
|
-
|
13
|
-
var nav = $('.g-nav');
|
14
|
-
var baseurl = $("meta[property='og:baseurl']").attr('content');
|
15
|
-
var logo = $('.g-logo');
|
16
|
-
var themeStyle = $('.g-banner').attr('data-theme');
|
17
|
-
logo.css({
|
18
|
-
'background': 'url(' + baseurl + '/assets/icons/' + themeStyle + '.svg) no-repeat center',
|
19
|
-
'background-size': '100% 100%'
|
20
|
-
});
|
21
|
-
|
22
|
-
/**
|
23
|
-
* Cookie Tips
|
24
|
-
*/
|
25
|
-
var cookieconsent_status = getCookie("cookieconsent_status");
|
26
|
-
if (cookieconsent_status) {
|
27
|
-
$('.cookie-tip').removeClass('active');
|
28
|
-
} else {
|
29
|
-
$('.cookie-tip').addClass('active');
|
30
|
-
}
|
31
|
-
$('#accept-tos').on('click', function () {
|
32
|
-
setCookie("cookieconsent_status", "allow", 365);
|
33
|
-
$('.cookie-tip').removeClass('active');
|
34
|
-
});
|
35
|
-
|
36
|
-
/**
|
37
|
-
* Fix table for small screens
|
38
|
-
*/
|
39
|
-
$("table").wrap("<div class='table-area'></div>");
|
40
|
-
|
41
|
-
|
42
|
-
/**
|
43
|
-
* Responsive Navigation
|
44
|
-
*/
|
45
|
-
$('#menu-toggle').on('click', function (e) {
|
46
|
-
var duration = 200;
|
47
|
-
nav.slideToggle(duration);
|
48
|
-
$(document).on('click', function () {
|
49
|
-
nav.slideUp(duration);
|
50
|
-
});
|
51
|
-
e.stopPropagation();
|
52
|
-
});
|
53
|
-
|
54
|
-
nav.on('click', function (e) {
|
55
|
-
e.stopPropagation();
|
56
|
-
});
|
57
|
-
|
58
|
-
$(".g-nav li.dropdown").on("click", function () {
|
59
|
-
$(".g-nav li.dropdown").not($(this)).children("ul.dropdown-menu").removeClass("show");
|
60
|
-
$(".g-nav li.dropdown").not($(this)).children("a.dropdown-toggle").removeClass("show");
|
61
|
-
$(this).children("a.dropdown-toggle").toggleClass("show");
|
62
|
-
$(this).children("ul.dropdown-menu").toggleClass("show");
|
63
|
-
});
|
64
|
-
$(document).on("click", function () {
|
65
|
-
$(".g-nav li.dropdown").children("a.dropdown-toggle").removeClass("show");
|
66
|
-
$(".g-nav li.dropdown").children("ul.dropdown-menu").removeClass("show");
|
67
|
-
});
|
68
|
-
|
69
|
-
/**
|
70
|
-
* Header Bar
|
71
|
-
*/
|
72
|
-
if ($(window).width() > 695) {
|
73
|
-
var header = $('.g-header');
|
74
|
-
var headerHeight = header.outerHeight();
|
75
|
-
var navText = nav.find('a');
|
76
|
-
var scFlag = $(document).scrollTop();
|
77
|
-
var logo = $('.g-logo');
|
78
|
-
var themeStyle = $('.g-banner').attr('data-theme');
|
79
|
-
|
80
|
-
$(document).scroll(function () {
|
81
|
-
var scrollTop = $(this).scrollTop();
|
82
|
-
var navClassName = 'nav-' + themeStyle;
|
83
|
-
if (scrollTop > headerHeight) {
|
84
|
-
if (scrollTop > 3 * headerHeight) {
|
85
|
-
header.addClass('headerUp');
|
86
|
-
}
|
87
|
-
header.css({
|
88
|
-
'background-color': 'rgba(255, 255, 255, .98)',
|
89
|
-
'box-shadow': '0 1px 12px rgba(0, 0, 0, .08)'
|
90
|
-
});
|
91
|
-
logo.css({
|
92
|
-
'background': 'url(' + baseurl + '/assets/icons/' + themeStyle + '.svg) no-repeat center',
|
93
|
-
'background-size': '100% 100%'
|
94
|
-
});
|
95
|
-
navText.addClass('color-f-gray');
|
96
|
-
nav.addClass(navClassName);
|
97
|
-
} else {
|
98
|
-
header.removeClass('headerUp');
|
99
|
-
// console.log("rm up");
|
100
|
-
$('#bttb').removeClass("active");
|
101
|
-
header.css({
|
102
|
-
'background-color': 'transparent',
|
103
|
-
'box-shadow': 'none'
|
104
|
-
});
|
105
|
-
logo.css({
|
106
|
-
'background': 'url(' + baseurl + '/assets/icons/' + themeStyle + '.svg) no-repeat center',
|
107
|
-
'background-size': '100% 100%'
|
108
|
-
});
|
109
|
-
navText.removeClass('color-f-gray');
|
110
|
-
nav.removeClass(navClassName);
|
111
|
-
}
|
112
|
-
|
113
|
-
// scroll action
|
114
|
-
if (scFlag > scrollTop) {
|
115
|
-
header.addClass('headerDown');
|
116
|
-
if (header.hasClass('headerUp')) {
|
117
|
-
$('#bttb').addClass("active");
|
118
|
-
}
|
119
|
-
} else {
|
120
|
-
header.removeClass('headerDown');
|
121
|
-
$('#bttb').removeClass("active");
|
122
|
-
}
|
123
|
-
scFlag = scrollTop;
|
124
|
-
});
|
125
|
-
} else {
|
126
|
-
var header = $('.g-header');
|
127
|
-
var headerHeight = header.outerHeight();
|
128
|
-
var scFlag = $(document).scrollTop();
|
129
|
-
$(document).scroll(function () {
|
130
|
-
var scrollTop = $(this).scrollTop();
|
131
|
-
|
132
|
-
if (scrollTop < 100) {
|
133
|
-
$('#bttb').removeClass("active");
|
134
|
-
}
|
135
|
-
|
136
|
-
// scroll action
|
137
|
-
if (scFlag > scrollTop && scFlag > 5) {
|
138
|
-
$('#bttb').addClass("active");
|
139
|
-
} else {
|
140
|
-
$('#bttb').removeClass("active");
|
141
|
-
}
|
142
|
-
scFlag = scrollTop;
|
143
|
-
});
|
144
|
-
}
|
145
|
-
|
146
|
-
/**
|
147
|
-
* List for contents
|
148
|
-
*/
|
149
|
-
|
150
|
-
function clickMobileList() {
|
151
|
-
$('.table-of-contents').toggleClass("active");
|
152
|
-
var mode = getCookie("mode");
|
153
|
-
if (mode == "night") {
|
154
|
-
$('.mobile-list .icon.list.night').toggleClass('active');
|
155
|
-
$('.mobile-list .icon.exit.night').toggleClass('active');
|
156
|
-
} else {
|
157
|
-
$('.mobile-list .icon.list.day').toggleClass('active');
|
158
|
-
$('.mobile-list .icon.exit.day').toggleClass('active');
|
159
|
-
}
|
160
|
-
}
|
161
|
-
|
162
|
-
$('.mobile-list').bind('click', function () {
|
163
|
-
clickMobileList();
|
164
|
-
});
|
165
|
-
|
166
|
-
$(".table-of-contents").on('click', function () {
|
167
|
-
clickMobileList();
|
168
|
-
});
|
169
|
-
|
170
|
-
|
171
|
-
/**
|
172
|
-
* Back To Top Button
|
173
|
-
*/
|
174
|
-
$('.bttb').bind('click', function () {
|
175
|
-
$('html,body').animate({ scrollTop: 0 }, function () {
|
176
|
-
$('#bttb').removeClass("active");
|
177
|
-
});
|
178
|
-
});
|
179
|
-
|
180
|
-
/**
|
181
|
-
* Post Cover Resize
|
182
|
-
*/
|
183
|
-
function postCover(img, container) {
|
184
|
-
var imgWidth = img.width();
|
185
|
-
var containerWidth = container.width();
|
186
|
-
var imgHeight = img.height();
|
187
|
-
var containerHeight = container.height();
|
188
|
-
|
189
|
-
if (imgHeight < containerHeight) {
|
190
|
-
img.css({
|
191
|
-
'width': 'auto',
|
192
|
-
'height': '100%'
|
193
|
-
});
|
194
|
-
imgWidth = img.width();
|
195
|
-
containerWidth = container.width();
|
196
|
-
var marginLeft = (imgWidth - containerWidth) / 2;
|
197
|
-
img.css('margin-left', '-' + marginLeft + 'px');
|
198
|
-
} else {
|
199
|
-
var marginTop = (containerHeight - imgHeight) / 2;
|
200
|
-
img.css('margin-top', marginTop + 'px');
|
201
|
-
}
|
202
|
-
|
203
|
-
img.fadeIn();
|
204
|
-
}
|
205
|
-
|
206
|
-
/**
|
207
|
-
* The Post Navigator
|
208
|
-
*/
|
209
|
-
$('.read-next-item section').each(function () {
|
210
|
-
var n = $(this).height();
|
211
|
-
var rn = $('.read-next-item').height();
|
212
|
-
$(this).css('margin-top', (rn - n) / 2 + 'px');
|
213
|
-
$(this).fadeIn();
|
214
|
-
});
|
215
|
-
|
216
|
-
$('.read-next-item img').each(function () {
|
217
|
-
postCover($(this), $('.read-next-item'));
|
218
|
-
// $(this).addClass("lazyload");
|
219
|
-
$(this).attr('data-src', $(this).attr('src')).removeAttr('src').addClass("lazyload");
|
220
|
-
});
|
221
|
-
|
222
|
-
/**
|
223
|
-
* Pagination
|
224
|
-
*/
|
225
|
-
function pagination() {
|
226
|
-
var total = parseInt($('#total_pages').val());
|
227
|
-
var current = parseInt($('#current_pages').val());
|
228
|
-
var baseUrl = $('#base_url').val();
|
229
|
-
var limit = 3;
|
230
|
-
|
231
|
-
var link_html = '';
|
232
|
-
|
233
|
-
for (var i = current - limit; i < current; i++) {
|
234
|
-
if (i > 0 && i !== 1) {
|
235
|
-
link_html += '<a href="' + baseUrl + 'page' + i + '/index.html" class="page-link page-num">' + i + '</a>';
|
236
|
-
} else if (i === 1) {
|
237
|
-
link_html += '<a href="' + baseUrl + '" class="page-link page-num">' + i + '</a>';
|
238
|
-
}
|
239
|
-
}
|
240
|
-
|
241
|
-
link_html += '<span class="page-link page-num active">' + current + '</span>';
|
242
|
-
|
243
|
-
for (var j = current + 1; j <= current + limit; j++) {
|
244
|
-
if (j <= total) {
|
245
|
-
link_html += '<a href="' + baseUrl + 'page' + j + '/index.html" class="page-link page-num">' + j + '</a>';
|
246
|
-
}
|
247
|
-
}
|
248
|
-
|
249
|
-
$('#page-link-container').html(link_html);
|
250
|
-
}
|
251
|
-
pagination();
|
252
|
-
|
253
|
-
/**
|
254
|
-
* Search
|
255
|
-
*/
|
256
|
-
function Search() {
|
257
|
-
var self = this;
|
258
|
-
var input = $('#search_input');
|
259
|
-
var result = $('.search_result');
|
260
|
-
|
261
|
-
input.focus(function () {
|
262
|
-
$('.icon-search').css('color', '#3199DB');
|
263
|
-
result.show();
|
264
|
-
});
|
265
|
-
|
266
|
-
input.keyup(debounce(this.autoComplete));
|
267
|
-
|
268
|
-
$(document).click(function (e) {
|
269
|
-
if (e.target.id === 'search_input' || e.target.className === 'search_result' || e.target.className === 'search_item') {
|
270
|
-
return;
|
271
|
-
}
|
272
|
-
$('.icon-search').css('color', '#CAD3DC');
|
273
|
-
result.hide();
|
274
|
-
});
|
275
|
-
}
|
276
|
-
|
277
|
-
Search.prototype.autoComplete = function () {
|
278
|
-
var keywords = this.value.toLowerCase();
|
279
|
-
|
280
|
-
if (keywords.length) {
|
281
|
-
$('.icon-search').css('color', '#3199DB');
|
282
|
-
} else {
|
283
|
-
$('.icon-search').css('color', '#CAD3DC');
|
284
|
-
}
|
285
|
-
|
286
|
-
var jsonfile = baseurl + '/assets/search.json';
|
287
|
-
$.getJSON(jsonfile).done(function (data) {
|
288
|
-
var html = '';
|
289
|
-
for (var i in data) {
|
290
|
-
var item = data[i];
|
291
|
-
var title = item.title;
|
292
|
-
var tags = item.tags;
|
293
|
-
var url = item.url;
|
294
|
-
|
295
|
-
var k = title + tags;
|
296
|
-
if (keywords !== '' && k.toLowerCase().indexOf(keywords) >= 0) {
|
297
|
-
html += '<a class="search_item" href="' + item.url + '">' + item.title + '</a>';
|
298
|
-
}
|
299
|
-
}
|
300
|
-
$('.search_result').html(html);
|
301
|
-
});
|
302
|
-
};
|
303
|
-
|
304
|
-
function debounce(fn, delay) {
|
305
|
-
var timer;
|
306
|
-
delay = delay || 120;
|
307
|
-
|
308
|
-
return function () {
|
309
|
-
var ctx = this;
|
310
|
-
var args = arguments;
|
311
|
-
var later = function () {
|
312
|
-
fn.apply(ctx, args);
|
313
|
-
};
|
314
|
-
clearTimeout(timer);
|
315
|
-
timer = setTimeout(later, delay);
|
316
|
-
};
|
317
|
-
}
|
318
|
-
|
319
|
-
new Search();
|
320
|
-
|
321
|
-
/**
|
322
|
-
* Night mode
|
323
|
-
*/
|
324
|
-
function nightMode() {
|
325
|
-
var el = $('body');
|
326
|
-
var className = 'night-mode';
|
327
|
-
|
328
|
-
var date = new Date();
|
329
|
-
var hour = date.getHours();
|
330
|
-
|
331
|
-
var mode = getCookie("mode");
|
332
|
-
if (mode == "") {
|
333
|
-
// console.log(mode);
|
334
|
-
if (hour <= 6 || hour >= 18) {
|
335
|
-
// console.log("Start night mode");
|
336
|
-
setCookie("mode", "night", 1)
|
337
|
-
}
|
338
|
-
// el.addClass(className);
|
339
|
-
}
|
340
|
-
}
|
341
|
-
|
342
|
-
if ($('#nm-switch').val() === 'true') {
|
343
|
-
nightMode();
|
344
|
-
}
|
345
|
-
|
346
|
-
/**
|
347
|
-
* Copy and copyright
|
348
|
-
*/
|
349
|
-
function setClipboardData(str) {
|
350
|
-
str += '\n\n著作权归作者所有。\n商业转载请联系作者获得授权,非商业转载请注明出处。\n原文: ' + location.href;
|
351
|
-
$('.post-content').on('copy', function (e) {
|
352
|
-
var data = window.clipboardData || e.originalEvent.clipboardData;
|
353
|
-
data.setData('text/plain', str);
|
354
|
-
e.preventDefault();
|
355
|
-
});
|
356
|
-
}
|
357
|
-
$('.post-content').on('mouseup', function (e) {
|
358
|
-
var txt = window.getSelection();
|
359
|
-
if (txt.toString().length >= 30) {
|
360
|
-
setClipboardData(txt);
|
361
|
-
}
|
362
|
-
});
|
363
|
-
|
364
|
-
/**
|
365
|
-
* TOC highlight with the corresponding content
|
366
|
-
*/
|
367
|
-
function locateCatelogList() {
|
368
|
-
/*获取文章目录集合,可通过:header过滤器*/
|
369
|
-
var alis = $('article :header');
|
370
|
-
/*获取侧边栏目录列表集合**/
|
371
|
-
var sidebar_alis = $('.table-of-contents').find('a');
|
372
|
-
/*获取滚动条到顶部的距离*/
|
373
|
-
var scroll_height = $(window).scrollTop();
|
374
|
-
if (scroll_height > 0) {
|
375
|
-
$('.g-header').addClass('headerUp');
|
376
|
-
}
|
377
|
-
for (var i = 0; i < alis.length; i++) {
|
378
|
-
/*获取锚点集合中的元素分别到顶点的距离*/
|
379
|
-
var a_height = $(alis[i]).offset().top - 100;
|
380
|
-
if (a_height < scroll_height) {
|
381
|
-
/*高亮显示*/
|
382
|
-
$(sidebar_alis).removeClass('active');
|
383
|
-
$(sidebar_alis[i]).addClass('active');
|
384
|
-
}
|
385
|
-
}
|
386
|
-
}
|
387
|
-
|
388
|
-
locateCatelogList();
|
389
|
-
$(window).bind('scroll', locateCatelogList);
|
390
|
-
|
391
|
-
/**
|
392
|
-
* Day/Night mode switch button
|
393
|
-
*/
|
394
|
-
function getCookie(cname) {
|
395
|
-
var name = cname + "=";
|
396
|
-
var ca = document.cookie.split(';');
|
397
|
-
for (var i = 0; i < ca.length; i++) {
|
398
|
-
var c = ca[i].trim();
|
399
|
-
if (c.indexOf(name) === 0) return c.substring(name.length, c.length);
|
400
|
-
}
|
401
|
-
return "";
|
402
|
-
}
|
403
|
-
|
404
|
-
function setCookie(cname, cvalue, exdays) {
|
405
|
-
var d = new Date();
|
406
|
-
d.setTime(d.getTime() + (exdays * 24 * 60 * 60 * 1000));
|
407
|
-
var expires = "expires=" + d.toGMTString();
|
408
|
-
if (!baseurl) {
|
409
|
-
document.cookie = cname + "=" + cvalue + "; path=/; " + expires;
|
410
|
-
} else {
|
411
|
-
document.cookie = cname + "=" + cvalue + "; path=" + baseurl + "; " + expires;
|
412
|
-
}
|
413
|
-
}
|
414
|
-
|
415
|
-
var mode = getCookie("mode");
|
416
|
-
// console.log(mode);
|
417
|
-
if (mode == "night") {
|
418
|
-
$(".g-nav li.mode .night").addClass("active");
|
419
|
-
$("#mode-toggle .icon-night").addClass("active");
|
420
|
-
$("body").addClass("night-mode");
|
421
|
-
$(".icon.up.night").toggleClass("active");
|
422
|
-
$(".icon.list.night").toggleClass("active");
|
423
|
-
} else {
|
424
|
-
$(".g-nav li.mode .day").addClass("active");
|
425
|
-
$("#mode-toggle .icon-day").addClass("active");
|
426
|
-
$("body").removeClass("night-mode");
|
427
|
-
$(".icon.up.day").toggleClass("active");
|
428
|
-
$(".icon.list.day").toggleClass("active");
|
429
|
-
}
|
430
|
-
|
431
|
-
function changeMode() {
|
432
|
-
var mode = getCookie("mode");
|
433
|
-
if (mode == "") {
|
434
|
-
setCookie("mode", "night", 1)
|
435
|
-
$("body").addClass("night-mode");
|
436
|
-
} else if (mode == "day") {
|
437
|
-
setCookie("mode", "night", 1)
|
438
|
-
$("body").addClass("night-mode");
|
439
|
-
} else {
|
440
|
-
setCookie("mode", "day", 1)
|
441
|
-
$("body").removeClass("night-mode");
|
442
|
-
}
|
443
|
-
// console.log(mode + "-->" + getCookie("mode"));
|
444
|
-
if ($("#disqus_thread").length > 0) {
|
445
|
-
DISQUS.reset({
|
446
|
-
reload: true
|
447
|
-
});
|
448
|
-
}
|
449
|
-
$(".g-nav li.mode .icon").toggleClass("active");
|
450
|
-
$("#mode-toggle .icon").toggleClass("active");
|
451
|
-
$(".icon.up.day").toggleClass("active");
|
452
|
-
$(".icon.up.night").toggleClass("active");
|
453
|
-
if ($('.table-of-contents').css('visibility') == "visible") {
|
454
|
-
$(".icon.exit.day").toggleClass("active");
|
455
|
-
$(".icon.exit.night").toggleClass("active");
|
456
|
-
} else {
|
457
|
-
$(".icon.list.day").toggleClass("active");
|
458
|
-
$(".icon.list.night").toggleClass("active");
|
459
|
-
}
|
460
|
-
}
|
461
|
-
|
462
|
-
$(".g-nav li.mode").click(function () {
|
463
|
-
changeMode();
|
464
|
-
});
|
465
|
-
|
466
|
-
$("#mode-toggle").click(function () {
|
467
|
-
changeMode();
|
468
|
-
});
|
469
|
-
|
470
|
-
/**
|
471
|
-
* Copy code blocks
|
472
|
-
*/
|
473
|
-
// get all <code> elements
|
474
|
-
var allCodeBlocksElements = $("pre");
|
475
|
-
allCodeBlocksElements.each(function (i) {
|
476
|
-
// add different id for each code block
|
477
|
-
// target
|
478
|
-
var currentId = "codeblock" + (i + 1);
|
479
|
-
$(this).attr('id', currentId);
|
480
|
-
var lang = $(this).attr("class").split(" ")[1].substring(9).toUpperCase();
|
481
|
-
|
482
|
-
if (lang == "ERS") {
|
483
|
-
lang = $(this).attr("class").split(" ")[0].substring(9).toUpperCase();
|
484
|
-
if (lang == "MERMAID2") {
|
485
|
-
text = $(this).text();
|
486
|
-
$(this).before('<summary class="render-expand" aria-haspopup="dialog" role="button"><svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor" class="octicon" style="display:inline-block;vertical-align:text-bottom"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 1.06L2.56 7h10.88l-2.22-2.22a.75.75 0 011.06-1.06l3.5 3.5a.75.75 0 010 1.06l-3.5 3.5a.75.75 0 11-1.06-1.06l2.22-2.22H2.56l2.22 2.22a.75.75 0 11-1.06 1.06l-3.5-3.5a.75.75 0 010-1.06l3.5-3.5z"></path></svg></summary>');
|
487
|
-
$(this).after('<div class="mermaid2">' + text + '</div>');
|
488
|
-
} else {
|
489
|
-
$(this).wrap('<div class="highlight"></div>');
|
490
|
-
$(this).parent().wrap('<div class="' + $(this).attr("class").split(" ")[0] + ' highlighter-rouge"></div>');
|
491
|
-
$(this).addClass("highlight");
|
492
|
-
//trigger
|
493
|
-
var clipButton = '<div class="copy-container"><span class="lang">' + lang + '</span><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#' + currentId + '"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>';
|
494
|
-
$(this).before(clipButton);
|
495
|
-
}
|
496
|
-
} else {
|
497
|
-
//trigger
|
498
|
-
var clipButton = '<div class="copy-container"><span class="lang">' + lang + '</span><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#' + currentId + '"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>';
|
499
|
-
$(this).before(clipButton);
|
500
|
-
}
|
501
|
-
});
|
502
|
-
|
503
|
-
var clipboard = new ClipboardJS('.btn');
|
504
|
-
clipboard.on('success', function (e) {
|
505
|
-
e.clearSelection();
|
506
|
-
});
|
507
|
-
|
508
|
-
$(".markdown-body .btn").hover(function () {
|
509
|
-
$(this).find(".tooltip.unfinish").addClass("active");
|
510
|
-
}, function () {
|
511
|
-
$(this).find(".tooltip.unfinish").removeClass("active");
|
512
|
-
});
|
513
|
-
|
514
|
-
$(".markdown-body .btn").click(function () {
|
515
|
-
$(this).find(".tooltip.unfinish").removeClass("active");
|
516
|
-
var finish = $(this).find(".tooltip.finish")
|
517
|
-
finish.addClass("active");
|
518
|
-
setTimeout(function () {
|
519
|
-
finish.removeClass("active");
|
520
|
-
}, 500);
|
521
|
-
});
|
522
|
-
|
523
|
-
/**
|
524
|
-
* Expand the mermaid figure
|
525
|
-
*/
|
526
|
-
$("summary").click(function (event) {
|
527
|
-
var text = $(this).next().children().text();
|
528
|
-
$(".modal .modal-content .container").html('<div class="mermaid2">' + text + '</div>')
|
529
|
-
mermaid.init(undefined, $('.modal .modal-content .mermaid2'));
|
530
|
-
$('.modal').css("visibility", "visible");
|
531
|
-
$(".modal .modal-content").click(function (event) {
|
532
|
-
if (event.target.classList.contains("close")) {
|
533
|
-
$(".modal").css("visibility", "hidden");
|
534
|
-
}
|
535
|
-
event.stopPropagation();
|
536
|
-
});
|
537
|
-
event.stopPropagation();
|
538
|
-
});
|
539
|
-
|
540
|
-
$(document).click(function () {
|
541
|
-
$(".modal").css("visibility", "hidden");
|
542
|
-
});
|
543
|
-
|
544
|
-
/**
|
545
|
-
* Error image loading
|
546
|
-
*/
|
547
|
-
document.addEventListener('error', function (e) {
|
548
|
-
if (e.target.nodeName == 'IMG') { e.target.src = baseurl + '/assets/img/placeholder.webp'; }
|
549
|
-
}, true);
|
550
|
-
|
551
|
-
/**
|
552
|
-
* Alive time
|
553
|
-
*/
|
554
|
-
|
555
|
-
var alivetime_days = $(".alivetime_days")
|
556
|
-
var alivetime_hours = $(".alivetime_hours")
|
557
|
-
var alivetime_minutes = $(".alivetime_minutes")
|
558
|
-
var alivetime_seconds = $(".alivetime_seconds")
|
559
|
-
function alive_time() {
|
560
|
-
var alivestart = $("meta[name='alivestart']").attr('content');
|
561
|
-
window.setTimeout(alive_time, 1000);
|
562
|
-
// Start at
|
563
|
-
BirthDay = new Date(alivestart);
|
564
|
-
// Now at
|
565
|
-
today = new Date();
|
566
|
-
timeold = (today.getTime() - BirthDay.getTime());
|
567
|
-
secondsold = Math.floor(timeold / 1000);
|
568
|
-
e_daysold = timeold / (24 * 60 * 60 * 1000);
|
569
|
-
daysold = Math.floor(e_daysold);
|
570
|
-
e_hrsold = (e_daysold - daysold) * 24;
|
571
|
-
hrsold = Math.floor(e_hrsold);
|
572
|
-
e_minsold = (e_hrsold - hrsold) * 60;
|
573
|
-
minsold = Math.floor(e_minsold)
|
574
|
-
seconds = Math.floor((e_minsold - minsold) * 60);
|
575
|
-
alivetime_days.html(daysold)
|
576
|
-
alivetime_hours.html(hrsold)
|
577
|
-
alivetime_minutes.html(minsold)
|
578
|
-
alivetime_seconds.html(seconds)
|
579
|
-
// alivetime.html(daysold + " 天 " + hrsold + " 小时 " + minsold + " 分 " + seconds + " 秒");
|
580
|
-
}
|
581
|
-
alive_time();
|
582
|
-
|
583
|
-
});
|
584
|
-
|
585
|
-
|
586
|
-
/***/ }),
|
587
|
-
|
588
|
-
/***/ "./dev/sass/app.scss":
|
589
|
-
/*!***************************!*\
|
590
|
-
!*** ./dev/sass/app.scss ***!
|
591
|
-
\***************************/
|
592
|
-
/***/ ((__unused_webpack_module, __webpack_exports__, __webpack_require__) => {
|
593
|
-
|
594
|
-
"use strict";
|
595
|
-
__webpack_require__.r(__webpack_exports__);
|
596
|
-
// extracted by mini-css-extract-plugin
|
597
|
-
|
598
|
-
|
599
|
-
/***/ })
|
600
|
-
|
601
|
-
/******/ });
|
602
|
-
/************************************************************************/
|
603
|
-
/******/ // The module cache
|
604
|
-
/******/ var __webpack_module_cache__ = {};
|
605
|
-
/******/
|
606
|
-
/******/ // The require function
|
607
|
-
/******/ function __webpack_require__(moduleId) {
|
608
|
-
/******/ // Check if module is in cache
|
609
|
-
/******/ var cachedModule = __webpack_module_cache__[moduleId];
|
610
|
-
/******/ if (cachedModule !== undefined) {
|
611
|
-
/******/ return cachedModule.exports;
|
612
|
-
/******/ }
|
613
|
-
/******/ // Create a new module (and put it into the cache)
|
614
|
-
/******/ var module = __webpack_module_cache__[moduleId] = {
|
615
|
-
/******/ // no module.id needed
|
616
|
-
/******/ // no module.loaded needed
|
617
|
-
/******/ exports: {}
|
618
|
-
/******/ };
|
619
|
-
/******/
|
620
|
-
/******/ // Execute the module function
|
621
|
-
/******/ __webpack_modules__[moduleId](module, module.exports, __webpack_require__);
|
622
|
-
/******/
|
623
|
-
/******/ // Return the exports of the module
|
624
|
-
/******/ return module.exports;
|
625
|
-
/******/ }
|
626
|
-
/******/
|
627
|
-
/************************************************************************/
|
628
|
-
/******/ /* webpack/runtime/compat get default export */
|
629
|
-
/******/ (() => {
|
630
|
-
/******/ // getDefaultExport function for compatibility with non-harmony modules
|
631
|
-
/******/ __webpack_require__.n = (module) => {
|
632
|
-
/******/ var getter = module && module.__esModule ?
|
633
|
-
/******/ () => (module['default']) :
|
634
|
-
/******/ () => (module);
|
635
|
-
/******/ __webpack_require__.d(getter, { a: getter });
|
636
|
-
/******/ return getter;
|
637
|
-
/******/ };
|
638
|
-
/******/ })();
|
639
|
-
/******/
|
640
|
-
/******/ /* webpack/runtime/define property getters */
|
641
|
-
/******/ (() => {
|
642
|
-
/******/ // define getter functions for harmony exports
|
643
|
-
/******/ __webpack_require__.d = (exports, definition) => {
|
644
|
-
/******/ for(var key in definition) {
|
645
|
-
/******/ if(__webpack_require__.o(definition, key) && !__webpack_require__.o(exports, key)) {
|
646
|
-
/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] });
|
647
|
-
/******/ }
|
648
|
-
/******/ }
|
649
|
-
/******/ };
|
650
|
-
/******/ })();
|
651
|
-
/******/
|
652
|
-
/******/ /* webpack/runtime/hasOwnProperty shorthand */
|
653
|
-
/******/ (() => {
|
654
|
-
/******/ __webpack_require__.o = (obj, prop) => (Object.prototype.hasOwnProperty.call(obj, prop))
|
655
|
-
/******/ })();
|
656
|
-
/******/
|
657
|
-
/******/ /* webpack/runtime/make namespace object */
|
658
|
-
/******/ (() => {
|
659
|
-
/******/ // define __esModule on exports
|
660
|
-
/******/ __webpack_require__.r = (exports) => {
|
661
|
-
/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) {
|
662
|
-
/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' });
|
663
|
-
/******/ }
|
664
|
-
/******/ Object.defineProperty(exports, '__esModule', { value: true });
|
665
|
-
/******/ };
|
666
|
-
/******/ })();
|
667
|
-
/******/
|
668
|
-
/************************************************************************/
|
669
|
-
var __webpack_exports__ = {};
|
670
|
-
// This entry need to be wrapped in an IIFE because it need to be in strict mode.
|
671
|
-
(() => {
|
672
|
-
"use strict";
|
673
|
-
/*!********************!*\
|
674
|
-
!*** ./dev/app.js ***!
|
675
|
-
\********************/
|
676
|
-
__webpack_require__.r(__webpack_exports__);
|
677
|
-
/* harmony import */ var _js_index_js__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./js/index.js */ "./dev/js/index.js");
|
678
|
-
/* harmony import */ var _js_index_js__WEBPACK_IMPORTED_MODULE_0___default = /*#__PURE__*/__webpack_require__.n(_js_index_js__WEBPACK_IMPORTED_MODULE_0__);
|
679
|
-
/* harmony import */ var _sass_app_scss__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./sass/app.scss */ "./dev/sass/app.scss");
|
680
|
-
|
681
|
-
|
682
|
-
})();
|
683
|
-
|
684
|
-
/******/ })()
|
685
|
-
;
|
686
|
-
//# sourceMappingURL=app.min.js.map
|
1
|
+
(()=>{var t={774:()=>{$(document).ready((function(){document.body.addEventListener("touchstart",(function(){}),{passive:!0});var t=$(".g-nav"),e=$("meta[property='og:baseurl']").attr("content"),a=$("meta[property='og:lang']").attr("content"),o=$(".g-logo"),n=$(".g-banner").attr("data-theme");if(o.css({background:"url("+e+"/assets/icons/"+n+".svg) no-repeat center","background-size":"100% 100%"}),u("cookieconsent_status")?$(".cookie-tip").removeClass("active"):$(".cookie-tip").addClass("active"),$("#accept-tos").on("click",(function(){p("cookieconsent_status","allow",365),$(".cookie-tip").removeClass("active")})),$("table").wrap("<div class='table-area'></div>"),$("#menu-toggle").on("click",(function(e){t.slideToggle(200),$(document).on("click",(function(){t.slideUp(200)})),e.stopPropagation()})),t.on("click",(function(t){t.stopPropagation()})),$(".g-nav li.dropdown").on("click",(function(){$(".g-nav li.dropdown").not($(this)).children("ul.dropdown-menu").removeClass("show"),$(".g-nav li.dropdown").not($(this)).children("a.dropdown-toggle").removeClass("show"),$(this).children("a.dropdown-toggle").toggleClass("show"),$(this).children("ul.dropdown-menu").toggleClass("show")})),$(document).on("click",(function(){$(".g-nav li.dropdown").children("a.dropdown-toggle").removeClass("show"),$(".g-nav li.dropdown").children("ul.dropdown-menu").removeClass("show")})),$(window).width()>695){var s=(c=$(".g-header")).outerHeight(),i=t.find("a"),l=$(document).scrollTop();o=$(".g-logo"),n=$(".g-banner").attr("data-theme"),$(document).scroll((function(){var a=$(this).scrollTop(),r="nav-"+n;a>s?(a>3*s&&c.addClass("headerUp"),c.css({"background-color":"rgba(255, 255, 255, .98)","box-shadow":"0 1px 12px rgba(0, 0, 0, .08)"}),o.css({background:"url("+e+"/assets/icons/"+n+".svg) no-repeat center","background-size":"100% 100%"}),i.addClass("color-f-gray"),t.addClass(r)):(c.removeClass("headerUp"),$("#bttb").removeClass("active"),c.css({"background-color":"transparent","box-shadow":"none"}),o.css({background:"url("+e+"/assets/icons/"+n+".svg) no-repeat center","background-size":"100% 100%"}),i.removeClass("color-f-gray"),t.removeClass(r)),l>a?(c.addClass("headerDown"),c.hasClass("headerUp")&&$("#bttb").addClass("active")):(c.removeClass("headerDown"),$("#bttb").removeClass("active")),l=a}))}else{var c;s=(c=$(".g-header")).outerHeight(),l=$(document).scrollTop(),$(document).scroll((function(){var t=$(this).scrollTop();t<100&&$("#bttb").removeClass("active"),l>t&&l>5?$("#bttb").addClass("active"):$("#bttb").removeClass("active"),l=t}))}function r(){$(".table-of-contents").toggleClass("active"),$("#tools .tool.toc .b1").toggleClass("active"),$("#tools .tool.toc .b2").toggleClass("active"),$(".submenu").removeClass("active"),$("#tools .tool.collection .b1").addClass("active"),$("#tools .tool.collection .b2").removeClass("active")}function d(){$(".submenu").toggleClass("active"),$("#tools .tool.collection .b1").toggleClass("active"),$("#tools .tool.collection .b2").toggleClass("active"),$(".table-of-contents").removeClass("active"),$("#tools .tool.toc .b1").addClass("active"),$("#tools .tool.toc .b2").removeClass("active")}function h(){var t,e,a,o=$("#search_input"),n=$(".search_result");o.focus((function(){$(".icon-search").css("color","#3199DB"),n.show()})),o.keyup((t=this.autoComplete,e=e||120,function(){var o=this,n=arguments;clearTimeout(a),a=setTimeout((function(){t.apply(o,n)}),e)})),$(document).click((function(t){"search_input"!==t.target.id&&"search_result"!==t.target.className&&"search_item"!==t.target.className&&($(".icon-search").css("color","#CAD3DC"),n.hide())}))}function g(){var t=$("article :header"),e=$(".table-of-contents").find("a"),a=$(window).scrollTop();a>0&&$(".g-header").addClass("headerUp");for(var o=0;o<t.length;o++)$(t[o]).offset().top-100<a&&($(e).removeClass("active"),$(e[o]).addClass("active"))}function u(t){for(var e=t+"=",a=document.cookie.split(";"),o=0;o<a.length;o++){var n=a[o].trim();if(0===n.indexOf(e))return n.substring(e.length,n.length)}return""}function p(t,a,o){var n=new Date;n.setTime(n.getTime()+24*o*60*60*1e3);var s="expires="+n.toGMTString();document.cookie=e?t+"="+a+"; path="+e+"; "+s:t+"="+a+"; path=/; "+s}function m(){var t=u("mode");""==t||"day"==t?(p("mode","night",1),$("body").addClass("night-mode")):(p("mode","day",1),$("body").removeClass("night-mode")),$("#disqus_thread").length>0&&DISQUS.reset({reload:!0}),$(".g-nav li.mode .icon").toggleClass("active"),$("#mode-toggle .icon").toggleClass("active"),$(".icon.up.day").toggleClass("active"),$(".icon.up.night").toggleClass("active"),"visible"==$(".table-of-contents").css("visibility")?($(".icon.exit.day").toggleClass("active"),$(".icon.exit.night").toggleClass("active")):($(".icon.list.day").toggleClass("active"),$(".icon.list.night").toggleClass("active"))}$("#tools .tool.toc").bind("click",(function(){r()})),$("#tools .tool.collection").bind("click",(function(){d()})),$(".table-of-contents").on("click",(function(){r()})),$(".submenu").on("click",(function(){d()})),$(".bttb").bind("click",(function(){$("html,body").animate({scrollTop:0},(function(){$("#bttb").removeClass("active")}))})),$(".read-next-item section").each((function(){var t=$(this).height(),e=$(".read-next-item").height();$(this).css("margin-top",(e-t)/2+"px"),$(this).fadeIn()})),$(".read-next-item img").each((function(){!function(t,e){t.width(),e.width();var a=t.height(),o=e.height();if(a<o){t.css({width:"auto",height:"100%"});var n=(t.width()-e.width())/2;t.css("margin-left","-"+n+"px")}else{var s=(o-a)/2;t.css("margin-top",s+"px")}t.fadeIn()}($(this),$(".read-next-item")),$(this).attr("data-src",$(this).attr("src")).removeAttr("src").addClass("lazyload")})),function(){for(var t=parseInt($("#total_pages").val()),e=parseInt($("#current_pages").val()),a=$("#base_url").val(),o="",n=e-3;n<e;n++)n>0&&1!==n?o+='<a href="'+a+"page"+n+'/index.html" class="page-link page-num">'+n+"</a>":1===n&&(o+='<a href="'+a+'" class="page-link page-num">'+n+"</a>");o+='<span class="page-link page-num active">'+e+"</span>";for(var s=e+1;s<=e+3;s++)s<=t&&(o+='<a href="'+a+"page"+s+'/index.html" class="page-link page-num">'+s+"</a>");$("#page-link-container").html(o)}(),h.prototype.autoComplete=function(){var t=this.value.toLowerCase();t.length?$(".icon-search").css("color","#3199DB"):$(".icon-search").css("color","#CAD3DC");var a=e+"/assets/search.json";$.getJSON(a).done((function(e){var a="";for(var o in e){var n=e[o],s=n.title,i=n.tags;n.url,""!==t&&(s+i).toLowerCase().indexOf(t)>=0&&(a+='<a class="search_item" href="'+n.url+'">'+n.title+"</a>")}$(".search_result").html(a)}))},new h,"true"===$("#nm-switch").val()&&function(){$("body");var t=(new Date).getHours();""==u("mode")&&(t<=6||t>=18)&&p("mode","night",1)}(),$(".post-content").on("mouseup",(function(t){var e,a=window.getSelection();a.toString().length>=30&&(e=a,e+="\n\n著作权归作者所有。\n商业转载请联系作者获得授权,非商业转载请注明出处。\n原文: "+location.href,$(".post-content").on("copy",(function(t){(window.clipboardData||t.originalEvent.clipboardData).setData("text/plain",e),t.preventDefault()})))})),g(),$(window).bind("scroll",g),"night"==u("mode")?($(".g-nav li.mode .night").addClass("active"),$("#mode-toggle .icon-night").addClass("active"),$("body").addClass("night-mode"),$(".icon.up.night").toggleClass("active"),$(".icon.list.night").toggleClass("active")):($(".g-nav li.mode .day").addClass("active"),$("#mode-toggle .icon-day").addClass("active"),$("body").removeClass("night-mode"),$(".icon.up.day").toggleClass("active"),$(".icon.list.day").toggleClass("active")),$(".g-nav li.mode").click((function(){m()})),$("#mode-toggle").click((function(){m()})),$("pre").each((function(t){var e="codeblock"+(t+1);$(this).attr("id",e);var a=$(this).attr("class").split(" ")[1].substring(9).toUpperCase();if("ERS"==a)if("MERMAID2"==(a=$(this).attr("class").split(" ")[0].substring(9).toUpperCase()))text=$(this).text(),$(this).before('<summary class="render-expand" aria-haspopup="dialog" role="button"><svg width="16" height="16" viewBox="0 0 16 16" fill="currentColor" class="octicon" style="display:inline-block;vertical-align:text-bottom"><path fill-rule="evenodd" d="M3.72 3.72a.75.75 0 011.06 1.06L2.56 7h10.88l-2.22-2.22a.75.75 0 011.06-1.06l3.5 3.5a.75.75 0 010 1.06l-3.5 3.5a.75.75 0 11-1.06-1.06l2.22-2.22H2.56l2.22 2.22a.75.75 0 11-1.06 1.06l-3.5-3.5a.75.75 0 010-1.06l3.5-3.5z"></path></svg></summary>'),$(this).after('<div class="mermaid2">'+text+"</div>");else{$(this).wrap('<div class="highlight"></div>'),$(this).parent().wrap('<div class="'+$(this).attr("class").split(" ")[0]+' highlighter-rouge"></div>'),$(this).addClass("highlight");var o='<div class="copy-container"><span class="lang">'+a+'</span><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#'+e+'"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>';$(this).before(o)}else o='<div class="copy-container"><span class="lang">'+a+'</span><button class="btn" data-bs-original-title="Copy" aria-label="Copy" data-clipboard-target="#'+e+'"><svg class="icon" aria-hidden="true"><use xlink:href="#icon-copy"></use></svg><span class="tooltip unfinish">Copy</span><span class="tooltip finish">Copied</span></button></div>',$(this).before(o)})),new ClipboardJS(".btn").on("success",(function(t){t.clearSelection()})),$(".markdown-body .btn").hover((function(){$(this).find(".tooltip.unfinish").addClass("active")}),(function(){$(this).find(".tooltip.unfinish").removeClass("active")})),$(".markdown-body .btn").click((function(){$(this).find(".tooltip.unfinish").removeClass("active");var t=$(this).find(".tooltip.finish");t.addClass("active"),setTimeout((function(){t.removeClass("active")}),500)})),$("summary").click((function(t){var e=$(this).next().children().text();$(".modal .modal-content .container").html('<div class="mermaid2">'+e+"</div>"),mermaid.init(void 0,$(".modal .modal-content .mermaid2")),$(".modal").css("visibility","visible"),$(".modal .modal-content").click((function(t){t.target.classList.contains("close")&&$(".modal").css("visibility","hidden"),t.stopPropagation()})),t.stopPropagation()})),$(document).click((function(){$(".modal").css("visibility","hidden")})),document.addEventListener("error",(function(t){"IMG"==t.target.nodeName&&(t.target.src=e+"/assets/img/placeholder.webp")}),!0);var v=$(".alivetime_days"),f=$(".alivetime_hours"),b=$(".alivetime_minutes"),y=$(".alivetime_seconds");if(function t(){var e=$("meta[name='alivestart']").attr("content");window.setTimeout(t,1e3),BirthDay=new Date(e),today=new Date,timeold=today.getTime()-BirthDay.getTime(),secondsold=Math.floor(timeold/1e3),e_daysold=timeold/864e5,daysold=Math.floor(e_daysold),e_hrsold=24*(e_daysold-daysold),hrsold=Math.floor(e_hrsold),e_minsold=60*(e_hrsold-hrsold),minsold=Math.floor(e_minsold),seconds=Math.floor(60*(e_minsold-minsold)),v.html(daysold),f.html(hrsold),b.html(minsold),y.html(seconds)}(),today=new Date,year=today.getFullYear(),month=today.getMonth()+1,day=today.getDate(),endDay=year+"-"+("0"+month).slice(-2)+"-"+("0"+day).slice(-2),locales={"zh-Hans":"zh","zh-Hant":"zh-tw",en:"en",ja:"ja"},$("#cal-heatmap").length>0){const t=new CalHeatmap;axios.get(e+"/stats.json").then((e=>{stats_data=e.data,t.paint({itemSelector:"#cal-heatmap",domain:{type:"month",gutter:5,label:{text:"MMM",textAlign:"start",position:"top"}},subDomain:{type:"ghDay",gutter:5,width:13,height:13,radius:3,label:null},date:{start:new Date(dayjs(endDay).subtract(2,"month")),max:new Date(endDay),highlight:[new Date(endDay)],locale:locales[a]},range:3,data:{source:stats_data.calendar,x:"date",y:"count"},scale:{color:{type:"threshold",range:["#9be9a8","#40c463","#30a14e","#216e39"],domain:[4,6,8]}}},[[Tooltip,{text:function(t,e,a){return 1==e?e+" contribution on "+a.format("YYYY-MM-DD"):(e?e+" contributions":"No contribution")+" on "+a.format("YYYY-MM-DD")}}],[LegendLite,{includeBlank:!0,itemSelector:"#ex-ghDay-legend",radius:3,width:10,height:10,gutter:2}],[CalendarLabel,{width:30,textAlign:"start",text:()=>dayjs.weekdaysShort().map(((t,e)=>e%2==0?"":t)),padding:[25,0,0,0]}]]),$("#ex-ghDay-prev").on("click",(function(e){e.preventDefault(),t.previous()})),$("#ex-ghDay-next").on("click",(function(e){e.preventDefault(),t.next()})),$("#ex-ghDay-today").on("click",(function(e){e.preventDefault(),t.jumpTo(new Date(endDay))}))}))}if($("#archive-heatmap").length>0){postWidth=$(".post-content").width(),postWidth>=633?month=12:postWidth>=400?month=8:postWidth>=300?month=6:month=3;const t=new CalHeatmap;axios.get(e+"/stats.json").then((e=>{stats_data=e.data,t.paint({itemSelector:"#archive-heatmap",domain:{type:"month",gutter:2,label:{text:"MMM",textAlign:"start",position:"top"}},subDomain:{type:"ghDay",gutter:2,width:9,height:9,radius:2},date:{start:new Date(dayjs(endDay).subtract(month-1,"month")),max:new Date(endDay),highlight:[new Date(endDay)],locale:locales[a]},range:month,data:{source:stats_data.calendar,x:"date",y:"count"},scale:{color:{type:"threshold",range:["#9be9a8","#40c463","#30a14e","#216e39"],domain:[4,6,8]}}},[[Tooltip,{text:function(t,e,a){return 1==e?e+" contribution on "+a.format("YYYY-MM-DD"):(e?e+" contributions":"No contribution")+" on "+a.format("YYYY-MM-DD")}}],[LegendLite,{includeBlank:!0,itemSelector:"#ex-ghDay-legend2",radius:3,width:10,height:10,gutter:2}],[CalendarLabel,{width:30,textAlign:"start",text:()=>dayjs.weekdaysShort().map(((t,e)=>e%2==0?"":t)),padding:[25,0,0,0]}]]),$("#ex-ghDay-prev2").on("click",(function(e){e.preventDefault(),t.previous()})),$("#ex-ghDay-next2").on("click",(function(e){e.preventDefault(),t.next()})),$("#ex-ghDay-today2").on("click",(function(e){e.preventDefault(),t.jumpTo(new Date(endDay))}))}))}}))}},e={};function a(o){var n=e[o];if(void 0!==n)return n.exports;var s=e[o]={exports:{}};return t[o](s,s.exports,a),s.exports}a.n=t=>{var e=t&&t.__esModule?()=>t.default:()=>t;return a.d(e,{a:e}),e},a.d=(t,e)=>{for(var o in e)a.o(e,o)&&!a.o(t,o)&&Object.defineProperty(t,o,{enumerable:!0,get:e[o]})},a.o=(t,e)=>Object.prototype.hasOwnProperty.call(t,e),(()=>{"use strict";a(774)})()})();
|