LiDa_Search/js/minimap.js

150 lines
5.2 KiB
JavaScript
Raw Normal View History

2023-02-06 12:51:34 +01:00
/**
*
*/
const displayCantoId = '#displaycanto';
2023-02-24 19:53:06 +01:00
const displayCantoWrapperId = '#displaycantoWrapper';
const minimapviewerId = '#minimapviewer';
const displayminimapId = '#displayminimap';
const visCantoClass = '.visCanto';
const tableMainHeight = 0.95; //.tableMain {height: 95%;}
const cantoHeight = 0.65;
2023-02-06 12:51:34 +01:00
let minimap = document.createElement('div');
let viewer = document.createElement('div');
let minimapContent = document.createElement('iframe');
let realScale;
let currentMinimap = '';
let initOffset = '';
2023-02-06 12:51:34 +01:00
function drawMinimap(name){
var cantoHeightToSet = $("body")[0].clientHeight*cantoHeight;
var maxCantoHeightToSet = $("body")[0].clientHeight*tableMainHeight-110;
$(visCantoClass).css("max-height", maxCantoHeightToSet);
$(visCantoClass).css("height", cantoHeightToSet);
$(displayCantoId).css("max-height", maxCantoHeightToSet);
$(displayCantoId).css("height", cantoHeightToSet);
currentMinimap = name;
initOffset = parseInt($("body").css("padding-top").replace("px", ""))+63;
showMinimap();
$(displayCantoId).scrollTop(0);
$(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; },
drag: function(event, ui) {
minimapScrolling = true;
2023-02-24 19:53:06 +01:00
$(displayCantoWrapperId).scrollTop((ui.offset.top - minimapTopPos) / realScale);
}
});
}
2023-02-06 12:51:34 +01:00
function showMinimap() {
viewer.className = 'minimap__viewer';
viewer.id = 'minimapviewer';
minimapContent.className = 'minimap__content';
minimap.append(viewer, minimapContent);
$(displayminimapId).append(minimap);
2023-02-06 12:51:34 +01:00
let html = $(currentMinimap)[0].outerHTML;
2023-02-06 12:51:34 +01:00
if (html == null | html == '')
return;
let iFrameDoc = minimapContent.contentWindow.document;
2023-02-06 12:51:34 +01:00
var cssLinkb = document.createElement("link");
cssLinkb.href = $("#" + currStyle + "-Boot")[0].href;
2023-02-06 12:51:34 +01:00
cssLinkb.rel = "stylesheet";
cssLinkb.type = "text/css";
var cssLinkscroll = document.createElement("link");
cssLinkscroll.href = $("#" + currStyle + "-Custom")[0].href;
2023-02-06 12:51:34 +01:00
cssLinkscroll.rel = "stylesheet";
cssLinkscroll.type = "text/css";
iFrameDoc.open();
iFrameDoc.write('<div class="blog-main w-100 " style="display: d-flex;">'); // da pulire...
2023-02-06 12:51:34 +01:00
iFrameDoc.write(html);
iFrameDoc.write('</div>');
2023-02-06 12:51:34 +01:00
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;');
2023-02-06 12:51:34 +01:00
var infoHeightToSet = $("body")[0].clientHeight*tableMainHeight - $(visCantoClass)[0].clientHeight-2-63-2
$("#displayinfo").css("maxHeight", infoHeightToSet+"px");
$("#displayinfo").css("height", infoHeightToSet+"px");
$(".visInfo").css("height", (infoHeightToSet+4)+"px");
2023-02-06 12:51:34 +01:00
getDimensionsDiv();
2023-02-24 19:53:06 +01:00
//window.addEventListener('resize', getDimensionsDiv);
2023-02-06 12:51:34 +01:00
}
function getDimensionsDiv(onlyViewer = 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; //h prevista del canto nella minimap 64: padding pr + blank space
var miniCantoHeight = srcCantoHeight; //h prevista del canto nella minimap 16x2: padding py
var resizableWidth = $(visCantoClass)[0].clientWidth;
var resizableHeight = $(visCantoClass)[0].clientHeight;
var resizableRatio = resizableHeight/resizableWidth;
var widthRatio = resizableWidth/srcCantoWidth;
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)-2; // -2 = bordi
let viewerWidth = Math.min(viewerHeight/resizableRatio, maxWidth-2); // -2 bordi
viewer.style.height = viewerHeight + "px";
viewer.style.width = viewerWidth + "px";
$(displayminimapId).height((miniCantoHeight*realScale)+6);
trackScrollCanto();
};
2023-02-06 12:51:34 +01:00
function trackScrollCanto() {
//var minimapHeight = $(displayminimapId)[0].clientHeight;
var minimapHeight = ($(currentMinimap)[0].clientHeight+32)*realScale;
2023-02-24 19:53:06 +01:00
//var posDbefore = $(displayCantoId).scrollTop();
var posDbefore = $(displayCantoWrapperId).scrollTop();
//console.log(posDbefore);
var srcCantoHeight = $(currentMinimap)[0].clientHeight;
var posAfter = (minimapHeight*posDbefore)/(srcCantoHeight*1.005);
//var posAfter = (minimapHeight*posDbefore)/(srcCantoHeight*1.088);
$(minimapviewerId).offset({ top: initOffset + posAfter});
2023-02-06 12:51:34 +01:00
}
2023-02-06 12:51:34 +01:00
function hideMinimap() {
$('.canto').each(function() {
$(this).attr("style", 'display:none');
});
//$(".minimap__container").remove();
2023-02-06 12:51:34 +01:00
currentMinimap = ''
}