2016-02-12 23:52:43 +08:00
|
|
|
|
// turbolinks MUST BE THE LAST inclusion
|
|
|
|
|
//= require jquery
|
|
|
|
|
//= require jquery_ujs
|
|
|
|
|
//= require jquery.mousewheel.min
|
|
|
|
|
//= require jquery.scrollTo
|
2016-11-08 20:27:19 +08:00
|
|
|
|
//= require jquery.autosize
|
2016-02-12 23:52:43 +08:00
|
|
|
|
//= require jquery-ui/widget
|
2017-06-23 14:50:12 +08:00
|
|
|
|
//= require jquery-ui/widgets/mouse
|
|
|
|
|
//= require jquery-ui/widgets/draggable
|
|
|
|
|
//= require jquery-ui/widgets/droppable
|
2016-02-12 23:52:43 +08:00
|
|
|
|
//= require jquery.ui.touch-punch.min
|
2018-03-28 20:12:11 +08:00
|
|
|
|
//= require jquery-ui/effects/effect-slide
|
2017-01-05 19:06:59 +08:00
|
|
|
|
//= require jquery.caret.min
|
|
|
|
|
//= require jquery.atwho.min
|
2016-02-12 23:52:43 +08:00
|
|
|
|
//= require hammer
|
|
|
|
|
//= require js.cookie
|
|
|
|
|
//= require spin
|
|
|
|
|
//= require jquery.spin
|
|
|
|
|
//= require bootstrap-sprockets
|
|
|
|
|
//= require moment
|
|
|
|
|
//= require bootstrap-datetimepicker
|
|
|
|
|
//= require bootstrap-colorselector
|
2016-07-21 19:11:15 +08:00
|
|
|
|
//= require bootstrap-tagsinput.min
|
2016-10-04 21:52:48 +08:00
|
|
|
|
//= require bootstrap-checkbox.min
|
2016-07-21 19:11:15 +08:00
|
|
|
|
//= require typeahead.bundle.min
|
2016-02-12 23:52:43 +08:00
|
|
|
|
//= require nested_form_fields
|
2017-01-19 05:40:08 +08:00
|
|
|
|
//= require highlight.pack
|
|
|
|
|
//= require tinymce-jquery
|
2017-12-01 17:48:07 +08:00
|
|
|
|
//= require jsPlumb-2.0.4-min
|
|
|
|
|
//= require jsnetworkx
|
2018-03-15 22:43:16 +08:00
|
|
|
|
//= require bootstrap-select
|
2019-10-25 23:38:15 +08:00
|
|
|
|
//= require_directory ./repository_columns/columns_initializers
|
2017-01-16 22:52:02 +08:00
|
|
|
|
//= require datatables
|
2020-02-22 20:03:51 +08:00
|
|
|
|
//= require clndr.min
|
2018-03-15 22:43:16 +08:00
|
|
|
|
//= require ajax-bootstrap-select.min
|
2016-02-12 23:52:43 +08:00
|
|
|
|
//= require underscore
|
|
|
|
|
//= require i18n.js
|
|
|
|
|
//= require i18n/translations
|
2019-01-23 22:30:23 +08:00
|
|
|
|
//= require users/settings/teams/invite_users_modal
|
2019-10-14 21:27:03 +08:00
|
|
|
|
//= require repository_columns/index
|
2019-04-02 15:56:50 +08:00
|
|
|
|
//= require perfect-scrollbar.min
|
2019-03-06 16:17:34 +08:00
|
|
|
|
//= require shared/inline_editing
|
2019-07-26 00:00:24 +08:00
|
|
|
|
//= require activestorage
|
2019-08-26 21:49:33 +08:00
|
|
|
|
//= require global_activities/side_pane
|
2019-11-20 21:57:53 +08:00
|
|
|
|
//= require protocols/header
|
2019-04-27 02:33:20 +08:00
|
|
|
|
//= require marvinjslauncher
|
2019-12-06 17:39:21 +08:00
|
|
|
|
//= require_tree ./repositories/renderers
|
2019-11-18 21:04:53 +08:00
|
|
|
|
//= require_directory ./repositories/validators
|
2020-02-14 19:07:40 +08:00
|
|
|
|
//= require_directory ./dashboard
|
2019-11-22 23:12:41 +08:00
|
|
|
|
//= require_directory ./sitewide
|
2020-02-28 21:03:08 +08:00
|
|
|
|
//= require sidebar
|
2019-10-25 20:30:45 +08:00
|
|
|
|
//= require turbolinks
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Initialize links for submitting forms. This is useful for submitting
|
|
|
|
|
// forms with clicking on links outside form in cases when other than
|
|
|
|
|
// GET method is used.
|
2019-05-31 21:44:27 +08:00
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
|
function initFormSubmitLinks(el) {
|
|
|
|
|
|
|
|
|
|
el = el || $(document.body);
|
|
|
|
|
$(".form-submit-link", el).click(function () {
|
|
|
|
|
var val = true;
|
|
|
|
|
if ($(this).is("[data-confirm-form]")) {
|
|
|
|
|
val = confirm($(this).data("confirm-form"));
|
|
|
|
|
}
|
|
|
|
|
// Only submit form if confirmed
|
|
|
|
|
if (val) {
|
|
|
|
|
animateLoading();
|
|
|
|
|
$("#" + $(this).data("submit-form")).submit();
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Enable loading bars */
|
|
|
|
|
$(document)
|
|
|
|
|
.bind("ajaxSend", function(){
|
|
|
|
|
animateLoading();
|
|
|
|
|
})
|
|
|
|
|
.bind("ajaxComplete", function(){
|
|
|
|
|
animateLoading(false);
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Show/hide loading indicator on top of page.
|
|
|
|
|
*/
|
|
|
|
|
function animateLoading(start){
|
|
|
|
|
if (start === undefined)
|
|
|
|
|
start = true;
|
|
|
|
|
start = start !== false;
|
|
|
|
|
if (start) {
|
|
|
|
|
$("#loading-animation").addClass("animate");
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$("#loading-animation").removeClass("animate");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Show/hide spinner for a given element.
|
|
|
|
|
* Shows spinner if start is true or not given, hides it if false.
|
|
|
|
|
* Optional parameter options for spin.js options.
|
|
|
|
|
*/
|
2016-08-11 22:05:23 +08:00
|
|
|
|
function animateSpinner(el, start, options) {
|
2017-06-05 20:09:04 +08:00
|
|
|
|
// If overlaying the whole page, put the spinner in the middle of the page
|
2016-07-21 19:11:15 +08:00
|
|
|
|
var overlayPage = false;
|
|
|
|
|
if (_.isUndefined(el) || el === null) {
|
|
|
|
|
overlayPage = true;
|
|
|
|
|
if ($(document.body).has('.loading-overlay-center').length === 0) {
|
|
|
|
|
$(document.body).append('<div class="loading-overlay-center" />');
|
|
|
|
|
}
|
|
|
|
|
el = $(document.body).find('.loading-overlay-center');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (_.isUndefined(start)) {
|
2016-02-12 23:52:43 +08:00
|
|
|
|
start = true;
|
2016-07-21 19:11:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
|
if (start && options) {
|
|
|
|
|
$(el).spin(options);
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
$(el).spin(start);
|
|
|
|
|
}
|
2016-07-21 19:11:15 +08:00
|
|
|
|
|
2016-02-12 23:52:43 +08:00
|
|
|
|
if (start) {
|
2016-07-21 19:11:15 +08:00
|
|
|
|
if (overlayPage) {
|
|
|
|
|
$(document.body).append('<div class="loading-overlay" />');
|
|
|
|
|
} else {
|
|
|
|
|
$(el).append('<div class="loading-overlay" />');
|
|
|
|
|
}
|
|
|
|
|
} else {
|
2016-02-12 23:52:43 +08:00
|
|
|
|
$(".loading-overlay").remove();
|
|
|
|
|
}
|
2016-08-11 22:05:23 +08:00
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
2017-06-05 20:09:04 +08:00
|
|
|
|
/**
|
|
|
|
|
* Automatic handling of show/hide spinner.
|
|
|
|
|
* @param {boolean} redirection Whether page is refreshed/redirected on success
|
|
|
|
|
* @param {boolean} onElement Whether spinner is fixed on the center of fn
|
|
|
|
|
* element or it's positions on the center of whole page
|
|
|
|
|
*/
|
|
|
|
|
$.fn.animateSpinner = function(redirection, onElement) {
|
|
|
|
|
redirection = _.isUndefined(redirection) ? false : redirection;
|
|
|
|
|
onElement = _.isUndefined(onElement) ? false : onElement;
|
|
|
|
|
|
|
|
|
|
$(this)
|
|
|
|
|
.on('ajax:beforeSend', function() {
|
|
|
|
|
onElement ? animateSpinner($(this)) : animateSpinner();
|
|
|
|
|
})
|
|
|
|
|
.on('ajax:error', function(e, data) {
|
|
|
|
|
animateSpinner(null, false);
|
|
|
|
|
})
|
|
|
|
|
.on('ajax:success', function(e, data) {
|
|
|
|
|
if (!redirection) {
|
|
|
|
|
animateSpinner(null, false);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
|
2016-08-11 22:05:23 +08:00
|
|
|
|
/*
|
2016-08-17 15:44:53 +08:00
|
|
|
|
* Prevents user from accidentally leaving page when server is busy
|
|
|
|
|
* and notifies him with a message.
|
|
|
|
|
*
|
|
|
|
|
* NOTE: Don't prevent event propagation (ev.stopPropagation()), or
|
|
|
|
|
* else all events occurring when alert is up will be ignored.
|
2016-08-11 22:05:23 +08:00
|
|
|
|
*/
|
|
|
|
|
function preventLeavingPage(prevent, msg) {
|
|
|
|
|
busy = prevent;
|
2016-08-09 20:39:24 +08:00
|
|
|
|
if (busy && !_.isUndefined(msg)) {
|
|
|
|
|
busyMsg = msg;
|
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
|
}
|
2016-08-11 22:05:23 +08:00
|
|
|
|
var busy = false;
|
|
|
|
|
var busyMsg = I18n.t("general.busy");
|
|
|
|
|
window.onbeforeunload = function () {
|
|
|
|
|
if (busy) {
|
|
|
|
|
var currentMsg = busyMsg;
|
|
|
|
|
// Reset to default message
|
|
|
|
|
busyMsg = I18n.t("general.busy");
|
|
|
|
|
return currentMsg;
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Disable Firefox caching to get rid of issues with pressing
|
|
|
|
|
* browser back, like opening canvas in edit mode.
|
|
|
|
|
*/
|
2016-08-11 22:05:23 +08:00
|
|
|
|
$(window).unload(function () {
|
|
|
|
|
$(window).unbind('unload');
|
|
|
|
|
});
|
2016-02-12 23:52:43 +08:00
|
|
|
|
|
2016-12-28 21:52:03 +08:00
|
|
|
|
var HelperModule = (function(){
|
2016-08-19 16:48:43 +08:00
|
|
|
|
|
2016-12-28 21:52:03 +08:00
|
|
|
|
var helpers = {};
|
|
|
|
|
|
|
|
|
|
helpers.hideFlashMsg = function() {
|
2016-11-11 19:30:48 +08:00
|
|
|
|
var flash = $('.alert');
|
|
|
|
|
if (flash.length > 0) {
|
|
|
|
|
window.setTimeout(function () {
|
|
|
|
|
flash.fadeTo(500, 0).slideUp(500, function () {
|
|
|
|
|
$(this).remove();
|
|
|
|
|
});
|
2018-04-25 16:43:16 +08:00
|
|
|
|
}, 3000);
|
2016-11-11 19:30:48 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2018-04-25 13:32:49 +08:00
|
|
|
|
helpers.dismissAlert = function() {
|
|
|
|
|
$('#alert-flash').on('click', function() {
|
|
|
|
|
$('#alert-flash').alert('close');
|
|
|
|
|
})
|
|
|
|
|
}
|
|
|
|
|
|
2017-03-18 00:56:58 +08:00
|
|
|
|
helpers.flashAlertMsg = function(message, type) {
|
2018-07-09 19:13:44 +08:00
|
|
|
|
var alertType, fasSign;
|
2018-05-16 15:31:19 +08:00
|
|
|
|
|
2017-03-18 00:56:58 +08:00
|
|
|
|
$('#notifications').html('');
|
|
|
|
|
if (type === 'success') {
|
|
|
|
|
alertType = ' alert-success ';
|
2018-07-09 19:13:44 +08:00
|
|
|
|
fasSign = ' fa-check-circle ';
|
2017-03-18 00:56:58 +08:00
|
|
|
|
} else if (type === 'danger') {
|
|
|
|
|
alertType = ' alert-danger ';
|
2020-01-21 22:21:40 +08:00
|
|
|
|
fasSign = ' fa-exclamation-triangle ';
|
2017-03-28 21:14:05 +08:00
|
|
|
|
} else if (type === 'info') {
|
|
|
|
|
alertType = ' alert-info ';
|
2020-01-21 22:21:40 +08:00
|
|
|
|
fasSign = ' fa-info-circle ';
|
2017-11-22 02:20:15 +08:00
|
|
|
|
} else if (type === 'warning') {
|
|
|
|
|
alertType = ' alert-warning ';
|
2020-01-21 22:21:40 +08:00
|
|
|
|
fasSign = ' fa-exclamation-triangle ';
|
2017-03-18 00:56:58 +08:00
|
|
|
|
}
|
2018-04-25 13:32:49 +08:00
|
|
|
|
var htmlSnippet = '<div id="alert-flash" class="alert alert' + alertType +
|
2017-03-18 00:56:58 +08:00
|
|
|
|
'alert-dismissable alert-floating">' +
|
2020-01-17 17:49:41 +08:00
|
|
|
|
'<span class="fas' + fasSign + '"></span> ' +
|
|
|
|
|
'<span class="message">' + message + '</span>' +
|
2018-04-25 16:43:16 +08:00
|
|
|
|
'<button type="button" class="close" ' +
|
2020-01-17 17:49:41 +08:00
|
|
|
|
'data-dismiss="alert" aria-label="Close">' +
|
2018-04-25 16:43:16 +08:00
|
|
|
|
'<span aria-hidden="true">×</span></button>' +
|
2020-01-17 17:49:41 +08:00
|
|
|
|
'</div>';
|
2017-03-18 00:56:58 +08:00
|
|
|
|
$('#notifications').html(htmlSnippet);
|
|
|
|
|
helpers.hideFlashMsg();
|
2018-04-25 13:32:49 +08:00
|
|
|
|
helpers.dismissAlert();
|
2017-03-18 00:56:58 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-07-19 23:56:42 +08:00
|
|
|
|
$(document).on('turbolinks:load', function() {
|
2016-12-28 21:52:03 +08:00
|
|
|
|
helpers.hideFlashMsg();
|
2018-04-25 13:32:49 +08:00
|
|
|
|
helpers.dismissAlert();
|
2016-08-30 19:51:16 +08:00
|
|
|
|
});
|
2016-12-28 21:52:03 +08:00
|
|
|
|
|
|
|
|
|
return helpers;
|
2016-11-11 19:30:48 +08:00
|
|
|
|
})();
|
2017-01-19 05:40:08 +08:00
|
|
|
|
|
|
|
|
|
(function() {
|
2018-07-19 23:56:42 +08:00
|
|
|
|
$(document).on('turbolinks:load', function() {
|
2018-05-15 00:33:57 +08:00
|
|
|
|
// initialize code markup in rich text fields
|
2017-01-20 00:09:25 +08:00
|
|
|
|
$('[class^=language]').each(function(i, block) {
|
2017-01-19 05:40:08 +08:00
|
|
|
|
hljs.highlightBlock(block);
|
|
|
|
|
});
|
2018-05-15 00:33:57 +08:00
|
|
|
|
|
|
|
|
|
// fix dropdown-menu style throughout the app
|
|
|
|
|
$('.dropdown-header').parent('ul').addClass('custom-dropdown-menu');
|
2018-12-18 03:59:22 +08:00
|
|
|
|
});
|
2018-08-02 17:25:14 +08:00
|
|
|
|
|
2018-12-18 03:59:22 +08:00
|
|
|
|
// Close all open modals before caching
|
|
|
|
|
$(document).on('turbolinks:before-cache', function() {
|
|
|
|
|
$('.modal').off().modal('hide');
|
2017-01-19 05:40:08 +08:00
|
|
|
|
});
|
2018-08-24 23:11:59 +08:00
|
|
|
|
|
|
|
|
|
$(document).on('turbolinks:load', function() {
|
2019-03-14 23:08:52 +08:00
|
|
|
|
/* Fix .selectpicker (bootstrap-select) to work with Turbolinks 5.x */
|
2018-08-24 23:11:59 +08:00
|
|
|
|
$(window).trigger('load.bs.select.data-api');
|
2019-03-14 23:08:52 +08:00
|
|
|
|
|
|
|
|
|
/* Clean up TinyMCE */
|
|
|
|
|
tinymce.remove();
|
2018-08-24 23:11:59 +08:00
|
|
|
|
});
|
2018-10-10 22:11:52 +08:00
|
|
|
|
})();
|