1
0

nightly commit

This commit is contained in:
2021-01-19 22:20:11 +08:00
parent f539b7e11f
commit f64bf9a786
22 changed files with 485 additions and 293 deletions

View File

@@ -2,6 +2,7 @@ function cnn_headerNav_Insert() {
$.ajax({
url: $("#jsrender-tmpl-headerNav").attr('src'),
type: "GET",
async: false,
success: function (data) {
var tmpl = $.templates(data);
$('body').prepend(tmpl.render());
@@ -9,3 +10,49 @@ function cnn_headerNav_Insert() {
});
}
function cnn_headerNav_LoggedRefresh() {
if (cnn_api_tokenValid()) {
// logged, show all nav button and logout button
$("#cnn-header-nav-home").show();
$("#cnn-header-nav-calendar").show();
$("#cnn-header-nav-todo").show();
$("#cnn-header-nav-admin").show();
$("#cnn-header-user-login").hide();
$("#cnn-header-user-logout").show();
} else {
$("#cnn-header-nav-home").show();
$("#cnn-header-nav-calendar").hide();
$("#cnn-header-nav-todo").hide();
$("#cnn-header-nav-admin").hide();
$("#cnn-header-user-login").show();
$("#cnn-header-user-logout").hide();
}
}
// bind language process and internal process function such as logout and expand menu
function cnn_headerNav_BindEvents() {
// bind function
$("#cnn-header-language > *").each(function(){
$(this).click(function(){
ccn_i18n_ChangeLanguage($(this).attr("language"));
ccn_i18n_ApplyLanguage();
});
});
// todo: bind logout
// bind burger menu
// copy from bulma website
// Check for click events on the navbar burger icon
$(".navbar-burger").click(function() {
// Toggle the "is-active" class on both the "navbar-burger" and the "navbar-menu"
$(".navbar-burger").toggleClass("is-active");
$(".navbar-menu").toggleClass("is-active");
});
}