forked from Floorp-Projects/Floorp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSync.jsm
102 lines (93 loc) · 3.09 KB
/
Sync.jsm
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
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
"use strict";
var EXPORTED_SYMBOLS = [
"DOMContentLoadedPromise",
"EventPromise",
"MessagePromise",
];
const {Services} = ChromeUtils.import("resource://gre/modules/Services.jsm");
/**
* Wait for a single event to be fired on a specific EventListener.
*
* The returned promise is guaranteed to not be called before the
* next event tick after the event listener is called, so that all
* other event listeners for the element are executed before the
* handler is executed. For example:
*
* const promise = new EventPromise(element, "myEvent");
* // same event tick here
* await promise;
* // next event tick here
*
* @param {EventListener} listener
* Object which receives a notification (an object that implements
* the Event interface) when an event of the specificed type occurs.
* @param {string} type
* Case-sensitive string representing the event type to listen for.
* @param {boolean?} [false] options.capture
* Indicates the event will be despatched to this subject,
* before it bubbles down to any EventTarget beneath it in the
* DOM tree.
* @param {boolean?} [false] options.wantsUntrusted
* Receive synthetic events despatched by web content.
* @param {boolean?} [false] options.mozSystemGroup
* Determines whether to add listener to the system group.
*
* @return {Promise.<Event>}
*
* @throws {TypeError}
*/
function EventPromise(listener, type, options = {
capture: false,
wantsUntrusted: false,
mozSystemGroup: false,
}) {
if (!listener || !("addEventListener" in listener)) {
throw new TypeError();
}
if (typeof type != "string") {
throw new TypeError();
}
if (("capture" in options && typeof options.capture != "boolean") ||
("wantsUntrusted" in options && typeof options.wantsUntrusted != "boolean") ||
("mozSystemGroup" in options && typeof options.mozSystemGroup != "boolean")) {
throw new TypeError();
}
options.once = true;
return new Promise(resolve => {
listener.addEventListener(type, event => {
Services.tm.dispatchToMainThread(() => resolve(event));
}, options);
});
}
function DOMContentLoadedPromise(window, options = {mozSystemGroup: true}) {
if (window.document.readyState == "complete" || window.document.readyState == "interactive") {
return Promise.resolve();
}
return new EventPromise(window, "DOMContentLoaded", options);
}
/**
* Awaits a single IPC message.
*
* @param {nsIMessageSender} target
* @param {string} name
*
* @return {Promise}
*
* @throws {TypeError}
* If target is not an nsIMessageSender.
*/
function MessagePromise(target, name) {
if (!(target instanceof Ci.nsIMessageSender)) {
throw new TypeError();
}
return new Promise(resolve => {
const onMessage = (...args) => {
target.removeMessageListener(name, onMessage);
resolve(...args);
};
target.addMessageListener(name, onMessage);
});
}