-
Notifications
You must be signed in to change notification settings - Fork 195
/
index.html
145 lines (136 loc) · 5.39 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>BIMsurfer V2 - Demo index</title>
</head>
<body>
<h1>BIMservers</h1>
<div id="expserver"></div>
<div id="localhost8080"></div>
<div id="localhost8082"></div>
<div id="lindsay"></div>
<h3>Other BIMserver</h3>
<a id="loadFromOtherBimServer" style="cursor: pointer">Load from other server</a>
<div id="other" style="display: none">
<input id="address"/>
<input id="username"/>
<input id="password" type="password"/>
<button id="loadProjectsBtn">Load projects</button>
<div id="otherProjects"></div>
</div>
<h1>glTF</h1>
<a href="examples/gltf.html">glTF</a>
<script>
document.addEventListener("DOMContentLoaded", function(event) {
function loadFromBimserver(address, username, password, target) {
target.innerHTML = "";
var client = new BimServerClient(address);
client.init(function(){
var bimServerDiv = document.getElementById("bimserverdiv");
var div = document.createElement("div");
var h3 = document.createElement("h3");
h3.textContent = address;
div.appendChild(h3);
var status = document.createElement("div");
div.appendChild(status);
var ul = document.createElement("ul");
div.appendChild(ul);
target.appendChild(div);
status.textContent = "Logging in...";
client.login(username, password, function(){
status.textContent = "Getting all projects...";
client.call("ServiceInterface", "getAllProjects", {
onlyTopLevel: true,
onlyActive: true
}, function(projects){
var totalFound = 0;
projects.forEach(function(project){
if (project.lastRevisionId != -1) {
var li = document.createElement("li");
var a = document.createElement("a");
li.appendChild(a);
a.textContent = project.name;
a.setAttribute("href", "examples/bimserver.html?address=" + encodeURIComponent(address) + "&token=" + client.token + "&poid=" + project.oid);
ul.appendChild(li);
totalFound++;
}
});
if (totalFound == 0) {
status.textContent = "No projects with revisions found on this server";
} else {
status.textContent = "";
}
});
}, function(error){
console.error(error);
status.textContent = error.message;
});
});
}
function loadBimServerApi(apiAddress, loadUmd) {
var p = new Promise(function(resolve, reject){
if (loadUmd) {
// TODO
LazyLoad.js([Settings.getBimServerApiAddress() + "/bimserverapi.umd.js?_v=" + apiVersion], function(){
window.BimServerClient = bimserverapi.default;
window.BimServerApiPromise = bimserverapi.BimServerApiPromise;
resolve(bimserverapi);
});
} else {
// Using eval here, so we don't trip the browsers that don't understand "import"
// The reason for using it this way is so we can develop this library and test it without having to transpile.
// Obviously developers need to have a browser that understands "import" (i.e. a recent version of Chrome, Firefox etc...)
// TODO One remaining problem here is that dependencies are not loaded with the "apiVersion" attached, so you need to have your browser on "clear cache" all the time
var apiVersion = new Date().getTime();
var str = "import(\"" + apiAddress + "\" + \"/bimserverclient.js?_v=" + apiVersion + "\").then((bimserverapi) => { window.BimServerClient = bimserverapi.default; window.BimServerApiPromise = bimserverapi.BimServerApiPromise; resolve(bimserverapi);});";
eval(str);
}
});
return p;
}
loadBimServerApi("https://thisisanexperimentalserver.com/apps/bimserverjavascriptapi", false).then(() => {
try {
loadFromBimserver("https://thisisanexperimentalserver.com", "[email protected]", "bimsurfer", document.getElementById("expserver"));
} catch (e) {
console.log(e);
}
try {
loadFromBimserver("http://localhost:8080", "[email protected]", "admin", document.getElementById("localhost8080"));
} catch (e) {
console.log(e);
}
try {
loadFromBimserver("http://ec2-18-222-53-244.us-east-2.compute.amazonaws.com:8080", "[email protected]", "admin", document.getElementById("lindsay"));
} catch (e) {
console.log(e);
}
try {
loadFromBimserver("http://localhost:8082", "[email protected]", "admin", document.getElementById("localhost8082"));
} catch (e) {
console.log(e);
}
});
var loadLink = document.getElementById("loadFromOtherBimServer");
loadLink.onclick = function(){
document.getElementById("other").style.display = "block";
if (localStorage.getItem("address") != null) {
document.getElementById("address").value = localStorage.getItem("address");
document.getElementById("username").value = localStorage.getItem("username");
document.getElementById("password").value = localStorage.getItem("password");
}
document.getElementById("address").focus();
};
var loadProjectsBtn = document.getElementById("loadProjectsBtn");
loadProjectsBtn.onclick = function(){
var address = document.getElementById("address").value;
var username = document.getElementById("username").value;
var password = document.getElementById("password").value;
localStorage.setItem("address", address);
localStorage.setItem("username", username);
localStorage.setItem("password", password);
loadFromBimserver(address, username, password, document.getElementById("otherProjects"));
};
});
</script>
</body>
</html>