Skip to content

Commit 40e338a

Browse files
committed
Published demo to gh pages
1 parent b2cee1e commit 40e338a

File tree

5 files changed

+117
-3
lines changed

5 files changed

+117
-3
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,4 @@ repl-temp-*
55
node_modules/
66
documentation.json
77
dist/
8+
build

elm.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@
2727
"test-dependencies": {
2828
"direct": {},
2929
"indirect": {}
30-
}
30+
},
31+
"homepage": "https://json-tools.github.io/json-form"
3132
}

public/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<title>JSON Form web-component demo</title>
77
<!--link rel="stylesheet" href="https://unpkg.com/@ubio/css@1.3.11/index.css"></link-->
88
<script src="https://unpkg.com/json-viewer-custom-element"></script>
9-
<script src="/highlight.pack.js"></script>
9+
<script src="highlight.pack.js"></script>
1010

1111
<script>
1212
const q = document.querySelector.bind(document);
@@ -37,7 +37,7 @@
3737
const shadowRoot = this.attachShadow({ mode: 'open' });
3838
const styles = document.createElement('link');
3939
styles.setAttribute('rel', 'stylesheet');
40-
styles.setAttribute('href', '/solarized-dark.css');
40+
styles.setAttribute('href', 'solarized-dark.css');
4141
shadowRoot.appendChild(styles);
4242
shadowRoot.appendChild(appRoot);
4343
this.appRoot = appRoot;

src/index.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
require('../stylesheets/index.css');
44

5+
import registerServiceWorker from './registerServiceWorker';
6+
7+
registerServiceWorker();
8+
59
const Elm = require('./Main');
610

711
Elm.Elm.Main.init({ node: document.body });

src/registerServiceWorker.js

Lines changed: 108 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,108 @@
1+
// In production, we register a service worker to serve assets from local cache.
2+
3+
// This lets the app load faster on subsequent visits in production, and gives
4+
// it offline capabilities. However, it also means that developers (and users)
5+
// will only see deployed updates on the "N+1" visit to a page, since previously
6+
// cached resources are updated in the background.
7+
8+
// To learn more about the benefits of this model, read https://goo.gl/KwvDNy.
9+
// This link also includes instructions on opting out of this behavior.
10+
11+
const isLocalhost = Boolean(
12+
window.location.hostname === 'localhost' ||
13+
// [::1] is the IPv6 localhost address.
14+
window.location.hostname === '[::1]' ||
15+
// 127.0.0.1/8 is considered localhost for IPv4.
16+
window.location.hostname.match(
17+
/^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/
18+
)
19+
);
20+
21+
export default function register() {
22+
if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) {
23+
// The URL constructor is available in all browsers that support SW.
24+
const publicUrl = new URL(process.env.PUBLIC_URL, window.location);
25+
if (publicUrl.origin !== window.location.origin) {
26+
// Our service worker won't work if PUBLIC_URL is on a different origin
27+
// from what our page is served on. This might happen if a CDN is used to
28+
// serve assets; see https://github.com/facebookincubator/create-react-app/issues/2374
29+
return;
30+
}
31+
32+
window.addEventListener('load', () => {
33+
const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`;
34+
35+
if (!isLocalhost) {
36+
// Is not local host. Just register service worker
37+
registerValidSW(swUrl);
38+
} else {
39+
// This is running on localhost. Lets check if a service worker still exists or not.
40+
checkValidServiceWorker(swUrl);
41+
}
42+
});
43+
}
44+
}
45+
46+
function registerValidSW(swUrl) {
47+
navigator.serviceWorker
48+
.register(swUrl)
49+
.then(registration => {
50+
registration.onupdatefound = () => {
51+
const installingWorker = registration.installing;
52+
installingWorker.onstatechange = () => {
53+
if (installingWorker.state === 'installed') {
54+
if (navigator.serviceWorker.controller) {
55+
// At this point, the old content will have been purged and
56+
// the fresh content will have been added to the cache.
57+
// It's the perfect time to display a "New content is
58+
// available; please refresh." message in your web app.
59+
console.log('New content is available; please refresh.');
60+
} else {
61+
// At this point, everything has been precached.
62+
// It's the perfect time to display a
63+
// "Content is cached for offline use." message.
64+
console.log('Content is cached for offline use.');
65+
}
66+
}
67+
};
68+
};
69+
})
70+
.catch(error => {
71+
console.error('Error during service worker registration:', error);
72+
});
73+
}
74+
75+
function checkValidServiceWorker(swUrl) {
76+
// Check if the service worker can be found. If it can't reload the page.
77+
fetch(swUrl)
78+
.then(response => {
79+
// Ensure service worker exists, and that we really are getting a JS file.
80+
if (
81+
response.status === 404 ||
82+
response.headers.get('content-type').indexOf('javascript') === -1
83+
) {
84+
// No service worker found. Probably a different app. Reload the page.
85+
navigator.serviceWorker.ready.then(registration => {
86+
registration.unregister().then(() => {
87+
window.location.reload();
88+
});
89+
});
90+
} else {
91+
// Service worker found. Proceed as normal.
92+
registerValidSW(swUrl);
93+
}
94+
})
95+
.catch(() => {
96+
console.log(
97+
'No internet connection found. App is running in offline mode.'
98+
);
99+
});
100+
}
101+
102+
export function unregister() {
103+
if ('serviceWorker' in navigator) {
104+
navigator.serviceWorker.ready.then(registration => {
105+
registration.unregister();
106+
});
107+
}
108+
}

0 commit comments

Comments
 (0)