mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
107 lines
2.8 KiB
JavaScript
107 lines
2.8 KiB
JavaScript
/* globals animateSpinner */
|
|
|
|
(function() {
|
|
'use strict';
|
|
|
|
/* Init about modal */
|
|
$("[data-trigger='about-modal']").on('click', function(ev) {
|
|
ev.preventDefault();
|
|
$('[data-role=about-modal]').modal('show');
|
|
});
|
|
|
|
/* Loading overlay for search */
|
|
$('#search-bar').submit(function() {
|
|
if ($('#update-canvas')) {
|
|
$(document.body).spin(true);
|
|
setTimeout(function() {
|
|
$('.spinner').remove();
|
|
}, 1000);
|
|
} else {
|
|
animateSpinner();
|
|
}
|
|
});
|
|
|
|
function loadDropdownNotifications() {
|
|
var button = $('#notifications-dropdown');
|
|
var noRecentText = $('.dropdown-notifications .notifications-no-recent');
|
|
button
|
|
.on('click', function() {
|
|
noRecentText.hide();
|
|
$.ajax({
|
|
url: button.attr('data-href'),
|
|
type: 'GET',
|
|
dataType: 'json',
|
|
beforeSend: animateSpinner($('.notifications-dropdown-header'), true),
|
|
success: function(data) {
|
|
var ul = $('.dropdown-menu.dropdown-notifications');
|
|
|
|
$('.notifications-dropdown-header')
|
|
.nextAll('li.notification')
|
|
.remove();
|
|
$('.notifications-dropdown-header')
|
|
.after(data.html);
|
|
animateSpinner($('.notifications-dropdown-header'), false);
|
|
if (ul.children('.notification').length === 0) {
|
|
noRecentText.show();
|
|
}
|
|
}
|
|
});
|
|
$('#count-notifications').hide();
|
|
toggleNotificationBellPosition();
|
|
});
|
|
}
|
|
|
|
function loadUnseenNotificationsNumber() {
|
|
var notificationCount = $('#count-notifications');
|
|
$.ajax({
|
|
url: notificationCount.attr('data-href'),
|
|
type: 'GET',
|
|
dataType: 'json',
|
|
success: function(data) {
|
|
notificationCount.html('');
|
|
if (data.notificationNmber > 0) {
|
|
notificationCount.html(data.notificationNmber);
|
|
notificationCount.show();
|
|
toggleNotificationBellPosition();
|
|
} else {
|
|
notificationCount.hide();
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
function toggleNotificationBellPosition() {
|
|
var notificationCount = $('#count-notifications');
|
|
var button = $('#notifications-dropdown');
|
|
|
|
if (notificationCount.is(':hidden')) {
|
|
button
|
|
.find('.fa-bell')
|
|
.css('position', 'relative');
|
|
} else {
|
|
button
|
|
.find('.fa-bell')
|
|
.css('position', 'absolute');
|
|
}
|
|
}
|
|
|
|
function initGlobalSwitchForm() {
|
|
var teamSwitch = $('#team-switch');
|
|
teamSwitch
|
|
.find('.dropdown-menu .change-team')
|
|
.on('click', function() {
|
|
$('#user_current_team_id')
|
|
.val($(this).attr('data-id'));
|
|
|
|
teamSwitch
|
|
.find('form')
|
|
.submit();
|
|
});
|
|
}
|
|
|
|
// init
|
|
loadDropdownNotifications();
|
|
loadUnseenNotificationsNumber();
|
|
toggleNotificationBellPosition();
|
|
initGlobalSwitchForm();
|
|
}());
|