mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
283 lines
8.1 KiB
JavaScript
Executable file
283 lines
8.1 KiB
JavaScript
Executable file
function initializeJS() {
|
|
|
|
//tool tips
|
|
jQuery('.tooltips').tooltip();
|
|
|
|
//popovers
|
|
jQuery('.popovers').popover();
|
|
|
|
//sidebar dropdown menu
|
|
jQuery('#sidebar .sub-menu > a').click(function () {
|
|
// Close previous open submenu
|
|
var last = jQuery('.sub.open', jQuery('#sidebar'));
|
|
jQuery(last).slideUp(200);
|
|
jQuery(last).removeClass("open");
|
|
jQuery('.menu-arrow', jQuery(last).parent()).addClass('fa-angle-right');
|
|
jQuery('.menu-arrow', jQuery(last).parent()).removeClass('fa-angle-down');
|
|
|
|
// Toggle current submenu
|
|
var sub = jQuery(this).next();
|
|
if (sub.is(":visible")) {
|
|
jQuery('.menu-arrow', this).addClass('fa-angle-right');
|
|
jQuery('.menu-arrow', this).removeClass('fa-angle-down');
|
|
sub.slideUp(200);
|
|
jQuery(sub).removeClass("open")
|
|
} else {
|
|
jQuery('.menu-arrow', this).addClass('fa-angle-down');
|
|
jQuery('.menu-arrow', this).removeClass('fa-angle-right');
|
|
sub.slideDown(200);
|
|
jQuery(sub).addClass("open")
|
|
}
|
|
|
|
// Center menu on screen
|
|
var o = (jQuery(this).offset());
|
|
diff = 200 - o.top;
|
|
if(diff>0)
|
|
jQuery("#sidebar").scrollTo("-="+Math.abs(diff),500);
|
|
else
|
|
jQuery("#sidebar").scrollTo("+="+Math.abs(diff),500);
|
|
});
|
|
|
|
|
|
// sidebar menu toggle
|
|
jQuery(function() {
|
|
function responsiveView() {
|
|
var wSize = jQuery(window).width();
|
|
if (wSize <= 768) {
|
|
jQuery('#container').addClass('sidebar-close');
|
|
jQuery('#sidebar > ul').hide();
|
|
}
|
|
|
|
if (wSize > 768) {
|
|
jQuery('#container').removeClass('sidebar-close');
|
|
jQuery('#sidebar > ul').show();
|
|
}
|
|
}
|
|
jQuery(window).on('load', responsiveView);
|
|
jQuery(window).on('resize', responsiveView);
|
|
});
|
|
|
|
jQuery('.toggle-nav').click(function () {
|
|
if (jQuery('#sidebar > ul').is(":visible") === true) {
|
|
jQuery('#main-content').css({
|
|
'margin-left': '0px'
|
|
});
|
|
jQuery('#sidebar').css({
|
|
'margin-left': '-180px'
|
|
});
|
|
jQuery('#sidebar > ul').hide();
|
|
jQuery("#container").addClass("sidebar-closed");
|
|
} else {
|
|
jQuery('#main-content').css({
|
|
'margin-left': '180px'
|
|
});
|
|
jQuery('#sidebar > ul').show();
|
|
jQuery('#sidebar').css({
|
|
'margin-left': '0'
|
|
});
|
|
jQuery("#container").removeClass("sidebar-closed");
|
|
}
|
|
});
|
|
|
|
//bar chart
|
|
if (jQuery(".custom-custom-bar-chart")) {
|
|
jQuery(".bar").each(function () {
|
|
var i = jQuery(this).find(".value").html();
|
|
jQuery(this).find(".value").html("");
|
|
jQuery(this).find(".value").animate({
|
|
height: i
|
|
}, 2000)
|
|
})
|
|
}
|
|
|
|
}
|
|
|
|
(function(){
|
|
var caches = {};
|
|
$.fn.showGithub = function(user, repo, type, count){
|
|
$(this).each(function(){
|
|
var $e = $(this);
|
|
var user = $e.data('user') || user,
|
|
repo = $e.data('repo') || repo,
|
|
type = $e.data('type') || type || 'watch',
|
|
count = $e.data('count') == 'true' || count || true;
|
|
var $mainButton = $e.html('<span class="github-btn"><a class="btn btn-xs btn-default" href="#" target="_blank"><i class="icon-github"></i> <span class="gh-text"></span></a><a class="gh-count"href="#" target="_blank"></a></span>').find('.github-btn'),
|
|
$button = $mainButton.find('.btn'),
|
|
$text = $mainButton.find('.gh-text'),
|
|
$counter = $mainButton.find('.gh-count');
|
|
|
|
function addCommas(a) {
|
|
return String(a).replace(/(\d)(?=(\d{3})+$)/g, '$1,');
|
|
}
|
|
|
|
function callback(a) {
|
|
if (type == 'watch') {
|
|
$counter.html(addCommas(a.watchers));
|
|
} else {
|
|
if (type == 'fork') {
|
|
$counter.html(addCommas(a.forks));
|
|
} else {
|
|
if (type == 'follow') {
|
|
$counter.html(addCommas(a.followers));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (count) {
|
|
$counter.css('display', 'inline-block');
|
|
}
|
|
}
|
|
|
|
function jsonp(url) {
|
|
var ctx = caches[url] || {};
|
|
caches[url] = ctx;
|
|
if(ctx.onload || ctx.data){
|
|
if(ctx.data){
|
|
callback(ctx.data);
|
|
} else {
|
|
setTimeout(jsonp, 500, url);
|
|
}
|
|
}else{
|
|
ctx.onload = true;
|
|
$.getJSON(url, function(a){
|
|
ctx.onload = false;
|
|
ctx.data = a;
|
|
callback(a);
|
|
});
|
|
}
|
|
}
|
|
|
|
var urlBase = 'https://github.com/' + user + '/' + repo;
|
|
|
|
$button.attr('href', urlBase + '/');
|
|
|
|
if (type == 'watch') {
|
|
$mainButton.addClass('github-watchers');
|
|
$text.html('Star');
|
|
$counter.attr('href', urlBase + '/stargazers');
|
|
} else {
|
|
if (type == 'fork') {
|
|
$mainButton.addClass('github-forks');
|
|
$text.html('Fork');
|
|
$counter.attr('href', urlBase + '/network');
|
|
} else {
|
|
if (type == 'follow') {
|
|
$mainButton.addClass('github-me');
|
|
$text.html('Follow @' + user);
|
|
$button.attr('href', 'https://github.com/' + user);
|
|
$counter.attr('href', 'https://github.com/' + user + '/followers');
|
|
}
|
|
}
|
|
}
|
|
|
|
if (type == 'follow') {
|
|
jsonp('https://api.github.com/users/' + user);
|
|
} else {
|
|
jsonp('https://api.github.com/repos/' + user + '/' + repo);
|
|
}
|
|
|
|
});
|
|
};
|
|
|
|
})();
|
|
|
|
|
|
(function($){
|
|
(function(){
|
|
var caches = {};
|
|
$.fn.showGithub = function(user, repo, type, count){
|
|
|
|
$(this).each(function(){
|
|
var $e = $(this);
|
|
|
|
var user = $e.data('user') || user,
|
|
repo = $e.data('repo') || repo,
|
|
type = $e.data('type') || type || 'watch',
|
|
count = $e.data('count') == 'true' || count || true;
|
|
|
|
var $mainButton = $e.html('<span class="github-btn"><a class="btn btn-xs btn-default" href="#" target="_blank"><i class="icon-github"></i> <span class="gh-text"></span></a><a class="gh-count"href="#" target="_blank"></a></span>').find('.github-btn'),
|
|
$button = $mainButton.find('.btn'),
|
|
$text = $mainButton.find('.gh-text'),
|
|
$counter = $mainButton.find('.gh-count');
|
|
|
|
function addCommas(a) {
|
|
return String(a).replace(/(\d)(?=(\d{3})+$)/g, '$1,');
|
|
}
|
|
|
|
function callback(a) {
|
|
if (type == 'watch') {
|
|
$counter.html(addCommas(a.watchers));
|
|
} else {
|
|
if (type == 'fork') {
|
|
$counter.html(addCommas(a.forks));
|
|
} else {
|
|
if (type == 'follow') {
|
|
$counter.html(addCommas(a.followers));
|
|
}
|
|
}
|
|
}
|
|
|
|
if (count) {
|
|
$counter.css('display', 'inline-block');
|
|
}
|
|
}
|
|
|
|
function jsonp(url) {
|
|
var ctx = caches[url] || {};
|
|
caches[url] = ctx;
|
|
if(ctx.onload || ctx.data){
|
|
if(ctx.data){
|
|
callback(ctx.data);
|
|
} else {
|
|
setTimeout(jsonp, 500, url);
|
|
}
|
|
}else{
|
|
ctx.onload = true;
|
|
$.getJSON(url, function(a){
|
|
ctx.onload = false;
|
|
ctx.data = a;
|
|
callback(a);
|
|
});
|
|
}
|
|
}
|
|
|
|
var urlBase = 'https://github.com/' + user + '/' + repo;
|
|
|
|
$button.attr('href', urlBase + '/');
|
|
|
|
if (type == 'watch') {
|
|
$mainButton.addClass('github-watchers');
|
|
$text.html('Star');
|
|
$counter.attr('href', urlBase + '/stargazers');
|
|
} else {
|
|
if (type == 'fork') {
|
|
$mainButton.addClass('github-forks');
|
|
$text.html('Fork');
|
|
$counter.attr('href', urlBase + '/network');
|
|
} else {
|
|
if (type == 'follow') {
|
|
$mainButton.addClass('github-me');
|
|
$text.html('@' + user);
|
|
$button.attr('href', 'https://github.com/' + user);
|
|
$counter.attr('href', 'https://github.com/' + user + '/followers');
|
|
}
|
|
}
|
|
}
|
|
|
|
if (type == 'follow') {
|
|
jsonp('https://api.github.com/users/' + user);
|
|
} else {
|
|
jsonp('https://api.github.com/repos/' + user + '/' + repo);
|
|
}
|
|
|
|
});
|
|
};
|
|
|
|
})();
|
|
})(jQuery);
|
|
|
|
jQuery(document).ready(function(){
|
|
initializeJS();
|
|
$('[rel=show-github]').showGithub();
|
|
});
|
|
|