|
1
|
|
|
Mivhak.component('tab-pane', { |
|
|
|
|
|
|
2
|
|
|
template: '<div class="mivhak-tab-pane"><div class="mivhak-tab-pane-inner"></div></div>', |
|
3
|
|
|
props: { |
|
4
|
|
|
resource: null, |
|
5
|
|
|
editor: null, |
|
6
|
|
|
index: null, |
|
7
|
|
|
padding: 10, |
|
8
|
|
|
mivhakInstance: null |
|
9
|
|
|
}, |
|
10
|
|
|
created: function() { |
|
11
|
|
|
this.setEditor(); |
|
12
|
|
|
this.fetchRemoteSource(); |
|
13
|
|
|
this.markLines(); |
|
14
|
|
|
|
|
15
|
|
|
this.$el = $(this.resource.pre).wrap(this.$el).parent().parent(); |
|
16
|
|
|
this.$el.find('.mivhak-tab-pane-inner').css({margin: this.mivhakInstance.options.padding}); |
|
17
|
|
|
this.setScrollbars(); |
|
18
|
|
|
}, |
|
19
|
|
|
methods: { |
|
20
|
|
|
getTheme: function() { |
|
21
|
|
|
return this.mivhakInstance.options.theme === 'light' ? 'clouds' : 'ambiance'; |
|
22
|
|
|
}, |
|
23
|
|
|
fetchRemoteSource: function() { |
|
24
|
|
|
var $this = this; |
|
25
|
|
|
if(this.resource.source) { |
|
26
|
|
|
$.ajax(this.resource.source).done(function(res){ |
|
27
|
|
|
$this.editor.setValue(res,-1); |
|
28
|
|
|
|
|
29
|
|
|
// Refresh viewport height |
|
30
|
|
|
$this.mivhakInstance.callMethod('setHeight',$this.mivhakInstance.options.height); |
|
31
|
|
|
|
|
32
|
|
|
// Refresh scrollbars |
|
33
|
|
|
raf(function(){ |
|
34
|
|
|
$this.vscroll.refresh(); |
|
35
|
|
|
$this.hscroll.refresh(); |
|
36
|
|
|
}); |
|
37
|
|
|
}); |
|
38
|
|
|
|
|
39
|
|
|
} |
|
40
|
|
|
}, |
|
41
|
|
|
setScrollbars: function() { |
|
42
|
|
|
var $inner = $(this.resource.pre), |
|
43
|
|
|
$outer = this.$el.find('.mivhak-tab-pane-inner'); |
|
44
|
|
|
|
|
45
|
|
|
this.vscroll = Mivhak.render('vertical-scrollbar',{editor: this.editor, $inner: $inner, $outer: $outer, mivhakInstance: this.mivhakInstance}); |
|
|
|
|
|
|
46
|
|
|
this.hscroll = Mivhak.render('horizontal-scrollbar',{editor: this.editor, $inner: $inner, $outer: $outer, mivhakInstance: this.mivhakInstance}); |
|
47
|
|
|
|
|
48
|
|
|
this.$el.append(this.vscroll.$el, this.hscroll.$el); |
|
49
|
|
|
}, |
|
50
|
|
|
show: function() { |
|
51
|
|
|
this.$el.addClass('mivhak-tab-pane-active'); |
|
52
|
|
|
this.editor.focus(); |
|
53
|
|
|
this.editor.gotoLine(0); // Needed in order to get focus |
|
54
|
|
|
|
|
55
|
|
|
// Recalculate scrollbar positions based on the now visible element |
|
56
|
|
|
this.vscroll.initialize(); |
|
57
|
|
|
this.hscroll.initialize(); |
|
58
|
|
|
}, |
|
59
|
|
|
hide: function() { |
|
60
|
|
|
this.$el.removeClass('mivhak-tab-pane-active'); |
|
61
|
|
|
}, |
|
62
|
|
|
setEditor: function() { |
|
63
|
|
|
|
|
64
|
|
|
// Remove redundant space from code |
|
65
|
|
|
this.resource.pre.textContent = this.resource.pre.textContent.trim(); |
|
66
|
|
|
|
|
67
|
|
|
// Set editor options |
|
68
|
|
|
this.editor = ace.edit(this.resource.pre); |
|
|
|
|
|
|
69
|
|
|
this.editor.setReadOnly(!this.mivhakInstance.options.editable); |
|
70
|
|
|
this.editor.setTheme("ace/theme/"+this.getTheme()); |
|
71
|
|
|
this.editor.setShowPrintMargin(false); |
|
72
|
|
|
this.editor.renderer.setShowGutter(this.mivhakInstance.options.lineNumbers); |
|
73
|
|
|
this.editor.getSession().setMode("ace/mode/"+this.resource.lang); |
|
74
|
|
|
this.editor.getSession().setUseWorker(false); // Disable syntax checking |
|
75
|
|
|
this.editor.getSession().setUseWrapMode(true); // Set initial line wrapping |
|
76
|
|
|
|
|
77
|
|
|
this.editor.setOptions({ |
|
78
|
|
|
maxLines: Infinity, |
|
79
|
|
|
firstLineNumber: this.resource.startLine, |
|
80
|
|
|
highlightActiveLine: false, |
|
81
|
|
|
fontSize: parseInt(14) |
|
82
|
|
|
}); |
|
83
|
|
|
|
|
84
|
|
|
// Update source content for the live preview |
|
85
|
|
|
if(this.mivhakInstance.options.editable) |
|
86
|
|
|
{ |
|
87
|
|
|
this.editor.getSession().on('change', (function() { |
|
88
|
|
|
this.mivhakInstance.resources.update(this.index, this.editor.getValue()); |
|
89
|
|
|
}).bind(this)); |
|
90
|
|
|
} |
|
91
|
|
|
|
|
92
|
|
|
// Move view to show cursor position when the cursor moves |
|
93
|
|
|
this.editor.session.selection.on("changeCursor", (function(e){ |
|
94
|
|
|
e.preventDefault(); |
|
95
|
|
|
raf((function(){ |
|
96
|
|
|
var cursor = this.$el.find('.ace_cursor')[0].getBoundingClientRect(), |
|
97
|
|
|
viewport = this.$el.find('.mivhak-tab-pane-inner')[0].getBoundingClientRect(), |
|
98
|
|
|
up = viewport.top - cursor.top, |
|
99
|
|
|
down = cursor.top + cursor.height - viewport.top - viewport.height, |
|
100
|
|
|
left = parseInt(this.$el.find('.ace_content').css('margin-left').replace('px','')); |
|
101
|
|
|
|
|
102
|
|
|
// Move the scrollbar vertically only if the cursor leaves the viewport |
|
103
|
|
|
this.vscroll.doScroll('up',Math.max(0, up)); // |
|
104
|
|
|
this.vscroll.doScroll('down',Math.max(0, down)); |
|
105
|
|
|
this.vscroll.moveBar(); |
|
106
|
|
|
|
|
107
|
|
|
// Ace Editor automatically moves the viewport, so we just need to move the scrollbar accordingly |
|
108
|
|
|
this.hscroll.state.l = -left; |
|
109
|
|
|
this.hscroll.moveBar(); |
|
110
|
|
|
}).bind(this)); |
|
111
|
|
|
}).bind(this)); |
|
112
|
|
|
}, |
|
113
|
|
|
markLines: function() |
|
114
|
|
|
{ |
|
115
|
|
|
if(!this.resource.mark) return; |
|
|
|
|
|
|
116
|
|
|
var ranges = strToRange(this.resource.mark), |
|
117
|
|
|
i = ranges.length, |
|
118
|
|
|
AceRange = ace.require("ace/range").Range; |
|
|
|
|
|
|
119
|
|
|
|
|
120
|
|
|
while(i--) |
|
121
|
|
|
{ |
|
122
|
|
|
this.editor.session.addMarker( |
|
123
|
|
|
new AceRange(ranges[i].start, 0, ranges[i].end, 1), // Define the range of the marker |
|
124
|
|
|
"ace_active-line", // Set the CSS class for the marker |
|
125
|
|
|
"fullLine" // Marker type |
|
126
|
|
|
); |
|
127
|
|
|
} |
|
128
|
|
|
} |
|
129
|
|
|
} |
|
130
|
|
|
}); |
This checks looks for references to variables that have not been declared. This is most likey a typographical error or a variable has been renamed.
To learn more about declaring variables in Javascript, see the MDN.