|
1 |
| -/* globals JSONPath -- Test UMD */ |
| 1 | +/// <reference path="./types.d.ts" /> |
| 2 | +/* globals JSONPath, LZString -- Test UMD */ |
2 | 3 | /* eslint-disable import/unambiguous -- Demo */
|
3 | 4 |
|
4 | 5 | // Todo: Extract testing example paths/contents and use for a
|
|
14 | 15 | const $ = (s) => document.querySelector(s);
|
15 | 16 |
|
16 | 17 | 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 | + |
17 | 49 | const updateResults = () => {
|
18 |
| - const jsonSample = $('#jsonSample'); |
19 | 50 | const reportValidity = () => {
|
20 | 51 | // Doesn't work without a timeout
|
21 | 52 | setTimeout(() => {
|
@@ -52,19 +83,26 @@ const updateResults = () => {
|
52 | 83 | };
|
53 | 84 |
|
54 | 85 | $('#jsonpath').addEventListener('input', () => {
|
| 86 | + updateUrl(); |
55 | 87 | updateResults();
|
56 | 88 | });
|
57 | 89 |
|
58 | 90 | $('#jsonSample').addEventListener('input', () => {
|
| 91 | + updateUrl(); |
59 | 92 | updateResults();
|
60 | 93 | });
|
61 | 94 |
|
62 | 95 | $('#eval').addEventListener('change', () => {
|
| 96 | + updateUrl(); |
63 | 97 | updateResults();
|
64 | 98 | });
|
65 | 99 |
|
66 | 100 | $('#ignoreEvalErrors').addEventListener('change', () => {
|
| 101 | + updateUrl(); |
67 | 102 | updateResults();
|
68 | 103 | });
|
69 | 104 |
|
70 |
| -window.addEventListener('load', updateResults); |
| 105 | +window.addEventListener('load', () => { |
| 106 | + loadUrl(); |
| 107 | + updateResults(); |
| 108 | +}); |
0 commit comments