-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscope-proxy.js
More file actions
60 lines (45 loc) · 1.5 KB
/
Copy pathscope-proxy.js
File metadata and controls
60 lines (45 loc) · 1.5 KB
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
"use strict";
var ScopeProxy = function(global, Factory) {
var handler = function(global, Factory) {
global.__scopes__ = {};
var getScope = function() {
var script = document.currentScript;
if (!script) {
return global;
}
var scopeName = script.dataset.scope;
var scope = global.__scopes__[scopeName];
if (!scope) {
scope = global.__scopes__[scopeName] = new Factory();
}
return scope;
};
var importScope = function(name, alias) {
var scope = getScope();
var otherScope = global.__scopes__[name];
scope[alias || name] = otherScope;
return otherScope;
};
var exportScope = function(value, alias) {
var scope = getScope();
scope[alias || value.name] = value;
};
return {
get: function(receiver, name) {
if (name === "importScope") {
return importScope;
} else if (name === "exportScope") {
return exportScope;
} else {
var scope = getScope();
return scope[name];
}
},
set: function(receiver, name, val) {
var scope = getScope();
scope[name] = val;
}
};
};
return Proxy.create(handler(global, Factory || Function));
};