-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsvelte.js
682 lines (628 loc) · 16.8 KB
/
svelte.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
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
/**
* @fileOverview svelte - the lightweight modern DOM manipulation and events library
* @author Matt Begent
* @version 1.4.3
*/
(function (window, document) {
'use strict';
var svelteProto = {
/**
* Each loop
* @memberOf Svelte
* @param {function} callback Function to be run on each selector
* @returns Svelte
* @example
* $('.each').each(function() { });
*/
each: function(callback) {
for (var i = 0, len = this.s.length; i < len; i++) {
callback(this.s[i]);
}
return this;
},
/**
* Find a new selector within a parent selector
* @memberOf Svelte
* @param {string} selector Find a new selector within a parent selector
* @returns Svelte
* @example
* $('.parent').find('.child');
*/
find: function(selector) {
return new Svelte(selector, this.s[0]);
},
/**
* Set the CSS for an element
* @memberOf Svelte
* @param {string} property Property of element to set
* @param {string} value Value of property to set
* @returns Svelte
* @example
* $('.color').css('color', 'red');
*/
css: function(property, value) {
if(value) {
return this.each(function(el) {
el.style[property] = value;
});
} else {
return getComputedStyle(this.s[0])[property];
}
},
/**
* Sets selector to display none
* @memberOf Svelte
* @returns Svelte
* @example
* $('.hide').hide();
*/
hide: function() {
return this.each(function(el) {
el.style.display = 'none';
});
},
/**
* Sets selector to display block
* @memberOf Svelte
* @returns Svelte
* @example
* $('.show').show();
*/
show: function() {
return this.each(function(el) {
el.style.display = 'block';
});
},
/**
* Checks whether the selector is visible
* @memberOf Svelte
* @returns Boolean
* @example
* $('.visible').visible();
*/
visible: function() {
if(this.s.length > 0) {
return this.s[0].offsetWidth > 0 || this.s[0].offsetHeight > 0;
} else {
return false;
}
},
/**
* Toggles the display property of the selector
* @memberOf Svelte
* @returns Boolean
* @example
* $('.visible').visible();
*/
toggle: function() {
return this.each(function(el) {
if(el.style.display === '' || el.style.display === 'block') {
el.style.display = 'none';
}
else {
el.style.display = 'block';
}
});
},
/**
* Adds a class to the selector
* @memberOf Svelte
* @param {string} className Name of class to add
* @returns Svelte
* @example
* $('.class').addClass('another-class');
*/
addClass: function(className) {
return this.each(function(el) {
el.classList.add(className);
});
},
/**
* Removes a class from the selector
* @memberOf Svelte
* @param {string} className Name of class to remove
* @returns Svelte
* @example
* $('.class remove-class').removeClass('remove-class');
*/
removeClass: function(className) {
return this.each(function(el) {
el.classList.remove(className);
});
},
/**
* Toggles a class from the selector
* @memberOf Svelte
* @param {string} className Name of class to toggle
* @returns Svelte
* @example
* $('.class toggle-class').toggleClass('toggle-class');
*/
toggleClass: function(className) {
return this.each(function(el) {
el.classList.toggle(className);
});
},
/**
* Checks whether the selector has a specific class
* @memberOf Svelte
* @returns Boolean
* @example
* $('.class').hasClass('another-class');
*/
hasClass: function(className) {
if(this.s.length > 0) {
return this.s[0].classList.contains(className);
} else {
return false;
}
},
/**
* Attaches an event to the selector
* @memberOf Svelte
* @param {string} name Name of event e.g. click or names of events separated by spaces e.g. 'keyup keydown'
* @param {function} callback Callback to run when event is triggered
* @returns Svelte
* @example
* $('.click-me').on('click', function() { alert('Clicked!'); });
*/
on: function(name, callback) {
return this.each(function(el) {
name.split(' ').forEach(function(ev){
el.addEventListener(ev, callback);
});
});
},
/**
* Attaches an event to the selector and removes after callback
* @memberOf Svelte
* @param {string} name Name of event e.g. 'click' or names of events separated by spaces e.g. 'keyup keydown'
* @param {function} callback Callback to run when event is triggered
* @returns Svelte
* @example
* $('.click-me').one('click', function() { alert('Clicked!'); });
*/
one: function(name, callback) {
return this.each(function(el) {
name.split(' ').forEach(function(ev){
var callbackWithRemove = function() {
callback();
el.removeEventListener(ev, callbackWithRemove); // remove event
};
el.addEventListener(ev, callbackWithRemove);
});
});
},
/**
* Removes an event from the selector
* @memberOf Svelte
* @param {string} name Name of event e.g. click or names of events separated by spaces e.g. 'keyup keydown'
* @param {function} callback Callback to run when event is triggered
* @returns Svelte
* @example
* $('.click-me').off('click', function() { alert('Clicked!'); });
*/
off: function(name, callback) {
return this.each(function(el) {
name.split(' ').forEach(function(ev){
el.removeEventListener(ev, callback);
});
});
},
/**
* Sets the first selector to be focussed
* @memberOf Svelte
* @returns Svelte
* @example
* $('.focus').focus();
*/
focus: function() {
if(this.s.length > 0) {
this.s[0].focus();
}
return this;
},
/**
* Removes keyboard focus from first selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.blur').blur();
*/
blur: function() {
if(this.s.length > 0) {
this.s[0].blur();
}
return this;
},
/**
* Trigger an event from the selector
* @memberOf Svelte
* @param {string} name Name of event e.g. click
* @param {object} detail The data passed when initializing the event
* @returns Svelte
* @example
* $('.click-me').trigger('click');
*/
trigger: function(name, detail) {
return this.each(function(el) {
var triggerEvent = ((detail) ? new CustomEvent(name, detail) : document.createEvent('HTMLEvents'));
if(!detail) {
triggerEvent.initEvent(name, true, false);
}
el.dispatchEvent(triggerEvent);
});
},
/**
* Find the previous sibling to the current selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.selector').prev();
*/
prev: function() {
if(this.s.length > 0) {
this.s = this.s[0].previousElementSibling;
} else {
this.s = [];
}
return this;
},
/**
* Find the next sibling to the current selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.selector').next();
*/
next: function() {
if(this.s.length > 0) {
this.s = this.s[0].nextElementSibling;
} else {
this.s = [];
}
return this;
},
/**
* Find the first element of the selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.selector').first();
*/
first: function() {
if(this.s.length > 0) {
this.s = this.s[0];
}
return this;
},
/**
* Find the last element of the selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.selector').last();
*/
last: function() {
if(this.s.length > 0) {
var arrayLength = this.s.length;
this.s = this.s.slice(arrayLength-1,arrayLength);
}
return this;
},
/**
* Find the parent of the selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.selector').parent();
*/
parent: function() {
if(this.s.length > 0) {
this.s = this.s[0].parentNode;
}
return this;
},
/**
* Find the children of the selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.selector').children();
*/
children: function() {
if(this.s.length > 0) {
this.s.slice.call(this.s[0].children);
} else {
this.s = [];
}
return this;
},
/**
* Add HTML to the page in relation to the current selector
* @memberOf Svelte
* @param {string} position The position to add the html - before, after, atstart, atend
* @param {string} html The HTML to add
* @returns Svelte
* @example
* $('.html').append('before','<p>I am before</p>');
*/
append: function(position, html) {
return this.each(function(el) {
switch(position.toLowerCase()){
case 'before': return el.insertAdjacentHTML('beforebegin', html);
case 'after': return el.insertAdjacentHTML('afterend', html);
case 'atstart': return el.insertAdjacentHTML('afterbegin', html);
case 'atend': return el.insertAdjacentHTML('beforeend', html);
}
});
},
/**
* Set the text of a selector
* @memberOf Svelte
* @param {string} text Text to set
* @returns Svelte or text
* @example
* $('.text').text('Some text.');
*/
text: function(text) {
if(text) {
return this.each(function(el) {
el.textContent = text;
});
} else {
return this.s[0].textContent.trim();
}
},
/**
* Set the HTML of a selector
* @memberOf Svelte
* @param {string} html HTML to set
* @returns Svelte or HTML
* @example
* $('.text').html('<span>A span.</span>');
*/
html: function(html) {
if(html) {
return this.each(function(el) {
el.innerHTML = html;
});
} else {
return this.s[0].innerHTML;
}
},
/**
* Set the outerHTML of a selector
* @memberOf Svelte
* @param {string} html HTML to set
* @returns Svelte or HTML
* @example
* $('.text').outerHTML('<span>A span.</span>');
*/
outerHTML: function(html) {
if(html) {
return this.each(function(el) {
el.outerHTML = html;
});
} else {
return this.s[0].outerHTML;
}
},
/**
* Empty the HTML of a selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.empty-me').empty();
*/
empty: function() {
return this.each(function(el) {
el.innerHTML = '';
});
},
/**
* Clone a selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.empty-me').clone();
*/
clone: function() {
return this.each(function(el) {
el.clodeNode(true);
});
},
/**
* Removes a selector
* @memberOf Svelte
* @returns Svelte
* @example
* $('.remove-me').remove();
*/
remove: function() {
return this.each(function(el) {
el.parentNode.removeChild(el);
});
},
/**
* Get or set the attribute of a selector
* @memberOf Svelte
* @param {string} name Attr to get or set
* @param {string} value Value to set
* @returns Svelte
* @example
* $('.get-attr').attr('data-attr');
* $('.set-attr').attr('data-attr','Value');
*/
attr: function(name, value) {
if(!value) {
return this.s[0].getAttribute(name);
} else {
return this.each(function(el) {
el.setAttribute(name, value);
});
}
},
/**
* Remove an attribute from a selector
* @memberOf Svelte
* @param {string} name Attr to remove
* @returns Svelte
* @example
* $('.attr').removeAttr('data-attr');
*/
removeAttr: function(name) {
return this.each(function(el) {
el.removeAttribute(name);
});
},
/**
* Get the value of a selector
* @memberOf Svelte
* @param {string} value Value to set
* @returns value
* @example
* $('.input').val();
*/
val: function(value) {
if(value) {
return this.each(function(el) {
el.value = value;
});
} else {
if(this.s.length > 0) {
return this.s[0].value;
} else {
return undefined;
}
}
},
/**
* Get the number of matched elements in the selector
* @memberOf Svelte
* @returns length
* @example
* $('.length').length();
*/
length: function() {
return this.s.length;
},
/**
* Get the height of the first element in the selector
* @memberOf Svelte
* @returns number height
* @example
* $('.height').height();
*/
height: function() {
if(this.s.length > 0) {
return this.s[0].offsetHeight;
} else {
return null;
}
},
/**
* Get the width of the first element in the selector
* @memberOf Svelte
* @returns number width
* @example
* $('.width').width();
*/
width: function() {
if(this.s.length > 0) {
return this.s[0].offsetWidth;
} else {
return null;
}
},
/**
* Returns the position of the first element in the selector relative to the viewport
* @memberOf Svelte
* @returns TextRectangle object
* @example
* $('.position').position();
*/
position: function() {
if(this.s.length > 0) {
return this.s[0].getBoundingClientRect();
} else {
return null;
}
},
/**
* Returns true if the element matches the selector string
* @memberOf Svelte
* @param {string} selector Selector to match
* @returns boolean
* @example
* $('.paragraph').matches('p');
*/
matches: function(selector) {
return this.s[0].matches(selector);
},
/**
* Returns closest element to selector
* @memberOf Svelte
* @param {string} selector Selector to match
* @returns Svelte
* @example
* $('.logo').closest('.header');
*/
closest: function(selector) {
return new Svelte(this.s[0].closest(selector));
}
};
/** @constructor Svelte */
function Svelte(selector, context) {
return Object.create(svelteProto, {
s: {
get: function () {
if(typeof selector === 'string') {
var startAt = ((context === 'string') ? document.querySelectorAll(selector) : context) || document; // tidy up
var nl = startAt.querySelectorAll(selector);
var arr = [];
for (var i = 0, len = arr.length = nl.length; i < len; i++) {
arr[i] = nl[i];
}
return arr;
} else {
return [selector]; // could be an object, dom node or a function but always kept in an array
}
},
set: function(value) {
selector = value;
}
}
});
}
// AMD support
if (typeof define === "function" && define.amd) {
define(function() {
return Svelte;
});
}
// Expose svelte to the world:-)
window.$ = window.Svelte = Svelte;
// Expose functions to the world
window.$.fn = svelteProto;
}(window, document));
// Polyfills
// Matches - prefixed in IE, IOS7 Safari and older Android browser versions
if(!Element.prototype.matches) {
Element.prototype.matches = Element.prototype.matchesSelector || Element.prototype.msMatchesSelector || Element.prototype.webkitMatchesSelector;
}
// Closest - not yet supported by IE and Safari
if(!Element.prototype.closest) {
Element.prototype.closest = function closest(selector) {
var node = this;
while (node) {
if (node.matches(selector)) {
return node;
}
else {
node = node.parentElement;
}
}
return null;
};
}