Skip to content

Commit 1c532fc

Browse files
committed
feat(demo): make demo link shareable
1 parent 8e4acf8 commit 1c532fc

File tree

3 files changed

+54
-3
lines changed

3 files changed

+54
-3
lines changed

demo/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ <h2>JSONPath Demo <i id="demoNode">(To demo on Node instead, see the <a href="ht
7676
</label>
7777
</div>
7878
</form>
79+
<script src="https://cdnjs.cloudflare.com/ajax/libs/lz-string/1.5.0/lz-string.min.js" integrity="sha512-qtX0GLM3qX8rxJN1gyDfcnMFFrKvixfoEOwbBib9VafR5vbChV5LeE5wSI/x+IlCkTY5ZFddFDCCfaVJJNnuKQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
7980
<script src="../dist/index-browser-umd.cjs"></script>
8081
<script src="index.js"></script>
8182
</body>

demo/index.js

+41-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* globals JSONPath -- Test UMD */
1+
/// <reference path="./types.d.ts" />
2+
/* globals JSONPath, LZString -- Test UMD */
23
/* eslint-disable import/unambiguous -- Demo */
34

45
// Todo: Extract testing example paths/contents and use for a
@@ -14,8 +15,38 @@
1415
const $ = (s) => document.querySelector(s);
1516

1617
const jsonpathEl = $('#jsonpath');
18+
const jsonSample = $('#jsonSample');
19+
20+
const updateUrl = () => {
21+
const path = jsonpathEl.value;
22+
const jsonText = LZString.compressToEncodedURIComponent(jsonSample.value);
23+
const url = new URL(location.href);
24+
url.searchParams.set('path', path);
25+
url.searchParams.set('json', jsonText);
26+
url.searchParams.set('eval', $('#eval').value);
27+
url.searchParams.set('ignoreEvalErrors', $('#ignoreEvalErrors').value);
28+
history.replaceState(null, '', url.toString());
29+
};
30+
31+
const loadUrl = () => {
32+
const url = new URL(location.href);
33+
if (url.searchParams.has('path')) {
34+
jsonpathEl.value = url.searchParams.get('path');
35+
}
36+
if (url.searchParams.has('json')) {
37+
jsonSample.value = LZString.decompressFromEncodedURIComponent(
38+
url.searchParams.get('json')
39+
);
40+
}
41+
if (url.searchParams.has('eval')) {
42+
$('#eval').value = url.searchParams.get('eval');
43+
}
44+
if (url.searchParams.has('ignoreEvalErrors')) {
45+
$('#ignoreEvalErrors').value = url.searchParams.get('ignoreEvalErrors');
46+
}
47+
};
48+
1749
const updateResults = () => {
18-
const jsonSample = $('#jsonSample');
1950
const reportValidity = () => {
2051
// Doesn't work without a timeout
2152
setTimeout(() => {
@@ -52,19 +83,26 @@ const updateResults = () => {
5283
};
5384

5485
$('#jsonpath').addEventListener('input', () => {
86+
updateUrl();
5587
updateResults();
5688
});
5789

5890
$('#jsonSample').addEventListener('input', () => {
91+
updateUrl();
5992
updateResults();
6093
});
6194

6295
$('#eval').addEventListener('change', () => {
96+
updateUrl();
6397
updateResults();
6498
});
6599

66100
$('#ignoreEvalErrors').addEventListener('change', () => {
101+
updateUrl();
67102
updateResults();
68103
});
69104

70-
window.addEventListener('load', updateResults);
105+
window.addEventListener('load', () => {
106+
loadUrl();
107+
updateResults();
108+
});

demo/types.d.ts

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
import '../src/jsonpath.d.ts'
2+
import type { JSONPathType } from 'jsonpath-plus';
3+
4+
declare global {
5+
var LZString: {
6+
decompressFromEncodedURIComponent: (value: string) => string;
7+
compressToEncodedURIComponent: (value: string) => string;
8+
};
9+
var JSONPath: {
10+
JSONPath: JSONPathType
11+
}
12+
}

0 commit comments

Comments
 (0)