-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathapp.js
72 lines (63 loc) · 1.58 KB
/
app.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
var MainComponent = React.createClass({
children: function() {
return(
_.map(this.props.children, function(child, index) {
return React.createElement(child.name, _.merge(child.props, {key: index}));
})
);
},
render: function() {
return(
<div>
<h1>Main</h1>
{this.children()}
</div>
);
}
});
var remoteComponents = [
{
name: 'SimpleComponent',
src: '/build/simpleComponent.js'
},
{
name: 'GreeterComponent',
src: '/build/greeterComponent.js',
props: {name: 'Bob'}
}
];
var loadRemoteComponent = function(component) {
return new Promise(function(resolve, reject) {
var request = new XMLHttpRequest();
request.onload = function() {
if(request.status >= 200 && request.status < 400) {
var remoteComponentSrc = request.responseText;
window.eval(remoteComponentSrc);
return resolve({name: eval(component.name), props: component.props || {}});
} else {
return reject();
}
};
request.open('GET', component.src);
request.send();
});
};
var loadRemoteComponents = function(components) {
return Promise.all(
_.map(components, function(component) {
console.log(component.name, component.src);
return loadRemoteComponent(component);
})
);
};
var loadApp = function(children) {
React.render(
React.createElement(MainComponent, {children: children}),
document.getElementById('main')
);
};
loadRemoteComponents(remoteComponents)
.then(loadApp)
.catch(function(err) {
console.log("Something went wrong: " + err);
});