summaryrefslogtreecommitdiff
path: root/public
diff options
context:
space:
mode:
authorCheng-Han, Wu2016-06-21 21:47:11 +0800
committerCheng-Han, Wu2016-06-21 21:47:11 +0800
commit34548195226a06c4ba98dc272e32198aefbd3eb6 (patch)
tree645fa6578553f3d727da9be348204527a1183e2d /public
parentf1db5c96f34eec71873a926db5f94f270dd18f8d (diff)
Update to annotate scrollbar position of revision mark text
Diffstat (limited to 'public')
-rw-r--r--public/css/index.css14
-rw-r--r--public/js/index.js18
2 files changed, 32 insertions, 0 deletions
diff --git a/public/css/index.css b/public/css/index.css
index 5cb33089..27834c8f 100644
--- a/public/css/index.css
+++ b/public/css/index.css
@@ -95,6 +95,20 @@ body {
.CodeMirror-sizer {
margin-bottom: 0px !important;
}
+.CodeMirror-insert-match {
+ background: lawngreen;
+ border: 1px solid limegreen;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ opacity: .5;
+}
+.CodeMirror-delete-match {
+ background: indianred;
+ border: 1px solid darkred;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ opacity: .5;
+}
.ui-content {
height: 100%;
margin-left: 0;
diff --git a/public/js/index.js b/public/js/index.js
index 910ffa16..c6ef16c8 100644
--- a/public/js/index.js
+++ b/public/js/index.js
@@ -1493,6 +1493,10 @@ ui.toolbar.beta.slide.attr("href", noteurl + "/slide");
//modal actions
var revisions = [];
var revisionViewer = null;
+var revisionInsert = [];
+var revisionDelete = [];
+var revisionInsertAnnotation = null;
+var revisionDeleteAnnotation = null;
var revisionList = ui.modal.revision.find('.ui-revision-list');
var revision = null;
var revisionTime = null;
@@ -1559,6 +1563,8 @@ function selectRevision(time) {
var content = revision.content;
revisionViewer.setValue(content);
revisionViewer.scrollTo(null, lastScrollInfo.top);
+ revisionInsert = [];
+ revisionDelete = [];
// mark the text which have been insert or delete
if (revision.patch.length > 0) {
var bias = 0;
@@ -1576,6 +1582,10 @@ function selectRevision(time) {
case 1: // insert
var prePos = revisionViewer.posFromIndex(currIndex);
var postPos = revisionViewer.posFromIndex(currIndex + diff[1].length);
+ revisionInsert.push({
+ from: prePos,
+ to: postPos
+ });
revisionViewer.markText(prePos, postPos, {
css: 'background-color: rgba(230,255,230,0.7); text-decoration: underline;'
});
@@ -1585,6 +1595,10 @@ function selectRevision(time) {
var prePos = revisionViewer.posFromIndex(currIndex);
revisionViewer.replaceRange(diff[1], prePos);
var postPos = revisionViewer.posFromIndex(currIndex + diff[1].length);
+ revisionDelete.push({
+ from: prePos,
+ to: postPos
+ });
revisionViewer.markText(prePos, postPos, {
css: 'background-color: rgba(255,230,230,0.7); text-decoration: line-through;'
});
@@ -1595,6 +1609,8 @@ function selectRevision(time) {
}
}
}
+ revisionInsertAnnotation.update(revisionInsert);
+ revisionDeleteAnnotation.update(revisionDelete);
})
.error(function(err) {
@@ -1620,6 +1636,8 @@ function initRevisionViewer() {
autoRefresh: true,
scrollbarStyle: 'overlay'
});
+ revisionInsertAnnotation = revisionViewer.annotateScrollbar({ className:"CodeMirror-insert-match" });
+ revisionDeleteAnnotation = revisionViewer.annotateScrollbar({ className:"CodeMirror-delete-match" });
}
$('#revisionModalDownload').click(function () {
if (!revision) return;