summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorWu Cheng-Han2016-09-18 16:51:19 +0800
committerWu Cheng-Han2016-09-18 16:51:19 +0800
commit38b14777368c63f449a9362eb5124b9709916d7f (patch)
tree83c2b7cd58abae4ea1e5e76af24cffa38c883f6d /public
parentb7200d7910fa504e0e5e05cd390cca78a7338605 (diff)
Fix syncscroll.js and index.js have circular dependency cause Reference Errors
Diffstat (limited to 'public')
-rw-r--r--public/js/index.js2
-rw-r--r--public/js/syncscroll.js38
2 files changed, 26 insertions, 14 deletions
diff --git a/public/js/index.js b/public/js/index.js
index e8f2dbd1..8216b61a 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -924,6 +924,8 @@ $(window).on('error', function () {
//setNeedRefresh();
});
+setupSyncAreas(ui.area.codemirrorScroll, ui.area.view, ui.area.markdown);
+
function autoSyncscroll() {
if (editorHasFocus()) {
syncScrollToView();
diff --git a/public/js/syncscroll.js b/public/js/syncscroll.js
index 231f141d..96663f77 100644
--- a/public/js/syncscroll.js
+++ b/public/js/syncscroll.js
@@ -116,8 +116,17 @@ var buildMapThrottle = 100;
var viewScrolling = false;
var editScrolling = false;
-ui.area.codemirrorScroll.on('scroll', _.throttle(syncScrollToView, editScrollThrottle));
-ui.area.view.on('scroll', _.throttle(syncScrollToEdit, viewScrollThrottle));
+var editArea = null;
+var viewArea = null;
+var markdownArea = null;
+
+function setupSyncAreas(edit, view, markdown) {
+ editArea = edit;
+ viewArea = view;
+ markdownArea = markdown;
+ editArea.on('scroll', _.throttle(syncScrollToView, editScrollThrottle));
+ viewArea.on('scroll', _.throttle(syncScrollToEdit, viewScrollThrottle));
+}
var scrollMap, lineHeightMap, viewTop, viewBottom;
@@ -136,15 +145,16 @@ var buildMap = _.throttle(buildMapInner, buildMapThrottle);
// That's a bit dirty to process each line everytime, but ok for demo.
// Optimizations are required only for big texts.
function buildMapInner(callback) {
+ if (!viewArea || !markdownArea) return;
var i, offset, nonEmptyList, pos, a, b, _lineHeightMap, linesCount,
acc, _scrollMap;
- offset = ui.area.view.scrollTop() - ui.area.view.offset().top;
+ offset = viewArea.scrollTop() - viewArea.offset().top;
_scrollMap = [];
nonEmptyList = [];
_lineHeightMap = [];
viewTop = 0;
- viewBottom = ui.area.view[0].scrollHeight - ui.area.view.height();
+ viewBottom = viewArea[0].scrollHeight - viewArea.height();
acc = 0;
var lines = editor.getValue().split('\n');
@@ -173,7 +183,7 @@ function buildMapInner(callback) {
// make the first line go top
_scrollMap[0] = viewTop;
- var parts = ui.area.markdown.find('.part').toArray();
+ var parts = markdownArea.find('.part').toArray();
for (i = 0; i < parts.length; i++) {
var $el = $(parts[i]),
t = $el.attr('data-startline') - 1;
@@ -188,7 +198,7 @@ function buildMapInner(callback) {
}
nonEmptyList.push(linesCount);
- _scrollMap[linesCount] = ui.area.view[0].scrollHeight;
+ _scrollMap[linesCount] = viewArea[0].scrollHeight;
pos = 0;
for (i = 1; i < linesCount; i++) {
@@ -214,7 +224,7 @@ function buildMapInner(callback) {
var viewScrollingTimer = null;
function syncScrollToEdit(event, preventAnimate) {
- if (currentMode != modeType.both || !syncscroll) return;
+ if (currentMode != modeType.both || !syncscroll || !editArea) return;
if (preventSyncScrollToEdit) {
if (typeof preventSyncScrollToEdit === 'number') {
preventSyncScrollToEdit--;
@@ -231,7 +241,7 @@ function syncScrollToEdit(event, preventAnimate) {
}
if (editScrolling) return;
- var scrollTop = ui.area.view[0].scrollTop;
+ var scrollTop = viewArea[0].scrollTop;
var lineIndex = 0;
for (var i = 0, l = scrollMap.length; i < l; i++) {
if (scrollMap[i] > scrollTop) {
@@ -273,12 +283,12 @@ function syncScrollToEdit(event, preventAnimate) {
}
if (preventAnimate) {
- ui.area.codemirrorScroll.scrollTop(posTo);
+ editArea.scrollTop(posTo);
} else {
var posDiff = Math.abs(scrollInfo.top - posTo);
var duration = posDiff / 50;
duration = duration >= 100 ? duration : 100;
- ui.area.codemirrorScroll.stop(true, true).animate({
+ editArea.stop(true, true).animate({
scrollTop: posTo
}, duration, "linear");
}
@@ -296,7 +306,7 @@ function viewScrollingTimeoutInner() {
var editScrollingTimer = null;
function syncScrollToView(event, preventAnimate) {
- if (currentMode != modeType.both || !syncscroll) return;
+ if (currentMode != modeType.both || !syncscroll || !viewArea) return;
if (preventSyncScrollToView) {
if (typeof preventSyncScrollToView === 'number') {
preventSyncScrollToView--;
@@ -333,12 +343,12 @@ function syncScrollToView(event, preventAnimate) {
}
if (preventAnimate) {
- ui.area.view.scrollTop(posTo);
+ viewArea.scrollTop(posTo);
} else {
- var posDiff = Math.abs(ui.area.view.scrollTop() - posTo);
+ var posDiff = Math.abs(viewArea.scrollTop() - posTo);
var duration = posDiff / 50;
duration = duration >= 100 ? duration : 100;
- ui.area.view.stop(true, true).animate({
+ viewArea.stop(true, true).animate({
scrollTop: posTo
}, duration, "linear");
}