$(document).ready(function () { $(".linked-albums.add-item").on("click", function () { linked_albums_open(); set_up_popin(); }); $(".limitReached").html(str_no_search_in_progress); $(".search-cancel-linked-album").hide(); $(".linkedAlbumPopInContainer .searching").hide(); $("#linkedAlbumSearch .search-input").on('input', function () { if ($(this).val() != 0) { $("#linkedAlbumSearch .search-cancel-linked-album").show() } else { $("#linkedAlbumSearch .search-cancel-linked-album").hide(); } // Search input value length required to start searching if ($(this).val().length > 0) { linked_albums_search($(this).val()); } else { $(".limitReached").html(str_no_search_in_progress); $("#searchResult").empty(); } }) $(".search-cancel-linked-album").on("click", function () { $("#linkedAlbumSearch .search-input").val(""); $("#linkedAlbumSearch .search-input").trigger("input"); }) $(".related-categories-container .breadcrumb-item .remove-item").on("click", function () { remove_related_category($(this).attr("id")); }) // Unsaved settings message before leave this page let form_unsaved = false; let user_interacted = false; $('#pictureModify').find(':input').on('focus', function () { user_interacted = true; }); $('#pictureModify').find(':input').on('change', function () { if (user_interacted) { form_unsaved = true; console.log($(this)[0].name, $(this)); } }); $(window).on('beforeunload', function () { if (form_unsaved) { return 'Somes changes are not registered'; } }); $('#pictureModify').on('submit', function () { form_unsaved = false; }); }) function fill_results(cats) { $("#searchResult").empty(); cats.forEach(cat => { $("#searchResult").append( "
" + "" + cat.fullname +"" + "
" ); if (related_categories_ids.includes(cat.id)) { $(".search-result-item #"+ cat.id +".item-add").addClass("notClickable").attr("title", str_already_in_related_cats).on("click", function (event) { event.preventDefault(); }); $(".search-result-item").addClass("notClickable").attr("title", str_already_in_related_cats).on("click", function (event) { event.preventDefault(); }); } else { $(".search-result-item#"+ cat.id).on("click", function () { add_related_category(cat.id, cat.full_name_with_admin_links); }); } }); } function remove_related_category(cat_id) { $(".invisible-related-categories-select option[value="+ cat_id +"]").remove(); $(".invisible-related-categories-select").trigger('change'); $("#" + cat_id).parent().remove(); cat_to_remove_index = related_categories_ids.indexOf(cat_id); if (cat_to_remove_index > -1) { related_categories_ids.splice(cat_to_remove_index, 1); } check_related_categories(); } function add_related_category(cat_id, cat_link_path) { if (!related_categories_ids.includes(cat_id)) { $(".related-categories-container").append( "" ); $(".search-result-item #" + cat_id).addClass("notClickable"); related_categories_ids.push(cat_id); $(".invisible-related-categories-select").append("").trigger('change'); $("#"+ cat_id).on("click", function () { remove_related_category($(this).attr("id")) }) linked_albums_close(); } check_related_categories(); } function check_related_categories() { $(".linked-albums-badge").html(related_categories_ids.length); if (related_categories_ids.length == 0) { $(".linked-albums-badge").addClass("badge-red"); $(".add-item").addClass("highlight"); $(".orphan-photo").html(str_orphan).show(); } else { $(".linked-albums-badge.badge-red").removeClass("badge-red"); $(".add-item.highlight").removeClass("highlight"); $(".orphan-photo").hide(); } }