-
Notifications
You must be signed in to change notification settings - Fork 29.5k
/
builder.ts
1435 lines (1183 loc) · 39.7 KB
/
builder.ts
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
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
'use strict';
import 'vs/css!./builder';
import { TPromise } from 'vs/base/common/winjs.base';
import * as types from 'vs/base/common/types';
import { IDisposable, dispose } from 'vs/base/common/lifecycle';
import * as strings from 'vs/base/common/strings';
import * as assert from 'vs/base/common/assert';
import * as DOM from 'vs/base/browser/dom';
/**
* Welcome to the monaco builder. The recommended way to use it is:
*
* import Builder = require('vs/base/browser/builder');
* let $ = Builder.$;
* $(....).fn(...);
*
* See below for examples how to invoke the $():
*
* $() - creates an offdom builder
* $(builder) - wraps the given builder
* $(builder[]) - wraps the given builders into a multibuilder
* $('div') - creates a div
* $('.big') - creates a div with class `big`
* $('#head') - creates a div with id `head`
* $('ul#head') - creates an unordered list with id `head`
* $('<a href="back"></a>') - constructs a builder from the given HTML
* $('a', { href: 'back'}) - constructs a builder, similarly to the Builder#element() call
*/
export interface QuickBuilder {
(): Builder;
(builders: Builder[]): Builder;
(element: HTMLElement): Builder;
(element: HTMLElement[]): Builder;
(window: Window): Builder;
(htmlOrQuerySyntax: string): Builder; // Or, MultiBuilder
(name: string, args?: any, fn?: (builder: Builder) => any): Builder;
(one: string, two: string, three: string): Builder;
(builder: Builder): Builder;
}
// --- Implementation starts here
let MS_DATA_KEY = '_msDataKey';
let DATA_BINDING_ID = '__$binding';
let LISTENER_BINDING_ID = '__$listeners';
let VISIBILITY_BINDING_ID = '__$visibility';
function data(element: any): any {
if (!element[MS_DATA_KEY]) {
element[MS_DATA_KEY] = {};
}
return element[MS_DATA_KEY];
}
function hasData(element: any): boolean {
return !!element[MS_DATA_KEY];
}
/**
* Wraps around the provided element to manipulate it and add more child elements.
*/
export class Builder implements IDisposable {
private currentElement: HTMLElement;
private offdom: boolean;
private container: HTMLElement;
private createdElements: HTMLElement[];
private toUnbind: { [type: string]: IDisposable[]; };
private captureToUnbind: { [type: string]: IDisposable[]; };
constructor(element?: HTMLElement, offdom?: boolean) {
this.offdom = offdom;
this.container = element;
this.currentElement = element;
this.createdElements = [];
this.toUnbind = {};
this.captureToUnbind = {};
}
/**
* Returns a new builder that lets the current HTML Element of this builder be the container
* for future additions on the builder.
*/
public asContainer(): Builder {
return withBuilder(this, this.offdom);
}
/**
* Clones the builder providing the same properties as this one.
*/
public clone(): Builder {
let builder = new Builder(this.container, this.offdom);
builder.currentElement = this.currentElement;
builder.createdElements = this.createdElements;
builder.captureToUnbind = this.captureToUnbind;
builder.toUnbind = this.toUnbind;
return builder;
}
/**
* Inserts all created elements of this builder as children to the given container. If the
* container is not provided, the element that was passed into the Builder at construction
* time is being used. The caller can provide the index of insertion, or omit it to append
* at the end.
* This method is a no-op unless the builder was created with the offdom option to be true.
*/
public build(container?: Builder, index?: number): Builder;
public build(container?: HTMLElement, index?: number): Builder;
public build(container?: any, index?: number): Builder {
assert.ok(this.offdom, 'This builder was not created off-dom, so build() can not be called.');
// Use builders own container if present
if (!container) {
container = this.container;
}
// Handle case of passed in Builder
else if (container instanceof Builder) {
container = (<Builder>container).getHTMLElement();
}
assert.ok(container, 'Builder can only be build() with a container provided.');
assert.ok(DOM.isHTMLElement(container), 'The container must either be a HTMLElement or a Builder.');
let htmlContainer = <HTMLElement>container;
// Append
let i: number, len: number;
let childNodes = htmlContainer.childNodes;
if (types.isNumber(index) && index < childNodes.length) {
for (i = 0, len = this.createdElements.length; i < len; i++) {
htmlContainer.insertBefore(this.createdElements[i], childNodes[index++]);
}
} else {
for (i = 0, len = this.createdElements.length; i < len; i++) {
htmlContainer.appendChild(this.createdElements[i]);
}
}
return this;
}
/**
* Similar to #build, but does not require that the builder is off DOM, and instead
* attached the current element. If the current element has a parent, it will be
* detached from that parent.
*/
public appendTo(container?: Builder, index?: number): Builder;
public appendTo(container?: HTMLElement, index?: number): Builder;
public appendTo(container?: any, index?: number): Builder {
// Use builders own container if present
if (!container) {
container = this.container;
}
// Handle case of passed in Builder
else if (container instanceof Builder) {
container = (<Builder>container).getHTMLElement();
}
assert.ok(container, 'Builder can only be build() with a container provided.');
assert.ok(DOM.isHTMLElement(container), 'The container must either be a HTMLElement or a Builder.');
let htmlContainer = <HTMLElement>container;
// Remove node from parent, if needed
if (this.currentElement.parentNode) {
this.currentElement.parentNode.removeChild(this.currentElement);
}
let childNodes = htmlContainer.childNodes;
if (types.isNumber(index) && index < childNodes.length) {
htmlContainer.insertBefore(this.currentElement, childNodes[index]);
} else {
htmlContainer.appendChild(this.currentElement);
}
return this;
}
/**
* Performs the exact reverse operation of #append.
* Doing `a.append(b)` is the same as doing `b.appendTo(a)`, with the difference
* of the return value being the builder which called the operation (`a` in the
* first case; `b` in the second case).
*/
public append(child: HTMLElement, index?: number): Builder;
public append(child: Builder, index?: number): Builder;
public append(child: any, index?: number): Builder {
assert.ok(child, 'Need a child to append');
if (DOM.isHTMLElement(child)) {
child = withElement(child);
}
assert.ok(child instanceof Builder || child instanceof MultiBuilder, 'Need a child to append');
(<Builder>child).appendTo(this, index);
return this;
}
/**
* Removes the current element of this builder from its parent node.
*/
public offDOM(): Builder {
if (this.currentElement.parentNode) {
this.currentElement.parentNode.removeChild(this.currentElement);
}
return this;
}
/**
* Returns the HTML Element the builder is currently active on.
*/
public getHTMLElement(): HTMLElement {
return this.currentElement;
}
/**
* Returns the HTML Element the builder is building in.
*/
public getContainer(): HTMLElement {
return this.container;
}
// HTML Elements
/**
* Creates a new element of this kind as child of the current element or parent.
* Accepts an object literal as first parameter that can be used to describe the
* attributes of the element.
* Accepts a function as second parameter that can be used to create child elements
* of the element. The function will be called with a new builder created with the
* provided element.
*/
public div(attributes?: any, fn?: (builder: Builder) => void): Builder {
return this.doElement('div', attributes, fn);
}
/**
* Creates a new element of this kind as child of the current element or parent.
* Accepts an object literal as first parameter that can be used to describe the
* attributes of the element.
* Accepts a function as second parameter that can be used to create child elements
* of the element. The function will be called with a new builder created with the
* provided element.
*/
public p(attributes?: any, fn?: (builder: Builder) => void): Builder {
return this.doElement('p', attributes, fn);
}
/**
* Creates a new element of this kind as child of the current element or parent.
* Accepts an object literal as first parameter that can be used to describe the
* attributes of the element.
* Accepts a function as second parameter that can be used to create child elements
* of the element. The function will be called with a new builder created with the
* provided element.
*/
public ul(attributes?: any, fn?: (builder: Builder) => void): Builder {
return this.doElement('ul', attributes, fn);
}
/**
* Creates a new element of this kind as child of the current element or parent.
* Accepts an object literal as first parameter that can be used to describe the
* attributes of the element.
* Accepts a function as second parameter that can be used to create child elements
* of the element. The function will be called with a new builder created with the
* provided element.
*/
public li(attributes?: any, fn?: (builder: Builder) => void): Builder {
return this.doElement('li', attributes, fn);
}
/**
* Creates a new element of this kind as child of the current element or parent.
* Accepts an object literal as first parameter that can be used to describe the
* attributes of the element.
* Accepts a function as second parameter that can be used to create child elements
* of the element. The function will be called with a new builder created with the
* provided element.
*/
public span(attributes?: any, fn?: (builder: Builder) => void): Builder {
return this.doElement('span', attributes, fn);
}
/**
* Creates a new element of this kind as child of the current element or parent.
* Accepts an object literal as first parameter that can be used to describe the
* attributes of the element.
* Accepts a function as second parameter that can be used to create child elements
* of the element. The function will be called with a new builder created with the
* provided element.
*/
public img(attributes?: any, fn?: (builder: Builder) => void): Builder {
return this.doElement('img', attributes, fn);
}
/**
* Creates a new element of this kind as child of the current element or parent.
* Accepts an object literal as first parameter that can be used to describe the
* attributes of the element.
* Accepts a function as second parameter that can be used to create child elements
* of the element. The function will be called with a new builder created with the
* provided element.
*/
public a(attributes?: any, fn?: (builder: Builder) => void): Builder {
return this.doElement('a', attributes, fn);
}
/**
* Creates a new element of given tag name as child of the current element or parent.
* Accepts an object literal as first parameter that can be used to describe the
* attributes of the element.
* Accepts a function as second parameter that can be used to create child elements
* of the element. The function will be called with a new builder created with the
* provided element.
*/
public element(name: string, attributes?: any, fn?: (builder: Builder) => void): Builder {
return this.doElement(name, attributes, fn);
}
private doElement(name: string, attributesOrFn?: any, fn?: (builder: Builder) => void): Builder {
// Create Element
let element = document.createElement(name);
this.currentElement = element;
// Off-DOM: Remember in array of created elements
if (this.offdom) {
this.createdElements.push(element);
}
// Object (apply properties as attributes to HTML element)
if (types.isObject(attributesOrFn)) {
this.attr(attributesOrFn);
}
// Support second argument being function
if (types.isFunction(attributesOrFn)) {
fn = attributesOrFn;
}
// Apply Functions (Elements created in Functions will be added as child to current element)
if (types.isFunction(fn)) {
let builder = new Builder(element);
fn.call(builder, builder); // Set both 'this' and the first parameter to the new builder
}
// Add to parent
if (!this.offdom) {
this.container.appendChild(element);
}
return this;
}
/**
* Calls focus() on the current HTML element;
*/
public domFocus(): Builder {
this.currentElement.focus();
return this;
}
/**
* Calls blur() on the current HTML element;
*/
public domBlur(): Builder {
this.currentElement.blur();
return this;
}
/**
* Registers listener on event types on the current element.
*/
public on<E extends Event = Event>(type: string, fn: (e: E, builder: Builder, unbind: IDisposable) => void, listenerToUnbindContainer?: IDisposable[], useCapture?: boolean): Builder;
public on<E extends Event = Event>(typeArray: string[], fn: (e: E, builder: Builder, unbind: IDisposable) => void, listenerToUnbindContainer?: IDisposable[], useCapture?: boolean): Builder;
public on<E extends Event = Event>(arg1: any, fn: (e: E, builder: Builder, unbind: IDisposable) => void, listenerToUnbindContainer?: IDisposable[], useCapture?: boolean): Builder {
// Event Type Array
if (types.isArray(arg1)) {
arg1.forEach((type: string) => {
this.on(type, fn, listenerToUnbindContainer, useCapture);
});
}
// Single Event Type
else {
let type = arg1;
// Add Listener
let unbind: IDisposable = DOM.addDisposableListener(this.currentElement, type, (e) => {
fn(e, this, unbind); // Pass in Builder as Second Argument
}, useCapture || false);
// Remember for off() use
if (useCapture) {
if (!this.captureToUnbind[type]) {
this.captureToUnbind[type] = [];
}
this.captureToUnbind[type].push(unbind);
} else {
if (!this.toUnbind[type]) {
this.toUnbind[type] = [];
}
this.toUnbind[type].push(unbind);
}
// Bind to Element
let listenerBinding: IDisposable[] = this.getProperty(LISTENER_BINDING_ID, []);
listenerBinding.push(unbind);
this.setProperty(LISTENER_BINDING_ID, listenerBinding);
// Add to Array if passed in
if (listenerToUnbindContainer && types.isArray(listenerToUnbindContainer)) {
listenerToUnbindContainer.push(unbind);
}
}
return this;
}
/**
* Removes all listeners from all elements created by the builder for the given event type.
*/
public off(type: string, useCapture?: boolean): Builder;
public off(typeArray: string[], useCapture?: boolean): Builder;
public off(arg1: any, useCapture?: boolean): Builder {
// Event Type Array
if (types.isArray(arg1)) {
arg1.forEach((type: string) => {
this.off(type);
});
}
// Single Event Type
else {
let type = arg1;
if (useCapture) {
if (this.captureToUnbind[type]) {
this.captureToUnbind[type] = dispose(this.captureToUnbind[type]);
}
} else {
if (this.toUnbind[type]) {
this.toUnbind[type] = dispose(this.toUnbind[type]);
}
}
}
return this;
}
/**
* Registers listener on event types on the current element and removes
* them after first invocation.
*/
public once<E extends Event = Event>(type: string, fn: (e: E, builder: Builder, unbind: IDisposable) => void, listenerToUnbindContainer?: IDisposable[], useCapture?: boolean): Builder;
public once<E extends Event = Event>(typesArray: string[], fn: (e: E, builder: Builder, unbind: IDisposable) => void, listenerToUnbindContainer?: IDisposable[], useCapture?: boolean): Builder;
public once<E extends Event = Event>(arg1: any, fn: (e: E, builder: Builder, unbind: IDisposable) => void, listenerToUnbindContainer?: IDisposable[], useCapture?: boolean): Builder {
// Event Type Array
if (types.isArray(arg1)) {
arg1.forEach((type: string) => {
this.once(type, fn);
});
}
// Single Event Type
else {
let type = arg1;
// Add Listener
let unbind: IDisposable = DOM.addDisposableListener(this.currentElement, type, (e) => {
fn(e, this, unbind); // Pass in Builder as Second Argument
unbind.dispose();
}, useCapture || false);
// Add to Array if passed in
if (listenerToUnbindContainer && types.isArray(listenerToUnbindContainer)) {
listenerToUnbindContainer.push(unbind);
}
}
return this;
}
/**
* This method has different characteristics based on the parameter provided:
* a) a single string passed in as argument will return the attribute value using the
* string as key from the current element of the builder.
* b) two strings passed in will set the value of an attribute identified by the first
* parameter to match the second parameter
* c) an object literal passed in will apply the properties of the literal as attributes
* to the current element of the builder.
*/
public attr(name: string): string;
public attr(name: string, value: string): Builder;
public attr(name: string, value: boolean): Builder;
public attr(name: string, value: number): Builder;
public attr(attributes: any): Builder;
public attr(firstP: any, secondP?: any): any {
// Apply Object Literal to Attributes of Element
if (types.isObject(firstP)) {
for (let prop in firstP) {
if (firstP.hasOwnProperty(prop)) {
let value = firstP[prop];
this.doSetAttr(prop, value);
}
}
return this;
}
// Get Attribute Value
if (types.isString(firstP) && !types.isString(secondP)) {
return this.currentElement.getAttribute(firstP);
}
// Set Attribute Value
if (types.isString(firstP)) {
if (!types.isString(secondP)) {
secondP = String(secondP);
}
this.doSetAttr(firstP, secondP);
}
return this;
}
private doSetAttr(prop: string, value: any): void {
if (prop === 'class') {
prop = 'addClass'; // Workaround for the issue that a function name can not be 'class' in ES
}
if ((<any>this)[prop]) {
if (types.isArray(value)) {
(<any>this)[prop].apply(this, value);
} else {
(<any>this)[prop].call(this, value);
}
} else {
this.currentElement.setAttribute(prop, value);
}
}
/**
* Removes an attribute by the given name.
*/
public removeAttribute(prop: string): void {
this.currentElement.removeAttribute(prop);
}
/**
* Sets the id attribute to the value provided for the current HTML element of the builder.
*/
public id(id: string): Builder {
this.currentElement.setAttribute('id', id);
return this;
}
/**
* Sets the title attribute to the value provided for the current HTML element of the builder.
*/
public title(title: string): Builder {
this.currentElement.setAttribute('title', title);
return this;
}
/**
* Sets the type attribute to the value provided for the current HTML element of the builder.
*/
public type(type: string): Builder {
this.currentElement.setAttribute('type', type);
return this;
}
/**
* Sets the value attribute to the value provided for the current HTML element of the builder.
*/
public value(value: string): Builder {
this.currentElement.setAttribute('value', value);
return this;
}
/**
* Sets the tabindex attribute to the value provided for the current HTML element of the builder.
*/
public tabindex(index: number): Builder {
this.currentElement.setAttribute('tabindex', index.toString());
return this;
}
/**
* This method has different characteristics based on the parameter provided:
* a) a single string passed in as argument will return the style value using the
* string as key from the current element of the builder.
* b) two strings passed in will set the style value identified by the first
* parameter to match the second parameter. The second parameter can be null
* to unset a style
* c) an object literal passed in will apply the properties of the literal as styles
* to the current element of the builder.
*/
public style(name: string): string;
public style(name: string, value: string): Builder;
public style(attributes: any): Builder;
public style(firstP: any, secondP?: any): any {
// Apply Object Literal to Styles of Element
if (types.isObject(firstP)) {
for (let prop in firstP) {
if (firstP.hasOwnProperty(prop)) {
let value = firstP[prop];
this.doSetStyle(prop, value);
}
}
return this;
}
const hasFirstP = types.isString(firstP);
// Get Style Value
if (hasFirstP && types.isUndefined(secondP)) {
return this.currentElement.style[this.cssKeyToJavaScriptProperty(firstP)];
}
// Set Style Value
else if (hasFirstP) {
this.doSetStyle(firstP, secondP);
}
return this;
}
private doSetStyle(key: string, value: string): void {
if (key.indexOf('-') >= 0) {
let segments = key.split('-');
key = segments[0];
for (let i = 1; i < segments.length; i++) {
let segment = segments[i];
key = key + segment.charAt(0).toUpperCase() + segment.substr(1);
}
}
this.currentElement.style[this.cssKeyToJavaScriptProperty(key)] = value;
}
private cssKeyToJavaScriptProperty(key: string): string {
// Automagically convert dashes as they are not allowed when programmatically
// setting a CSS style property
if (key.indexOf('-') >= 0) {
let segments = key.split('-');
key = segments[0];
for (let i = 1; i < segments.length; i++) {
let segment = segments[i];
key = key + segment.charAt(0).toUpperCase() + segment.substr(1);
}
}
// Float is special too
else if (key === 'float') {
key = 'cssFloat';
}
return key;
}
/**
* Returns the computed CSS style for the current HTML element of the builder.
*/
public getComputedStyle(): CSSStyleDeclaration {
return DOM.getComputedStyle(this.currentElement);
}
/**
* Adds the variable list of arguments as class names to the current HTML element of the builder.
*/
public addClass(...classes: string[]): Builder {
classes.forEach((nameValue: string) => {
let names = nameValue.split(' ');
names.forEach((name: string) => {
DOM.addClass(this.currentElement, name);
});
});
return this;
}
/**
* Sets the class name of the current HTML element of the builder to the provided className.
* If shouldAddClass is provided - for true class is added, for false class is removed.
*/
public setClass(className: string, shouldAddClass: boolean = null): Builder {
if (shouldAddClass === null) {
this.currentElement.className = className;
} else if (shouldAddClass) {
this.addClass(className);
} else {
this.removeClass(className);
}
return this;
}
/**
* Returns whether the current HTML element of the builder has the provided class assigned.
*/
public hasClass(className: string): boolean {
return DOM.hasClass(this.currentElement, className);
}
/**
* Removes the variable list of arguments as class names from the current HTML element of the builder.
*/
public removeClass(...classes: string[]): Builder {
classes.forEach((nameValue: string) => {
let names = nameValue.split(' ');
names.forEach((name: string) => {
DOM.removeClass(this.currentElement, name);
});
});
return this;
}
/**
* Adds or removes the provided className for the current HTML element of the builder.
*/
public toggleClass(className: string): Builder {
if (this.hasClass(className)) {
this.removeClass(className);
} else {
this.addClass(className);
}
return this;
}
/**
* Sets the CSS property color.
*/
public color(color: string): Builder {
this.currentElement.style.color = color;
return this;
}
/**
* Sets the CSS property padding.
*/
public padding(padding: string): Builder;
public padding(top: number, right?: number, bottom?: number, left?: number): Builder;
public padding(top: string, right?: string, bottom?: string, left?: string): Builder;
public padding(top: any, right?: any, bottom?: any, left?: any): Builder {
if (types.isString(top) && top.indexOf(' ') >= 0) {
return this.padding.apply(this, top.split(' '));
}
if (!types.isUndefinedOrNull(top)) {
this.currentElement.style.paddingTop = this.toPixel(top);
}
if (!types.isUndefinedOrNull(right)) {
this.currentElement.style.paddingRight = this.toPixel(right);
}
if (!types.isUndefinedOrNull(bottom)) {
this.currentElement.style.paddingBottom = this.toPixel(bottom);
}
if (!types.isUndefinedOrNull(left)) {
this.currentElement.style.paddingLeft = this.toPixel(left);
}
return this;
}
/**
* Sets the CSS property margin.
*/
public margin(margin: string): Builder;
public margin(top: number, right?: number, bottom?: number, left?: number): Builder;
public margin(top: string, right?: string, bottom?: string, left?: string): Builder;
public margin(top: any, right?: any, bottom?: any, left?: any): Builder {
if (types.isString(top) && top.indexOf(' ') >= 0) {
return this.margin.apply(this, top.split(' '));
}
if (!types.isUndefinedOrNull(top)) {
this.currentElement.style.marginTop = this.toPixel(top);
}
if (!types.isUndefinedOrNull(right)) {
this.currentElement.style.marginRight = this.toPixel(right);
}
if (!types.isUndefinedOrNull(bottom)) {
this.currentElement.style.marginBottom = this.toPixel(bottom);
}
if (!types.isUndefinedOrNull(left)) {
this.currentElement.style.marginLeft = this.toPixel(left);
}
return this;
}
/**
* Sets the CSS property position.
*/
public position(position: string): Builder;
public position(top: number, right?: number, bottom?: number, left?: number, position?: string): Builder;
public position(top: string, right?: string, bottom?: string, left?: string, position?: string): Builder;
public position(top: any, right?: any, bottom?: any, left?: any, position?: string): Builder {
if (types.isString(top) && top.indexOf(' ') >= 0) {
return this.position.apply(this, top.split(' '));
}
if (!types.isUndefinedOrNull(top)) {
this.currentElement.style.top = this.toPixel(top);
}
if (!types.isUndefinedOrNull(right)) {
this.currentElement.style.right = this.toPixel(right);
}
if (!types.isUndefinedOrNull(bottom)) {
this.currentElement.style.bottom = this.toPixel(bottom);
}
if (!types.isUndefinedOrNull(left)) {
this.currentElement.style.left = this.toPixel(left);
}
if (!position) {
position = 'absolute';
}
this.currentElement.style.position = position;
return this;
}
/**
* Sets the CSS property size.
*/
public size(size: string): Builder;
public size(width: number, height?: number): Builder;
public size(width: string, height?: string): Builder;
public size(width: any, height?: any): Builder {
if (types.isString(width) && width.indexOf(' ') >= 0) {
return this.size.apply(this, width.split(' '));
}
if (!types.isUndefinedOrNull(width)) {
this.currentElement.style.width = this.toPixel(width);
}
if (!types.isUndefinedOrNull(height)) {
this.currentElement.style.height = this.toPixel(height);
}
return this;
}
/**
* Sets the CSS property display.
*/
public display(display: string): Builder {
this.currentElement.style.display = display;
return this;
}
/**
* Shows the current element of the builder.
*/
public show(): Builder {
if (this.hasClass('monaco-builder-hidden')) {
this.removeClass('monaco-builder-hidden');
}
this.attr('aria-hidden', 'false');
// Cancel any pending showDelayed() invocation
this.cancelVisibilityPromise();
return this;
}
/**
* Shows the current builder element after the provided delay. If the builder
* was set to hidden using the hide() method before this method executed, the
* function will return without showing the current element. This is useful to
* only show the element when a specific delay is reached (e.g. for a long running
* operation.
*/
public showDelayed(delay: number): Builder {
// Cancel any pending showDelayed() invocation
this.cancelVisibilityPromise();
let promise = TPromise.timeout(delay);
this.setProperty(VISIBILITY_BINDING_ID, promise);
promise.done(() => {
this.removeProperty(VISIBILITY_BINDING_ID);
this.show();
});
return this;
}
/**
* Hides the current element of the builder.
*/
public hide(): Builder {
if (!this.hasClass('monaco-builder-hidden')) {
this.addClass('monaco-builder-hidden');
}
this.attr('aria-hidden', 'true');
// Cancel any pending showDelayed() invocation
this.cancelVisibilityPromise();
return this;
}
/**
* Returns true if the current element of the builder is hidden.
*/
public isHidden(): boolean {
return this.hasClass('monaco-builder-hidden') || this.currentElement.style.display === 'none';
}
private cancelVisibilityPromise(): void {
let promise: TPromise<void> = this.getProperty(VISIBILITY_BINDING_ID);
if (promise) {
promise.cancel();
this.removeProperty(VISIBILITY_BINDING_ID);
}
}
private toPixel(obj: any): string {
if (obj.toString().indexOf('px') === -1) {
return obj.toString() + 'px';
}
return obj;
}
/**
* Sets the innerHTML attribute.
*/
public innerHtml(html: string, append?: boolean): Builder {
if (append) {
this.currentElement.innerHTML += html;
} else {
this.currentElement.innerHTML = html;
}
return this;
}
/**
* Sets the textContent property of the element.
* All HTML special characters will be escaped.
*/
public text(text: string, append?: boolean): Builder {
if (append) {
// children is child Elements versus childNodes includes textNodes
if (this.currentElement.children.length === 0) {
this.currentElement.textContent += text;
}
else {
// if there are elements inside this node, append the string as a new text node