-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathloading.html
95 lines (86 loc) · 2.17 KB
/
loading.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
<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
background: #f5f5f5;
color: #333;
}
h1 {
font-size: 24px;
font-weight: 500;
margin-bottom: 8px;
}
p {
color: #666;
margin-top: 0;
}
.spinner {
width: 40px;
height: 40px;
margin: 0 auto 20px auto;
border: 3px solid #f3f3f3;
border-top: 3px solid #3498db;
border-radius: 50%;
animation: spin 1s linear infinite;
}
@keyframes spin {
0% { transform: rotate(0deg); }
100% { transform: rotate(360deg); }
}
.container {
text-align: center;
padding: 20px;
border-radius: 8px;
background: white;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
display: flex;
flex-direction: column;
align-items: center;
}
</style>
<script>
// provide a mechanism to change the URL:
const sendMessage = (payload) => {
window.parent.postMessage({ source: 'codesignal-preview-communication', payload }, '*');
};
// Connect to WebSocket server
const ws = new WebSocket('ws://' + window.location.host + '/_ws');
ws.onmessage = (event) => {
try {
const data = JSON.parse(event.data);
if (data.type === 'ready') {
// Reload to the specified path or current path if none provided
sendMessage({
kind: 'location-change',
url: `${window.location.origin}${data.path}`,
});
window.location.href = data.path;
}
} catch (err) {
// Fallback to simple reload if message parsing fails
window.location.reload();
}
};
ws.onclose = () => {
setTimeout(() => {
window.location.reload();
}, 1000);
};
</script>
</head>
<body>
<div class="container">
<div class="spinner"></div>
<h1>HEADING_MESSAGE</h1>
<p>SUBHEADING_MESSAGE</p>
</div>
</body>
</html>