scinote-web/app/assets/javascripts/shared/swap_remote_container.js
2023-01-22 22:23:18 +01:00

27 lines
878 B
JavaScript

(function() {
'use strict';
function initSwapRemoteContainerListeners() {
$(document).on('click', 'a[data-action="swap-remote-container"]', function(ev) {
let element = ev.currentTarget;
ev.stopImmediatePropagation();
ev.stopPropagation();
ev.preventDefault();
$.get(element.getAttribute('href')).then(function({ html, flash }) {
let targetID = element.getAttribute('data-target');
let targetElement = $(element).closest(targetID);
let newContainer = $(html).find(targetID).length ? $(html).find(targetID) : $(html);
targetElement.replaceWith(newContainer);
newContainer.find('.selectpicker').selectpicker();
if (flash) {
HelperModule.flashAlertMsg(flash, 'success');
}
});
});
}
$(document).one('turbolinks:load', initSwapRemoteContainerListeners);
}());