2013-05-27 19:45:33 +00:00
|
|
|
define([
|
2014-05-23 08:02:07 +00:00
|
|
|
"jquery",
|
|
|
|
"underscore",
|
|
|
|
"classes/Extension",
|
|
|
|
"text!html/scrollSyncSettingsBlock.html"
|
2014-04-17 18:51:41 +00:00
|
|
|
], function($, _, Extension, scrollSyncSettingsBlockHTML) {
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
var scrollSync = new Extension("scrollSync", "Scroll Sync", true, true);
|
|
|
|
scrollSync.settingsBlock = scrollSyncSettingsBlockHTML;
|
2013-07-28 10:35:04 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
var sectionList;
|
|
|
|
scrollSync.onSectionsCreated = function(sectionListParam) {
|
|
|
|
sectionList = sectionListParam;
|
|
|
|
};
|
2014-04-14 00:21:06 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
var editorElt;
|
|
|
|
var previewElt;
|
|
|
|
var mdSectionList = [];
|
|
|
|
var htmlSectionList = [];
|
|
|
|
var lastEditorScrollTop;
|
|
|
|
var lastPreviewScrollTop;
|
|
|
|
var buildSections = _.debounce(function() {
|
|
|
|
mdSectionList = [];
|
|
|
|
var mdSectionOffset;
|
|
|
|
var scrollHeight;
|
|
|
|
_.each(editorElt.querySelectorAll(".wmd-input-section"), function(delimiterElt) {
|
|
|
|
if(mdSectionOffset === undefined) {
|
|
|
|
// Force start to 0 for the first section
|
|
|
|
mdSectionOffset = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
delimiterElt = delimiterElt.firstChild;
|
|
|
|
// Consider div scroll position
|
|
|
|
var newSectionOffset = delimiterElt.offsetTop;
|
|
|
|
mdSectionList.push({
|
|
|
|
startOffset: mdSectionOffset,
|
|
|
|
endOffset: newSectionOffset,
|
|
|
|
height: newSectionOffset - mdSectionOffset
|
|
|
|
});
|
|
|
|
mdSectionOffset = newSectionOffset;
|
|
|
|
});
|
|
|
|
// Last section
|
|
|
|
scrollHeight = editorElt.scrollHeight;
|
|
|
|
mdSectionList.push({
|
|
|
|
startOffset: mdSectionOffset,
|
|
|
|
endOffset: scrollHeight,
|
|
|
|
height: scrollHeight - mdSectionOffset
|
|
|
|
});
|
2014-03-19 00:33:57 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
// Find corresponding sections in the preview
|
|
|
|
htmlSectionList = [];
|
|
|
|
var htmlSectionOffset;
|
|
|
|
_.each(previewElt.querySelectorAll(".wmd-preview-section"), function(delimiterElt) {
|
|
|
|
if(htmlSectionOffset === undefined) {
|
|
|
|
// Force start to 0 for the first section
|
|
|
|
htmlSectionOffset = 0;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Consider div scroll position
|
|
|
|
var newSectionOffset = delimiterElt.offsetTop;
|
|
|
|
htmlSectionList.push({
|
|
|
|
startOffset: htmlSectionOffset,
|
|
|
|
endOffset: newSectionOffset,
|
|
|
|
height: newSectionOffset - htmlSectionOffset
|
|
|
|
});
|
|
|
|
htmlSectionOffset = newSectionOffset;
|
|
|
|
});
|
|
|
|
// Last section
|
|
|
|
scrollHeight = previewElt.scrollHeight;
|
|
|
|
htmlSectionList.push({
|
|
|
|
startOffset: htmlSectionOffset,
|
|
|
|
endOffset: scrollHeight,
|
|
|
|
height: scrollHeight - htmlSectionOffset
|
|
|
|
});
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
// apply Scroll Link (-10 to have a gap > 9px)
|
|
|
|
lastEditorScrollTop = -10;
|
|
|
|
lastPreviewScrollTop = -10;
|
|
|
|
doScrollSync();
|
|
|
|
}, 500);
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
var isPreviewVisible = true;
|
|
|
|
var isScrollEditor = false;
|
|
|
|
var isScrollPreview = false;
|
|
|
|
var isEditorMoving = false;
|
|
|
|
var isPreviewMoving = false;
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
function getDestScrollTop(srcScrollTop, srcSectionList, destSectionList) {
|
|
|
|
// Find the section corresponding to the offset
|
|
|
|
var sectionIndex;
|
|
|
|
var srcSection = _.find(srcSectionList, function(section, index) {
|
|
|
|
sectionIndex = index;
|
|
|
|
return srcScrollTop < section.endOffset;
|
|
|
|
});
|
|
|
|
if(srcSection === undefined) {
|
|
|
|
// Something very bad happened
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var posInSection = (srcScrollTop - srcSection.startOffset) / (srcSection.height || 1);
|
|
|
|
var destSection = destSectionList[sectionIndex];
|
|
|
|
return destSection.startOffset + destSection.height * posInSection;
|
|
|
|
}
|
2014-04-22 23:39:00 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
var timeoutId;
|
|
|
|
var currentEndCb;
|
2014-05-19 18:05:01 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
function animate(elt, startValue, endValue, stepCb, endCb) {
|
|
|
|
if(currentEndCb) {
|
|
|
|
clearTimeout(timeoutId);
|
|
|
|
currentEndCb();
|
|
|
|
}
|
|
|
|
currentEndCb = endCb;
|
|
|
|
var diff = endValue - startValue;
|
|
|
|
var startTime = Date.now();
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
function tick() {
|
|
|
|
var currentTime = Date.now();
|
|
|
|
var progress = (currentTime - startTime) / 200;
|
|
|
|
if(progress < 1) {
|
|
|
|
var scrollTop = startValue + diff * Math.cos((1 - progress) * Math.PI / 2);
|
|
|
|
elt.scrollTop = scrollTop;
|
|
|
|
stepCb(scrollTop);
|
|
|
|
timeoutId = setTimeout(tick, 1);
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
currentEndCb = undefined;
|
|
|
|
elt.scrollTop = endValue;
|
2014-06-12 20:15:08 +00:00
|
|
|
setTimeout(endCb, 100);
|
2014-05-23 08:02:07 +00:00
|
|
|
}
|
|
|
|
}
|
2014-03-19 00:33:57 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
tick();
|
|
|
|
}
|
2013-09-09 23:32:24 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
var doScrollSync = _.throttle(function() {
|
|
|
|
if(!isPreviewVisible || mdSectionList.length === 0 || mdSectionList.length !== htmlSectionList.length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
var editorScrollTop = editorElt.scrollTop;
|
|
|
|
editorScrollTop < 0 && (editorScrollTop = 0);
|
|
|
|
var previewScrollTop = previewElt.scrollTop;
|
|
|
|
var destScrollTop;
|
|
|
|
// Perform the animation if diff > 9px
|
|
|
|
if(isScrollEditor === true) {
|
|
|
|
if(Math.abs(editorScrollTop - lastEditorScrollTop) <= 9) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
isScrollEditor = false;
|
|
|
|
// Animate the preview
|
|
|
|
lastEditorScrollTop = editorScrollTop;
|
|
|
|
destScrollTop = getDestScrollTop(editorScrollTop, mdSectionList, htmlSectionList);
|
|
|
|
destScrollTop = _.min([
|
|
|
|
destScrollTop,
|
|
|
|
previewElt.scrollHeight - previewElt.offsetHeight
|
|
|
|
]);
|
|
|
|
if(Math.abs(destScrollTop - previewScrollTop) <= 9) {
|
|
|
|
// Skip the animation if diff is <= 9
|
|
|
|
lastPreviewScrollTop = previewScrollTop;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
animate(previewElt, previewScrollTop, destScrollTop, function(currentScrollTop) {
|
|
|
|
isPreviewMoving = true;
|
|
|
|
lastPreviewScrollTop = currentScrollTop;
|
|
|
|
}, function() {
|
|
|
|
isPreviewMoving = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
else if(isScrollPreview === true) {
|
|
|
|
if(Math.abs(previewScrollTop - lastPreviewScrollTop) <= 9) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
isScrollPreview = false;
|
|
|
|
// Animate the editor
|
|
|
|
lastPreviewScrollTop = previewScrollTop;
|
|
|
|
destScrollTop = getDestScrollTop(previewScrollTop, htmlSectionList, mdSectionList);
|
|
|
|
destScrollTop = _.min([
|
|
|
|
destScrollTop,
|
|
|
|
editorElt.scrollHeight - editorElt.offsetHeight
|
|
|
|
]);
|
|
|
|
if(Math.abs(destScrollTop - editorScrollTop) <= 9) {
|
|
|
|
// Skip the animation if diff is <= 9
|
|
|
|
lastEditorScrollTop = editorScrollTop;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
animate(editorElt, editorScrollTop, destScrollTop, function(currentScrollTop) {
|
|
|
|
isEditorMoving = true;
|
|
|
|
lastEditorScrollTop = currentScrollTop;
|
|
|
|
}, function() {
|
|
|
|
isEditorMoving = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}, 100);
|
2013-09-09 23:32:24 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
scrollSync.onLayoutResize = function() {
|
|
|
|
isScrollEditor = true;
|
|
|
|
buildSections();
|
|
|
|
};
|
2014-04-21 01:12:57 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
scrollSync.onFileClosed = function() {
|
|
|
|
mdSectionList = [];
|
|
|
|
};
|
2014-04-22 23:39:00 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
var scrollAdjust = false;
|
|
|
|
scrollSync.onReady = function() {
|
|
|
|
previewElt = document.querySelector(".preview-container");
|
|
|
|
editorElt = document.querySelector("#wmd-input");
|
2013-09-10 16:52:27 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
$(previewElt).scroll(function() {
|
|
|
|
if(isPreviewMoving === false && scrollAdjust === false) {
|
|
|
|
isScrollPreview = true;
|
|
|
|
isScrollEditor = false;
|
|
|
|
doScrollSync();
|
|
|
|
}
|
|
|
|
scrollAdjust = false;
|
|
|
|
});
|
|
|
|
$(editorElt).scroll(function() {
|
|
|
|
if(isEditorMoving === false) {
|
|
|
|
isScrollEditor = true;
|
|
|
|
isScrollPreview = false;
|
|
|
|
doScrollSync();
|
|
|
|
}
|
|
|
|
});
|
2013-05-29 19:55:23 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
$(".preview-panel").on('hide.layout.toggle', function() {
|
|
|
|
isPreviewVisible = false;
|
|
|
|
}).on('shown.layout.toggle', function() {
|
|
|
|
isPreviewVisible = true;
|
|
|
|
});
|
2013-05-25 00:34:04 +00:00
|
|
|
|
2014-05-23 08:02:07 +00:00
|
|
|
// Reimplement anchor scrolling to work without preview
|
|
|
|
$('.extension-preview-buttons .table-of-contents').on('click', 'a', function(evt) {
|
|
|
|
evt.preventDefault();
|
|
|
|
var id = this.hash;
|
2014-08-10 23:47:04 +00:00
|
|
|
var anchorElt = $(id);
|
|
|
|
if(!anchorElt.length) {
|
2014-05-23 08:02:07 +00:00
|
|
|
return;
|
|
|
|
}
|
2014-08-10 23:47:04 +00:00
|
|
|
var previewScrollTop = anchorElt[0].getBoundingClientRect().top - previewElt.getBoundingClientRect().top + previewElt.scrollTop;
|
2014-05-23 08:02:07 +00:00
|
|
|
previewElt.scrollTop = previewScrollTop;
|
|
|
|
var editorScrollTop = getDestScrollTop(previewScrollTop, htmlSectionList, mdSectionList);
|
|
|
|
editorElt.scrollTop = editorScrollTop;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
var previewContentsElt;
|
|
|
|
var previousHeight;
|
|
|
|
scrollSync.onPagedownConfigure = function(editor) {
|
|
|
|
previewContentsElt = document.getElementById("preview-contents");
|
|
|
|
editor.getConverter().hooks.chain("postConversion", function(text) {
|
|
|
|
// To avoid losing scrolling position before elements are fully loaded
|
|
|
|
previousHeight = previewContentsElt.offsetHeight;
|
|
|
|
previewContentsElt.style.height = previousHeight + 'px';
|
|
|
|
return text;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
scrollSync.onPreviewFinished = function() {
|
|
|
|
// Now set the correct height
|
|
|
|
previewContentsElt.style.removeProperty('height');
|
|
|
|
var newHeight = previewContentsElt.offsetHeight;
|
|
|
|
isScrollEditor = true;
|
|
|
|
if(newHeight < previousHeight) {
|
|
|
|
// We expect a scroll adjustment
|
|
|
|
scrollAdjust = true;
|
|
|
|
}
|
|
|
|
buildSections();
|
|
|
|
};
|
|
|
|
|
|
|
|
return scrollSync;
|
2014-03-19 00:33:57 +00:00
|
|
|
});
|