2021-11-09 23:16:10 +08:00
|
|
|
/* global animateSpinner */
|
2021-05-22 20:41:56 +08:00
|
|
|
(function() {
|
2021-04-18 23:19:16 +08:00
|
|
|
'use strict';
|
|
|
|
|
|
|
|
function initRemoteModalListeners() {
|
2021-04-25 00:43:28 +08:00
|
|
|
$(document).on('click', 'a[data-action="remote-modal"]', function(ev) {
|
|
|
|
ev.stopImmediatePropagation();
|
|
|
|
ev.stopPropagation();
|
|
|
|
ev.preventDefault();
|
2021-05-08 16:05:22 +08:00
|
|
|
|
|
|
|
animateSpinner();
|
2021-05-22 20:41:56 +08:00
|
|
|
$.get(ev.currentTarget.getAttribute('href')).then(function({ modal }) {
|
2021-11-05 22:42:59 +08:00
|
|
|
$(modal)
|
|
|
|
.on('shown.bs.modal', function() {
|
2021-11-09 23:16:10 +08:00
|
|
|
if ($(this).hasClass('project-assignments-modal')) {
|
|
|
|
$(this).on('ajax:success', 'form', function() {
|
|
|
|
ProjectsIndex.loadCardsView();
|
|
|
|
});
|
|
|
|
}
|
2021-11-05 22:42:59 +08:00
|
|
|
$(this).find('.selectpicker').selectpicker();
|
|
|
|
})
|
|
|
|
.on('hidden.bs.modal', function() {
|
|
|
|
$(this).remove();
|
|
|
|
})
|
|
|
|
.modal('show');
|
2021-05-08 16:05:22 +08:00
|
|
|
animateSpinner(null, false);
|
2021-05-02 17:36:10 +08:00
|
|
|
});
|
|
|
|
});
|
2021-04-18 23:19:16 +08:00
|
|
|
}
|
|
|
|
|
2021-04-25 00:43:28 +08:00
|
|
|
$(document).one('turbolinks:load', initRemoteModalListeners);
|
2021-05-02 17:36:10 +08:00
|
|
|
}());
|