-
Notifications
You must be signed in to change notification settings - Fork 5.3k
/
Copy pathscrollbar_custom.js
366 lines (316 loc) · 10.8 KB
/
scrollbar_custom.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
"use strict";
var oop = require("./lib/oop");
var dom = require("./lib/dom");
var event = require("./lib/event");
var EventEmitter = require("./lib/event_emitter").EventEmitter;
dom.importCssString(`.ace_editor>.ace_sb-v div, .ace_editor>.ace_sb-h div{
position: absolute;
background: rgba(128, 128, 128, 0.6);
-moz-box-sizing: border-box;
box-sizing: border-box;
border: 1px solid #bbb;
border-radius: 2px;
z-index: 8;
}
.ace_editor>.ace_sb-v, .ace_editor>.ace_sb-h {
position: absolute;
z-index: 6;
background: none;
overflow: hidden!important;
}
.ace_editor>.ace_sb-v {
z-index: 6;
right: 0;
top: 0;
width: 12px;
}
.ace_editor>.ace_sb-v div {
z-index: 8;
right: 0;
width: 100%;
}
.ace_editor>.ace_sb-h {
bottom: 0;
left: 0;
height: 12px;
}
.ace_editor>.ace_sb-h div {
bottom: 0;
height: 100%;
}
.ace_editor>.ace_sb_grabbed {
z-index: 8;
background: #000;
}`, "ace_scrollbar.css", false);
/**
* An abstract class representing a native scrollbar control.
**/
class ScrollBar {
/**
* Creates a new `ScrollBar`. `parent` is the owner of the scroll bar.
* @param {Element} parent A DOM element
* @param {string} classSuffix
**/
constructor(parent, classSuffix) {
this.element = dom.createElement("div");
this.element.className = "ace_sb" + classSuffix;
this.inner = dom.createElement("div");
this.inner.className = "";
this.element.appendChild(this.inner);
this.VScrollWidth = 12;
this.HScrollHeight = 12;
parent.appendChild(this.element);
this.setVisible(false);
this.skipEvent = false;
event.addMultiMouseDownListener(this.element, [500, 300, 300], this, "onMouseDown");
}
setVisible(isVisible) {
this.element.style.display = isVisible ? "" : "none";
this.isVisible = isVisible;
this.coeff = 1;
}
}
oop.implement(ScrollBar.prototype, EventEmitter);
/**
* Represents a vertical scroll bar.
* @class VScrollBar
**/
/**
* Creates a new `VScrollBar`. `parent` is the owner of the scroll bar.
* @param {Element} parent A DOM element
* @param {Object} renderer An editor renderer
*
* @constructor
**/
class VScrollBar extends ScrollBar {
constructor(parent, renderer) {
super(parent, '-v');
this.scrollTop = 0;
this.scrollHeight = 0;
this.parent = parent;
this.width = this.VScrollWidth;
this.renderer = renderer;
this.inner.style.width = this.element.style.width = (this.width || 15) + "px";
this.$minWidth = 0;
}
/**
* Emitted when the scroll thumb dragged or scrollbar canvas clicked.
* @internal
**/
onMouseDown(eType, e) {
if (eType !== "mousedown") return;
if (event.getButton(e) !== 0 || e.detail === 2) {
return;
}
if (e.target === this.inner) {
var self = this;
var mousePageY = e.clientY;
var onMouseMove = function (e) {
mousePageY = e.clientY;
};
var onMouseUp = function () {
clearInterval(timerId);
};
var startY = e.clientY;
var startTop = this.thumbTop;
var onScrollInterval = function () {
if (mousePageY === undefined) return;
var scrollTop = self.scrollTopFromThumbTop(startTop + mousePageY - startY);
if (scrollTop === self.scrollTop) return;
self._emit("scroll", {data: scrollTop});
};
event.capture(this.inner, onMouseMove, onMouseUp);
var timerId = setInterval(onScrollInterval, 20);
return event.preventDefault(e);
}
var top = e.clientY - this.element.getBoundingClientRect().top - this.thumbHeight / 2;
this._emit("scroll", {data: this.scrollTopFromThumbTop(top)});
return event.preventDefault(e);
}
getHeight() {
return this.height;
}
/**
* Returns new top for scroll thumb
* @param {Number}thumbTop
* @returns {Number}
**/
scrollTopFromThumbTop(thumbTop) {
var scrollTop = thumbTop * (this.pageHeight - this.viewHeight) / (this.slideHeight - this.thumbHeight);
scrollTop = scrollTop >> 0;
if (scrollTop < 0) {
scrollTop = 0;
}
else if (scrollTop > this.pageHeight - this.viewHeight) {
scrollTop = this.pageHeight - this.viewHeight;
}
return scrollTop;
}
/**
* Returns the width of the scroll bar.
* @returns {Number}
**/
getWidth() {
return Math.max(this.isVisible ? this.width : 0, this.$minWidth || 0);
}
/**
* Sets the height of the scroll bar, in pixels.
* @param {Number} height The new height
**/
setHeight(height) {
this.height = Math.max(0, height);
this.slideHeight = this.height;
this.viewHeight = this.height;
this.setScrollHeight(this.pageHeight, true);
}
/**
* Sets the inner and scroll height of the scroll bar, in pixels.
* @param {Number} height The new inner height
*
* @param {boolean} force Forcely update height
**/
setScrollHeight(height, force) {
if (this.pageHeight === height && !force) return;
this.pageHeight = height;
this.thumbHeight = this.slideHeight * this.viewHeight / this.pageHeight;
if (this.thumbHeight > this.slideHeight) this.thumbHeight = this.slideHeight;
if (this.thumbHeight < 15) this.thumbHeight = 15;
this.inner.style.height = this.thumbHeight + "px";
if (this.scrollTop > (this.pageHeight - this.viewHeight)) {
this.scrollTop = (this.pageHeight - this.viewHeight);
if (this.scrollTop < 0) this.scrollTop = 0;
this._emit("scroll", {data: this.scrollTop});
}
}
/**
* Sets the scroll top of the scroll bar.
* @param {Number} scrollTop The new scroll top
**/
setScrollTop(scrollTop) {
this.scrollTop = scrollTop;
if (scrollTop < 0) scrollTop = 0;
this.thumbTop = scrollTop * (this.slideHeight - this.thumbHeight) / (this.pageHeight - this.viewHeight);
this.inner.style.top = this.thumbTop + "px";
}
}
VScrollBar.prototype.setInnerHeight = VScrollBar.prototype.setScrollHeight;
/**
* Represents a horizontal scroll bar.
**/
class HScrollBar extends ScrollBar {
/**
* Creates a new `HScrollBar`. `parent` is the owner of the scroll bar.
* @param {Element} parent A DOM element
* @param {Object} renderer An editor renderer
**/
constructor(parent, renderer) {
super(parent, '-h');
this.scrollLeft = 0;
this.scrollWidth = 0;
this.height = this.HScrollHeight;
this.inner.style.height = this.element.style.height = (this.height || 12) + "px";
this.renderer = renderer;
}
/**
* Emitted when the scroll thumb dragged or scrollbar canvas clicked.
* @internal
**/
onMouseDown(eType, e) {
if (eType !== "mousedown") return;
if (event.getButton(e) !== 0 || e.detail === 2) {
return;
}
if (e.target === this.inner) {
var self = this;
var mousePageX = e.clientX;
var onMouseMove = function (e) {
mousePageX = e.clientX;
};
var onMouseUp = function () {
clearInterval(timerId);
};
var startX = e.clientX;
var startLeft = this.thumbLeft;
var onScrollInterval = function () {
if (mousePageX === undefined) return;
var scrollLeft = self.scrollLeftFromThumbLeft(startLeft + mousePageX - startX);
if (scrollLeft === self.scrollLeft) return;
self._emit("scroll", {data: scrollLeft});
};
event.capture(this.inner, onMouseMove, onMouseUp);
var timerId = setInterval(onScrollInterval, 20);
return event.preventDefault(e);
}
var left = e.clientX - this.element.getBoundingClientRect().left - this.thumbWidth / 2;
this._emit("scroll", {data: this.scrollLeftFromThumbLeft(left)});
return event.preventDefault(e);
}
/**
* Returns the height of the scroll bar.
* @returns {Number}
**/
getHeight() {
return this.isVisible ? this.height : 0;
}
/**
* Returns new left for scroll thumb
* @param {Number} thumbLeft
* @returns {Number}
**/
scrollLeftFromThumbLeft(thumbLeft) {
var scrollLeft = thumbLeft * (this.pageWidth - this.viewWidth) / (this.slideWidth - this.thumbWidth);
scrollLeft = scrollLeft >> 0;
if (scrollLeft < 0) {
scrollLeft = 0;
}
else if (scrollLeft > this.pageWidth - this.viewWidth) {
scrollLeft = this.pageWidth - this.viewWidth;
}
return scrollLeft;
}
/**
* Sets the width of the scroll bar, in pixels.
* @param {Number} width The new width
**/
setWidth(width) {
this.width = Math.max(0, width);
this.element.style.width = this.width + "px";
this.slideWidth = this.width;
this.viewWidth = this.width;
this.setScrollWidth(this.pageWidth, true);
}
/**
* Sets the inner and scroll width of the scroll bar, in pixels.
* @param {Number} width The new inner width
* @param {boolean} force Forcely update width
**/
setScrollWidth(width, force) {
if (this.pageWidth === width && !force) return;
this.pageWidth = width;
this.thumbWidth = this.slideWidth * this.viewWidth / this.pageWidth;
if (this.thumbWidth > this.slideWidth) this.thumbWidth = this.slideWidth;
if (this.thumbWidth < 15) this.thumbWidth = 15;
this.inner.style.width = this.thumbWidth + "px";
if (this.scrollLeft > (this.pageWidth - this.viewWidth)) {
this.scrollLeft = (this.pageWidth - this.viewWidth);
if (this.scrollLeft < 0) this.scrollLeft = 0;
this._emit("scroll", {data: this.scrollLeft});
}
}
/**
* Sets the scroll left of the scroll bar.
* @param {Number} scrollLeft The new scroll left
**/
setScrollLeft(scrollLeft) {
this.scrollLeft = scrollLeft;
if (scrollLeft < 0) scrollLeft = 0;
this.thumbLeft = scrollLeft * (this.slideWidth - this.thumbWidth) / (this.pageWidth - this.viewWidth);
this.inner.style.left = (this.thumbLeft) + "px";
}
}
HScrollBar.prototype.setInnerWidth = HScrollBar.prototype.setScrollWidth;
exports.ScrollBar = VScrollBar; // backward compatibility
exports.ScrollBarV = VScrollBar; // backward compatibility
exports.ScrollBarH = HScrollBar; // backward compatibility
exports.VScrollBar = VScrollBar;
exports.HScrollBar = HScrollBar;