forked from w3c/ServiceWorker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservice_worker.ts
808 lines (701 loc) · 26.8 KB
/
service_worker.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
// This API proposal depends on:
// DOM: http://www.w3.org/TR/domcore/
// URLs: http://url.spec.whatwg.org/
// Promises: https://github.com/slightlyoff/DOMPromise/
// Shared Workers:
// http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html#shared-workers
////////////////////////////////////////////////////////////////////////////////
// Document APIs
////////////////////////////////////////////////////////////////////////////////
interface RegistrationOptionList {
scope: string;
}
// Semi-private to work around TS. Not for impl.
class _RegistrationOptionList implements RegistrationOptionList {
scope = "/*";
}
interface NavigatorServiceWorker {
active?: ServiceWorker; // can be null
getAll(): Promise; // Promise for Array<ServiceWorker>
register(url: string, options?: _RegistrationOptionList): Promise;
// Resolves for a ServiceWorker instance once the url is parsed and
// started, at the moment you can deliver a message, but before oninstall.
//
// If a worker is in-waiting, and its url & scope matches both url & scope
// - resolve the promise
// - abort these steps
// If no worker is in-waiting, and the current active worker's
// url & scope match
// - resolve the promise
// - abort these steps
// Reject the promise if:
// - the URL is not same-origin
// - no scope is provided or the scope does not resolve/parse correctly
// - fetching the event worker returns with an error
// - installing the worker (the event the worker is sent) fails
// with an unhandled exception
// TBD: possible error values upon rejection?
unregister(scope?: string): Promise; // Defaults to "/*"
// Resolves with a ServiceWorker instance. Rejects if scope is mismatch.
// Unregisters all.
oninstall: (ev: DocumentInstallEvent) => any;
// Fired when an installing worker's installation starts (but is not yet
// complete). Provides the ability for a page to converse with a SW that is
// being installed behind the current document.
oninstallend: (ev: DocumentInstallEvent) => any;
// Fired at the end of the install event in the SW, even if there's an
// error. Listen for onerror to handle exceptions/errors.
onactivate: (ev: DocumentInstallPhaseEvent) => any;
// called when a new worker takes over for this document, after
// navigator.serviceWorker.active has been changed.
onactivateend: (ev: DocumentInstallPhaseEvent) => any;
// Fired at the end activation, even if there's an error. Listen for
// onerror to handle exceptions/errors.
onreloadpage: (ev: ReloadPageEvent) => any;
// FIXME: do we really need tihs?
onerror: (ev: ErrorEvent) => any;
// Called for any error from the active or installing SW's
// FIXME: allow differentiation between active and installing SW's
// here, perhaps via .worker?
}
// extensions to window.navigator
interface ServiceWorkerContainer {
// null if page has no activated worker
serviceWorker: NavigatorServiceWorker;
}
interface Navigator extends
ServiceWorkerContainer,
EventTarget,
// the rest is just stuff from the default ts definition
NavigatorID,
NavigatorOnLine,
// NavigatorDoNotTrack,
// NavigatorAbilities,
NavigatorGeolocation
// MSNavigatorAbilities
{ }
interface ServiceWorker extends Worker, AbstractWorker {
// Provides onerror, postMessage, etc.
// FIXME: Need to add ready(), etc. here
scope: string;
url: string;
// called when the SW instance that this object corresponds to is no longer
// active (e.g., a new version calling `e.replace()`)
ondeactivate: (ev: Event) => any;
}
declare var ServiceWorker: {
prototype: ServiceWorker;
}
class ReloadPageEvent extends _Event {
// Delay the page unload to serialise state to storage or get user's
// permission to reload.
waitUntil(f: Promise): void {}
}
class DocumentInstallPhaseEvent extends _Event {
worker: ServiceWorker;
}
class DocumentInstallEvent extends DocumentInstallPhaseEvent {
previous: ServiceWorker = null;
}
///////////////////////////////////////////////////////////////////////////////
// The Service Worker
///////////////////////////////////////////////////////////////////////////////
class InstallPhaseEvent extends _Event {
// Delay treating the installing worker until the passed Promise resolves
// successfully. This is primarily used to ensure that an ServiceWorker is not
// active until all of the "core" Caches it depends on are populated.
// TODO: what does the returned promise do differently to the one passed in?
waitUntil(f: Promise): Promise { return accepted(); }
}
class InstallEvent extends InstallPhaseEvent {
activeWorker: ServiceWorker = null;
// Ensures that the worker is used in place of existing workers for
// the currently controlled set of window instances.
// NOTE(TOSPEC): this interacts with waitUntil in the following way:
// - replacement only happens upon successful installation
// - successful installation can be delayed by waitUntil, perhaps
// by subsequent event handlers.
// - therefore, replace doesn't happen immediately.
replace(): void {}
// Assists in restarting all windows with the new worker.
//
// Return a new Promise
// For each attached window:
// Fire onreloadpage against navigator.serviceWorker
// If onreloadpage has default prevented:
// Unfreeze any frozen windows
// reject returned promise
// abort these steps
// If waitUntil called on onreloadpage event:
// frozen windows may wish to indicate which window they're blocked on
// yeild until promise passed into waitUntil resolves
// if waitUntil promise is accepted:
// freeze window (ui may wish to grey it out)
// else:
// Unfreeze any frozen windows
// reject returned promise
// abort these steps
// Else:
// freeze window (ui may wish to grey it out)
// Unload all windows
// If any window fails to unload, eg via onbeforeunload:
// Unfreeze any frozen windows
// reject returned promise
// abort these steps
// Close all connections between the old worker and windows
// Activate the new worker
// Reload all windows asynchronously
// Resolve promise
reloadAll(): Promise {
return new Promise(function() {
});
}
}
interface InstallEventHandler { (e:InstallEvent); }
interface ActivateEventHandler { (e:InstallPhaseEvent); }
interface FetchEventHandler { (e:FetchEvent); }
// FIXME: need custom event types!
interface BeforeCacheEvictionEventHandler { (e:_Event); }
interface CacheEvictionEventHandler { (e:_Event); }
interface OnlineEventHandler { (e:_Event); }
interface OfflineEventHandler { (e:_Event); }
interface ServiceWorkerClients {
// A list of window objects, identifiable by ID, that correspond to windows
// (or workers) that are "controlled" by this SW
getServiced(): Promise; // Promise for Array<Client>
}
// The scope in which worker code is executed
class ServiceWorkerGlobalScope extends WorkerGlobalScope {
self: ServiceWorkerGlobalScope;
caches: CacheList;
// A container for a list of window objects, identifiable by ID, that
// correspond to windows (or workers) that are "controlled" by this SW
clients: ServiceWorkerClients;
// The registration pattern that matched this SW instance. E.g., if the
// following registrations are made:
// navigator.serviceWorker.register("serviceworker.js", "/foo/*");
// navigator.serviceWorker.register("serviceworker.js", "/bar/*");
// And the user navigates to http://example.com/foo/index.html,
// self.scope == "/foo/*"
// SW's can use this to disambiguate which context they were started from.
scope: string;
//
// Events
//
// "online" and "offline" events are deliveredy via the WorkerGlobalScope
// contract:
// http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html#workerglobalscope
// New Events
// Called when a worker is downloaded and being setup to handle
// events (navigations, alerts, etc.)
oninstall: InstallEventHandler;
// Called when a worker becomes the active event worker for a mapping
onactivate: ActivateEventHandler;
// Called whenever this worker is meant to decide the disposition of a
// request.
onfetch: FetchEventHandler;
onbeforeevicted: BeforeCacheEvictionEventHandler;
onevicted: CacheEvictionEventHandler;
// ServiceWorkerGlobalScope objects act as if they had an implicit MessagePort
// associated with them. This port is part of a channel that is set up when
// the worker is created, but it is not exposed. This object must never be
// garbage collected before the ServiceWorkerGlobalScope object.
// All messages received by that port must immediately be retargeted at the
// ServiceWorkerGlobalScope object.
// The ev.source of these MessageEvents are instances of Client
onmessage: (ev: MessageEvent) => any;
// FIXME(slightlyoff): Need to add flags for:
// - custom "accept/reject" handling, perhaps with global config
// - flag to consult the HTTP cache first?
fetch(request:Request);
fetch(request:URL); // a URL
fetch(request:string); // a URL
fetch(request:any) : ResponsePromise {
// Notes:
// ResponsePromise resolves as soon as headers are available
// The ResponsePromise and the Response object both contain a
// toBlob() method that return a Promise for the body content.
// The toBlob() promise will reject if the response is a OpaqueResponse
// or if the original ResponsePromise is rejected.
return new ResponsePromise(function(r) {
r.resolve(_defaultToBrowserHTTP(request));
});
}
// Ping the server for an updated version of this script, without consulting
// caches. Conceptually the same operation that SW's do max once every 24
// hours.
update: () => void;
unregister: () => void;
}
///////////////////////////////////////////////////////////////////////////////
// Event Worker APIs
///////////////////////////////////////////////////////////////////////////////
// http://fetch.spec.whatwg.org/#requests
class Request {
constructor(params?) {
if (params) {
if (typeof params.timeout != "undefined") {
this.timeout = params.timeout;
}
if (typeof params.url != "undefined") {
// should be "new URL(params.url)" but TS won't allow it
this.url = params.url;
}
if (typeof params.synchronous != "undefined") {
this.synchronous = params.synchronous;
}
if (typeof params.forcePreflight != "undefined") {
this.forcePreflight = params.forcePreflight;
}
if (typeof params.forceSameOrigin != "undefined") {
this.forceSameOrigin = params.forceSameOrigin;
}
if (typeof params.omitCredentials != "undefined") {
this.omitCredentials = params.omitCredentials;
}
if (typeof params.method != "undefined") {
this.method = params.method;
}
if (typeof params.headers != "undefined") {
this.headers = params.headers;
}
if (typeof params.body != "undefined") {
this.body = params.body;
}
}
}
// see: http://www.w3.org/TR/XMLHttpRequest/#the-timeout-attribute
timeout: Number = 0;
url: string;
method: string = "GET";
origin: string;
// FIXME: mode doesn't seem useful here.
mode: string; // Can be one of "same origin", "tainted x-origin", "CORS"
// FIXME: we only provide async!
synchronous: boolean = false;
redirectCount: Number = 0;
forcePreflight: boolean = false;
forceSameOrigin: boolean = false;
omitCredentials: boolean = false;
referrer: URL;
headers: Map<string, string>; // Needs filtering!
body: any; /*TypedArray? String?*/
}
// http://fetch.spec.whatwg.org/#responses
class AbstractResponse {
constructor() {}
}
class OpaqueResponse extends AbstractResponse {
// This class represents the result of cross-origin fetched resources that are
// tainted, e.g. <img src="http://cross-origin.example/test.png">
get url(): string { return ""; } // Read-only for x-origin
}
class Response extends AbstractResponse {
constructor(params?) {
if (params) {
if (typeof params.statusCode != "undefined") {
this.statusCode = params.statusCode;
}
if (typeof params.statusText != "undefined") {
this.statusText = params.statusText;
}
if (typeof params.method != "undefined") {
this.method = params.method;
}
if (typeof params.headers != "undefined") {
this.headers = params.headers;
}
/*
// FIXME: What do we want to do about passing in the body?
if (typeof params.body != "undefined") {
this.body = params.body;
}
*/
}
super();
}
// This class represents the result of all other fetched resources, including
// cross-origin fetched resources using the CORS fetching mode.
statusCode: Number;
statusText: string;
// Explicitly omitting httpVersion
method: string;
// NOTE: the internal "_headers" is not meant to be exposed. Only here for
// pseudo-impl purposes.
_headers: Map<string, string>; // FIXME: Needs filtering!
get headers() {
// TODO: outline the whitelist of readable headers
return this._headers;
}
set headers(items) {
if (items instanceof Map) {
items.forEach((value, key, map) => this._headers.set(key, value))
} else {
// Enumerate own properties and treat them as key/value pairs
for (var x in items) {
(function(x) {
if (items.hasOwnProperty(x)) { this._headers.set(x, items[x]); }
}).call(this, x);
}
}
}
url: string;
toBlob(): Promise { return accepted(new Blob()); }
}
class CORSResponse extends Response {
// TODO: slightlyoff: make CORS headers readable but not setable?
// TODO: outline the whitelist of readable headers
}
class ResponsePromise extends Promise {
toBlob(): Promise { return accepted(new Blob()); }
}
class RequestPromise extends Promise {}
class FetchEvent extends _Event {
// The body of the request.
request: Request;
// The window issuing the request.
client: Client;
// Can be one of:
// "connect",
// "font",
// "img",
// "img",
// "object",
// "script",
// "style",
// "worker",
// "popup",
// "child",
// "navigate"
purpose: string = "connect";
// Has the user provided intent for the page to be reloaded fresher than
// their current view? Eg: pressing the refresh button
// Clicking a link & hitting back shouldn't be considered a reload.
// Ctrl+l enter: Left to the UA to decide
isReload: boolean = false;
// * If a Promise is provided, it must resolve with a Response, else a
// Network Error is thrown.
// * If the request isTopLevel navigation and the return value
// is a CrossOriginResponse (an opaque response body), a Network Error is
// thrown.
// * The final URL of all successful (non network-error) responses is
// the *requested* URL.
// * Renderer-side security checks about tainting for
// x-origin content are tied to the transparency (or opacity) of
// the Response body, not URLs.
//
// respondWith(r: Promise) : void;
// respondWith(r: Response) : void;
respondWith(r: any) : void { // "any" to make the TS compiler happy:
if (!(r instanceof Response) || !(r instanceof Promise)) {
throw new Error("Faux NetworkError because DOM is currently b0rken");
}
this.stopImmediatePropagation();
if (r instanceof Response) {
r = new Promise(function(resolver) { resolver.resolve(r); });
}
r.then(_useWorkerResponse,
_defaultToBrowserHTTP);
}
forwardTo(url: URL) : Promise;
forwardTo(url: string) : Promise;
// "any" to make the TS compiler happy:
forwardTo(url: any) : Promise {
if (!(url instanceof _URL) || typeof url != "string") {
// Should *actually* be a DOMException.NETWORK_ERR
// Can't be today because DOMException isn't currently constructable
throw new Error("Faux NetworkError because DOM is currently b0rken");
}
this.stopImmediatePropagation();
return new Promise(function(resolver){
resolver.resolve(new Response({
statusCode: 302,
headers: { "Location": url.toString() }
}));
});
}
constructor() {
super("fetch", { cancelable: true, bubbles: false });
// This is the meat of the API for most use-cases.
// If preventDefault() is not called on the event, the request is sent to
// the default browser worker. That is to say, to respond with something
// from the cache, you must preventDefault() and respond with it manually,
// digging the resource out of the cache and calling
// evt.respondWith(cachedItem).
//
// Note:
// while preventDefault() must be called synchronously to cancel the
// default, responding does not need to be synchronous. That is to say,
// you can do something async (like fetch contents, go to IDB, whatever)
// within whatever the network time out is and as long as you still have
// the FetchEvent instance, you can fulfill the request later.
this.client = null; // to allow postMessage, window.topLevel, etc
}
}
// Design notes:
// - Caches are atomic: they are not complete until all of their resources are
// fetched
// - Updates are also atomic: the old contents are visible until all new
// contents are fetched/installed.
// - Caches should have version numbers and "update" should set/replace it
// This largely describes the current Application Cache API. It's only available
// inside worker instances (not in regular documents), meaning that caching is a
// feature of the event worker. This is likely to change!
class Cache {
// FIXME: need to add some way to get progress out
items: AsyncMap<string, Response>;
// Allow vararg of URLs or strings
constructor(...urls:URL[]);
constructor(...urls:string[]);
// "any" to make the TS compiler happy:
constructor(...urls:any[]) {
// Note that items may ONLY contain Response instasnces
if (urls.length) {
// Begin fetching on the URLs and storing them in this.items
}
}
// Match a URL or a string
match(name:URL) : Promise;
match(name:string) : Promise;
// "any" to make the TS compiler happy:
match(name:any) : Promise {
// name matches something in items
if (name) {
return this.items.get(name.toString());
}
}
// TODO: define type-restricting getters/setters
// Cribbed from Mozilla's proposal, but with sane returns
add(...response:string[]) : Promise;
add(...response:URL[]) : Promise;
// "any" to make the TS compiler happy:
add(...response:any[]) : Promise {
// If a URL (or URL string) is passed, a new CachedResponse is added to
// items upon successful fetching
return accepted();
}
// Needed because Response objects don't have URLs.
addResponse(url, response:Response) : Promise {
return accepted();
}
remove(...response:string[]) : Promise;
remove(...response:URL[]) : Promise;
// "any" to make the TS compiler happy:
remove(...response:any[]) : Promise {
// FIXME: does this need to be async?
return accepted();
}
// For the below, see current AppCache, although we extend with sane returns
// Update has the effect of checking the HTTP cache validity of all items
// currently in the cache and updating with new versions if the current item
// is expired. New items may be added to the cache with the urls that can be
// passed. The HTTP cache is currently used for these resources but no
// heuristic caching is applied for these requests.
update(...urls:_URL[]) : Promise;
update(...urls:string[]) : Promise { return accepted(); }
ready(): Promise { return accepted(); }
}
class CacheList implements AsyncMap<any, any> {
constructor(iterable: Array<any>) { }
// Convenience method to get ResponsePromise from caches. Returns the
// first url match from the fist cache (in insertion order, per ES6 Maps).
// The second optional cache name parameter invokes a search inside a
// specific Cache object.
// If no url is specified, the response is rejected.
// If a named Cache is not found, the response is rejected.
// If no matching item is found in a named cache, the response is rjected.
// If no cacheName is specified and no matching item is found in any cache,
// the response is rejected.
match(url: URL, cacheName?: String) : ResponsePromise;
match(url: String, cacheName?: String) : ResponsePromise;
// "any" to make the TS compiler happy
match(url: any, cacheName?: any) : ResponsePromise {
return new ResponsePromise(function(){});
}
get(key: any): Promise { return accepted(); }
has(key: any): Promise { return accepted(); }
set(key: any, val: any): Promise { return accepted(this); }
clear(): Promise { return accepted(); }
delete(key: any): boolean { return true; }
forEach(callback: Function, thisArg?: Object): void {}
items(): any[] { return []; }
keys(): any[] { return []; }
values(): any[] { return []; }
get size(): number { return 0; }
}
////////////////////////////////////////////////////////////////////////////////
// Utility Decls to make the TypeScript compiler happy
////////////////////////////////////////////////////////////////////////////////
// See:
// http://www.whatwg.org/specs/web-apps/current-work/multipage/web-messaging.html#broadcasting-to-other-browsing-contexts
class BroadcastChannel {
constructor(channelName: string) {}
postMessage: (message: string) => void;
onmessage: (ev: MessageEvent) => any;
};
// See:
// http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html#workerglobalscope
interface WorkerLocation {
href: string;
protocol: string;
host: string;
hostname: string;
port: string;
pathname: string;
search: string;
hash: string;
}
interface WorkerNavigator extends NavigatorID, NavigatorOnLine {
// TODO(slightlyoff): ensure these are rolled into the HTML spec's WorkerNavigator!
// Extensions. See: https://github.com/slightlyoff/ServiceWorker/issues/122
doNotTrack: string;
cookieEnabled: boolean;
mimeTypes: Array<string>;
}
interface WorkerUtils extends WindowTimers, WindowBase64 {
importScripts: (...urls: string[]) => void;
navigator: WorkerNavigator;
}
class WorkerGlobalScope extends _EventTarget
implements WorkerUtils, AbstractWorker {
// AbstractWorker
onerror: (ev: ErrorEvent) => any;
// WorkerUtils
importScripts: (...urls: string[]) => void;
navigator: WorkerNavigator;
// WindowTimers
clearTimeout: (handle: number) => void;
setTimeout(handler: any, timeout?: any, ...args: any[]): number {
return 0;
}
clearInterval: (handle: number) => void;
setInterval(handler: any, timeout?: any, ...args: any[]): number {
return 0;
}
// WindowTimerExtensions
msSetImmediate(expression: any, ...args: any[]): number { return 0; }
clearImmediate: (handle: number) => void;
msClearImmediate: (handle: number) => void;
setImmediate(expression: any, ...args: any[]): number { return 0; }
// WindowBase64
btoa(rawString: string): string { return ""; }
atob(encodedString: string): string { return ""; }
// Base API
self: WorkerGlobalScope;
location: WorkerLocation;
close: () => void;
onoffline: Function;
ononline: Function;
}
// Cause, you know, the stock definition claims that URL isn't a class. FML.
class _URL {
constructor(url, base) {}
}
// http://tc39wiki.calculist.org/es6/map-set/
// http://wiki.ecmascript.org/doku.php?id=harmony:simple_maps_and_sets
// http://wiki.ecmascript.org/doku.php?id=harmony:specification_drafts
// http://people.mozilla.org/~jorendorff/es6-draft.html#sec-15.14.4
/*
class Map {
constructor(iterable?:any[]) {}
get(key: any): any {}
has(key: any): boolean { return true; }
set(key: any, val: any): void {}
clear(): void {}
delete(key: any): boolean { return true; }
forEach(callback: Function, thisArg?: Object): void {}
items(): any[] { return []; }
keys(): any[] { return []; }
values(): any[] { return []; }
}
*/
// https://dvcs.w3.org/hg/domcore/raw-file/tip/Overview.html#interface-event
interface EventHandler { (e:_Event); }
interface _EventInit {
bubbles: boolean;
cancelable: boolean;
}
// the TS compiler is unhappy *both* with re-defining DOM types and with direct
// sublassing of most of them. This is sane (from a regular TS pespective), if
// frustrating. As a result, we describe the built-in Event type with a prefixed
// name so that we can subclass it later.
class _Event {
type: string;
target: any;
currentTarget: any;
eventPhase: Number;
bubbles: boolean = false;
cancelable: boolean = true;
defaultPrevented: boolean = false;
isTrusted: boolean = false;
timeStamp: Number;
stopPropagation(): void {}
stopImmediatePropagation(): void {}
preventDefault(): void {}
constructor(type : string, eventInitDict?: _EventInit) {}
}
class _CustomEvent extends _Event {
// Constructor(DOMString type, optional EventInit eventInitDict
constructor(type : string, eventInitDict?: _EventInit) {
super(type, eventInitDict);
}
}
class _EventTarget {
addEventListener: (t:string, l:EventListener, cap?: boolean) => void;
removeEventListener: (t:string, l:EventListener, cap?: boolean) => void;
dispatchEvent(e:_Event): boolean {
return true;
}
}
// https://github.com/slightlyoff/DOMPromise/blob/master/DOMPromise.idl
class Resolver {
public accept(v:any): void {}
public reject(v:any): void {}
public resolve(v:any): void {}
}
class Promise {
// Callback type decl:
// callback : (n : number) => number
constructor(init : (r:Resolver) => void ) {
}
}
function accepted(v: any = true) : Promise {
return new Promise(function(r) {
r.accept(true);
});
}
function acceptedResponse() : ResponsePromise {
return new ResponsePromise(function(r) {
r.accept(new Response());
});
}
interface ConnectEventHandler { (e:_Event); }
// http://www.whatwg.org/specs/web-apps/current-work/multipage/workers.html#shared-workers-and-the-sharedworker-interface
class SharedWorker extends _EventTarget {
// To make it clear where onconnect comes from
onconnect: ConnectEventHandler;
constructor(url: string, name?: string) {
super();
}
}
////////////////////////////////////////////////////////////////////////////////
// Not part of any public standard but used above:
////////////////////////////////////////////////////////////////////////////////
class Client {
id: number;
postMessage: (message: any, targetOrigin: string, ports?: any) => void;
}
interface AsyncMap<K, V> {
// constructor(iterable?:any[]) {}
get<K>(key: K): Promise;
has<K>(key: K): Promise;
set<K>(key: K, val: V): Promise;
clear(): Promise;
delete(key: K): Promise;
forEach(callback: Function, thisArg?: Object): void;
items(): Promise;
keys(): Promise;
values(): Promise;
}
var _useWorkerResponse = function() : Promise { return accepted(); };
var _defaultToBrowserHTTP = function(url?) : Promise { return accepted(); };