/** * */ const displayCantoId = '#displaycanto'; const displayCantoWrapperId = '#displaycantoWrapper'; const minimapviewerId = '#minimapviewer'; const displayminimapId = '#displayminimap'; const visCantoClass = '.visCanto'; const fillerClass = '.filler'; const bodyScript = ' ' let minimap = document.createElement('div'); let viewer = document.createElement('div'); let minimapContent = document.createElement('iframe'); let realScale; let currentMinimap = ''; let initOffset = ''; let correctionFactor = 1; let scrollCorrectionFactor = 0.997; function drawMinimap(name, onlyContent = false, cantoOffset = 0){ var cantoHeightToSet = $("body")[0].clientHeight*cssCantoHeight; var maxCantoHeightToSet = $("body")[0].clientHeight*cssTableMainHeight-110; // 63 padding top + 47 margine bottom $(visCantoClass).css("max-height", maxCantoHeightToSet); $(displayCantoId).css("max-height", maxCantoHeightToSet); currentMinimap = name; if (currentMinimap == '#vistaFrasi') { //correctionFactor = 1.003; correctionFactor = 1.009; scrollCorrectionFactor = 0.997; //scrollCorrectionFactor = 1; } else { correctionFactor = 1; scrollCorrectionFactor = 0.997; }; initOffset = parseInt($("body").css("padding-top").replace("px", ""))+63; if ($(displayminimapId).lenght > 0) { $(displayminimapId)[0].remove(); } showMinimap(onlyContent); if (onlyContent == false) { $(displayCantoWrapperId).scrollTop(cantoOffset); $(minimapviewerId).offset({ top: initOffset}); var minimapTopPos = $(minimapviewerId).offset().top; $(minimapviewerId).draggable({ axis: "y", containment: $(displayminimapId), scroll: false, start: function(event, ui) { minimapScrolling = true; }, stop: function(event, ui) { minimapScrolling = false; latestOffset = $(displayCantoWrapperId).scrollTop() }, drag: function(event, ui) { minimapScrolling = true; $(displayCantoWrapperId).scrollTop((ui.offset.top - minimapTopPos) / (realScale*correctionFactor)); } }); trackScrollCanto(); }; } function showMinimap(onlyContent) { viewer.className = 'minimap__viewer'; viewer.id = 'minimapviewer'; minimapContent.className = 'minimap__content'; minimap.append(viewer, minimapContent); $(displayminimapId).append(minimap); let html = $(currentMinimap)[0].outerHTML; if (html == null | html == '') return; let iFrameDoc = minimapContent.contentWindow.document; var cssLinkb = document.createElement("link"); cssLinkb.href = $("#" + currStyle + "-Boot")[0].href; cssLinkb.rel = "stylesheet"; cssLinkb.type = "text/css"; var cssLinkscroll = document.createElement("link"); cssLinkscroll.href = $("#" + currStyle + "-Custom")[0].href; cssLinkscroll.rel = "stylesheet"; cssLinkscroll.type = "text/css"; iFrameDoc.open(); iFrameDoc.write('
'); // da pulire... iFrameDoc.write(html); iFrameDoc.write('
'); iFrameDoc.write(bodyScript); iFrameDoc.close(); iFrameDoc.head.appendChild(cssLinkb); iFrameDoc.head.appendChild(cssLinkscroll); let bgCanto = $(visCantoClass).css('background-color'); $('iframe').contents().find('body').css('background-color', bgCanto + ' !important;'); var infoHeightToSet = $("body")[0].clientHeight*cssTableMainHeight - $(visCantoClass)[0].clientHeight-2-63-2-46 $("#displayinfo").css("maxHeight", infoHeightToSet+"px"); $("#displayinfo").css("height", infoHeightToSet+"px"); $("#displaynote").css("maxHeight", infoHeightToSet+"px"); $("#displaynote").css("height", infoHeightToSet+"px"); $(".visInfo").css("height", (infoHeightToSet+4)+"px"); getDimensionsDiv(false, onlyContent); } function getDimensionsDiv(onlyViewer = false, onlyContent = false) { var srcCantoWidth = $(currentMinimap)[0].clientWidth; var srcCantoHeight = $(currentMinimap)[0].clientHeight; var maxHeight = ($("#colMinimap")[0].clientHeight)-68; //h attuale dello spazio minimap; -63 top padding, -1 bordo col, -4 bordi iframe var maxWidth = $(displayminimapId)[0].clientWidth; //w attuale della minimap (css) var miniCantoWidth = srcCantoWidth+64; //w prevista del canto nella minimap 64: padding pr + blank space var miniCantoHeight = srcCantoHeight*correctionFactor; //h prevista del canto nella minimap var resizableWidth = $(visCantoClass)[0].clientWidth; var resizableHeight = $(visCantoClass)[0].clientHeight; var resizableRatio = resizableHeight/resizableWidth; var heightRatio = resizableHeight/srcCantoHeight; if (onlyViewer == false) { realScale= Math.min((maxWidth/miniCantoWidth), (maxHeight/miniCantoHeight), 1); minimapContent.style.transform = `scale(${realScale})`; minimapContent.style.height = miniCantoHeight + "px"; minimapContent.style.width = maxWidth/realScale + "px"; } let viewerHeight = (miniCantoHeight*realScale*heightRatio/correctionFactor)-2; // -2 = bordi let viewerWidth = Math.min(viewerHeight/resizableRatio, maxWidth-3)+2; // -3 bordi var displayminimapHeight = (miniCantoHeight*realScale)+6; $(displayminimapId).height(displayminimapHeight); $(fillerClass).height(Math.max(maxHeight-displayminimapHeight)+2, 0); if (onlyContent == false) { viewer.style.height = viewerHeight + "px"; viewer.style.width = viewerWidth + "px"; trackScrollCanto(); }; }; function trackScrollCanto() { var minimapHeight = ($(currentMinimap)[0].clientHeight+32)*realScale; var posDbefore = $(displayCantoWrapperId).scrollTop(); var srcCantoHeight = $(currentMinimap)[0].clientHeight; var posAfter = (minimapHeight*posDbefore*correctionFactor)/(srcCantoHeight*scrollCorrectionFactor); $(minimapviewerId).offset({ top: initOffset + posAfter}); latestOffset = posDbefore; };