-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNAT.js
852 lines (803 loc) · 21.8 KB
/
NAT.js
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
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
// Variables used by Scriptable.
// These must be at the very top of the file. Do not edit.
// icon-glyph: vials; icon-color: teal;
/**
* 改自 @maemolee 的 JSBox 版本「maemo核酸小助手」
* https://liuguogy.github.io/JSBox-addins/?q=show&objectId=633d7d5006e24022ea8c73ad
*
* 此版本为个人使用,原作功能更强大,推荐使用
*
* @version 1.0.2
* @author Honye
*/
/**
* @param {object} options
* @param {string} [options.title]
* @param {string} [options.message]
* @param {Array<{ title: string; [key: string]: any }>} options.options
* @param {boolean} [options.showCancel = true]
* @param {string} [options.cancelText = 'Cancel']
*/
const presentSheet = async (options) => {
options = {
showCancel: true,
cancelText: 'Cancel',
...options
};
const alert = new Alert();
if (options.title) {
alert.title = options.title;
}
if (options.message) {
alert.message = options.message;
}
if (!options.options) {
throw new Error('The "options" property of the parameter cannot be empty')
}
for (const option of options.options) {
alert.addAction(option.title);
}
if (options.showCancel) {
alert.addCancelAction(options.cancelText);
}
const value = await alert.presentSheet();
return {
value,
option: options.options[value]
}
};
/**
* @param {...string} paths
*/
const joinPath = (...paths) => {
const fm = FileManager.local();
return paths.reduce((prev, curr) => {
return fm.joinPath(prev, curr)
}, '')
};
/**
* 注意:桌面组件无法写入 cacheDirectory 和 temporaryDirectory
* @param {object} options
* @param {boolean} [options.useICloud]
* @param {string} [options.basePath]
*/
const useFileManager = (options = {}) => {
const { useICloud, basePath } = options;
const fm = useICloud ? FileManager.iCloud() : FileManager.local();
const paths = [fm.documentsDirectory(), Script.name()];
if (basePath) {
paths.push(basePath);
}
const cacheDirectory = joinPath(...paths);
/**
* 删除路径末尾所有的 /
* @param {string} filePath
*/
const safePath = (filePath) => {
return fm.joinPath(cacheDirectory, filePath).replace(/\/+$/, '')
};
/**
* 如果上级文件夹不存在,则先创建文件夹
* @param {string} filePath
*/
const preWrite = (filePath) => {
const i = filePath.lastIndexOf('/');
const directory = filePath.substring(0, i);
if (!fm.fileExists(directory)) {
fm.createDirectory(directory, true);
}
};
const writeString = (filePath, content) => {
const nextPath = safePath(filePath);
preWrite(nextPath);
fm.writeString(nextPath, content);
};
const writeJSON = (filePath, jsonData) => writeString(filePath, JSON.stringify(jsonData));
/**
* @param {string} filePath
* @param {Image} image
*/
const writeImage = (filePath, image) => {
const nextPath = safePath(filePath);
preWrite(nextPath);
return fm.writeImage(nextPath, image)
};
const readString = (filePath) => {
return fm.readString(
fm.joinPath(cacheDirectory, filePath)
)
};
const readJSON = (filePath) => JSON.parse(readString(filePath));
/**
* @param {string} filePath
*/
const readImage = (filePath) => {
return fm.readImage(fm.joinPath(cacheDirectory, filePath))
};
return {
cacheDirectory,
writeString,
writeJSON,
writeImage,
readString,
readJSON,
readImage
}
};
const useCache = () => useFileManager({ basePath: 'cache' });
/**
* 轻松实现桌面组件可视化配置
*
* - 颜色选择器及更多表单控件
* - 快速预览
*
* GitHub: https://github.com/honye
*
* @version 1.1.0
* @author Honye
*/
/**
* @returns {Promise<Settings>}
*/
const readSettings = async () => {
const localFM = useFileManager();
let settings = localFM.readJSON('settings.json');
if (settings) {
console.log('[info] use local settings');
return settings
}
const iCloudFM = useFileManager({ useICloud: true });
settings = iCloudFM.readJSON('settings.json');
if (settings) {
console.log('[info] use iCloud settings');
}
return settings
};
/**
* @param {Record<string, unknown>} data
* @param {{ useICloud: boolean; }} options
*/
const writeSettings = async (data, { useICloud }) => {
const fm = useFileManager({ useICloud });
fm.writeJSON('settings.json', data);
};
const removeSettings = async (settings) => {
const cache = useFileManager({ useICloud: settings.useICloud });
FileManager.local().remove(
FileManager.local().joinPath(
cache.cacheDirectory,
'settings.json'
)
);
};
const moveSettings = (useICloud, data) => {
const localFM = useFileManager();
const iCloudFM = useFileManager({ useICloud: true });
const [i, l] = [
FileManager.local().joinPath(
iCloudFM.cacheDirectory,
'settings.json'
),
FileManager.local().joinPath(
localFM.cacheDirectory,
'settings.json'
)
];
try {
writeSettings(data, { useICloud });
if (useICloud) {
FileManager.local().remove(l);
} else {
FileManager.iCloud().remove(i);
}
} catch (e) {
console.error(e);
}
};
/**
* @typedef {object} FormItem
* @property {string} name
* @property {string} label
* @property {string} [type]
* @property {{ label: string; value: unknown }[]} [options]
* @property {unknown} [default]
*/
/**
* @typedef {Record<string, unknown>} Settings
* @property {boolean} useICloud
* @property {string} [backgroundImage]
*/
/**
* @param {object} options
* @param {FormItem[]} [options.formItems]
* @param {(data: {
* settings: Settings;
* family?: 'small'|'medium'|'large';
* }) => Promise<ListWidget>} options.render
* @param {string} [options.homePage]
* @param {(item: FormItem) => void} [options.onItemClick]
* @returns {Promise<ListWidget|undefined>} 在 Widget 中运行时返回 ListWidget,其它无返回
*/
const withSettings = async (options) => {
const {
formItems = [],
onItemClick,
render,
homePage = 'https://www.imarkr.com'
} = options;
const cache = useCache();
let settings = await readSettings() || {};
const imgPath = FileManager.local().joinPath(
cache.cacheDirectory,
'bg.png'
);
if (config.runsInWidget) {
const widget = await render({ settings });
if (settings.backgroundImage) {
widget.backgroundImage = FileManager.local().readImage(imgPath);
}
Script.setWidget(widget);
return widget
}
// ====== web start =======
const style =
`:root {
--color-primary: #007aff;
--divider-color: rgba(60,60,67,0.36);
--card-background: #fff;
--card-radius: 10px;
--list-header-color: rgba(60,60,67,0.6);
}
* {
-webkit-user-select: none;
user-select: none;
}
body {
margin: 10px 0;
-webkit-font-smoothing: antialiased;
font-family: "SF Pro Display","SF Pro Icons","Helvetica Neue","Helvetica","Arial",sans-serif;
accent-color: var(--color-primary);
}
input {
-webkit-user-select: auto;
user-select: auto;
}
body {
background: #f2f2f7;
}
button {
font-size: 16px;
background: var(--color-primary);
color: #fff;
border-radius: 8px;
border: none;
padding: 0.24em 0.5em;
}
button .iconfont {
margin-right: 6px;
}
.list {
margin: 15px;
}
.list__header {
margin: 0 20px;
color: var(--list-header-color);
font-size: 13px;
}
.list__body {
margin-top: 10px;
background: var(--card-background);
border-radius: var(--card-radius);
border-radius: 12px;
overflow: hidden;
}
.form-item {
display: flex;
align-items: center;
justify-content: space-between;
font-size: 16px;
min-height: 2em;
padding: 0.5em 20px;
position: relative;
}
.form-item--link .icon-arrow_right {
color: #86868b;
}
.form-item + .form-item::before {
content: "";
position: absolute;
top: 0;
left: 20px;
right: 0;
border-top: 0.5px solid var(--divider-color);
}
.form-item .iconfont {
margin-right: 4px;
}
.form-item input,
.form-item select {
font-size: 14px;
text-align: right;
}
.form-item input[type="checkbox"] {
width: 1.25em;
height: 1.25em;
}
input[type="number"] {
width: 4em;
}
input[type='checkbox'][role='switch'] {
position: relative;
display: inline-block;
appearance: none;
width: 40px;
height: 24px;
border-radius: 24px;
background: #ccc;
transition: 0.3s ease-in-out;
}
input[type='checkbox'][role='switch']::before {
content: '';
position: absolute;
left: 2px;
top: 2px;
width: 20px;
height: 20px;
border-radius: 50%;
background: #fff;
transition: 0.3s ease-in-out;
}
input[type='checkbox'][role='switch']:checked {
background: var(--color-primary);
}
input[type='checkbox'][role='switch']:checked::before {
transform: translateX(16px);
}
.actions {
margin: 15px;
}
.copyright {
margin: 15px;
font-size: 12px;
color: #86868b;
}
.copyright a {
color: #515154;
text-decoration: none;
}
.preview.loading {
pointer-events: none;
}
.icon-loading {
display: inline-block;
animation: 1s linear infinite spin;
}
@keyframes spin {
0% {
transform: rotate(0);
}
100% {
transform: rotate(1turn);
}
}
@media (prefers-color-scheme: dark) {
:root {
--divider-color: rgba(84,84,88,0.65);
--card-background: #1c1c1e;
--list-header-color: rgba(235,235,245,0.6);
}
body {
background: #000;
color: #fff;
}
}`;
const js =
`(() => {
const settings = JSON.parse('${JSON.stringify(settings)}')
const formItems = JSON.parse('${JSON.stringify(formItems)}')
window.invoke = (code, data) => {
window.dispatchEvent(
new CustomEvent(
'JBridge',
{ detail: { code, data } }
)
)
}
const iCloudInput = document.querySelector('input[name="useICloud"]')
iCloudInput.checked = settings.useICloud
iCloudInput
.addEventListener('change', (e) => {
invoke('moveSettings', e.target.checked)
})
const formData = {};
const fragment = document.createDocumentFragment()
for (const item of formItems) {
const value = settings[item.name] ?? item.default ?? null
formData[item.name] = value;
const label = document.createElement("label");
label.className = "form-item";
const div = document.createElement("div");
div.innerText = item.label;
label.appendChild(div);
if (item.type === 'select') {
const select = document.createElement('select')
select.className = 'form-item__input'
select.name = item.name
select.value = value
for (const opt of (item.options || [])) {
const option = document.createElement('option')
option.value = opt.value
option.innerText = opt.label
option.selected = value === opt.value
select.appendChild(option)
}
select.addEventListener('change', (e) => {
formData[item.name] = e.target.value
invoke('changeSettings', formData)
})
label.appendChild(select)
} else if (item.type === 'cell') {
label.classList.add('form-item--link')
const icon = document.createElement('i')
icon.className = 'iconfont icon-arrow_right'
label.appendChild(icon)
label.addEventListener('click', () => {
invoke('itemClick', item)
})
} else {
const input = document.createElement("input")
input.className = 'form-item__input'
input.name = item.name
input.type = item.type || "text";
input.enterKeyHint = 'done'
input.value = value
// Switch
if (item.type === 'switch') {
input.type = 'checkbox'
input.role = 'switch'
input.checked = value
}
if (item.type === 'number') {
input.inputMode = 'decimal'
}
if (input.type === 'text') {
input.size = 12
}
input.addEventListener("change", (e) => {
formData[item.name] =
item.type === 'switch'
? e.target.checked
: item.type === 'number'
? Number(e.target.value)
: e.target.value;
invoke('changeSettings', formData)
});
label.appendChild(input);
}
fragment.appendChild(label);
}
document.getElementById('form').appendChild(fragment)
for (const btn of document.querySelectorAll('.preview')) {
btn.addEventListener('click', (e) => {
const target = e.currentTarget
target.classList.add('loading')
const icon = e.currentTarget.querySelector('.iconfont')
const className = icon.className
icon.className = 'iconfont icon-loading'
const listener = (event) => {
const { code } = event.detail
if (code === 'previewStart') {
target.classList.remove('loading')
icon.className = className
window.removeEventListener('JWeb', listener);
}
}
window.addEventListener('JWeb', listener)
invoke('preview', e.currentTarget.dataset.size)
})
}
const reset = () => {
for (const item of formItems) {
const el = document.querySelector(\`.form-item__input[name="\${item.name}"]\`)
formData[item.name] = item.default
if (item.type === 'switch') {
el.checked = item.default
} else {
el.value = item.default
}
}
invoke('removeSettings', formData)
}
document.getElementById('reset').addEventListener('click', () => reset())
document.getElementById('chooseBgImg')
.addEventListener('click', () => invoke('chooseBgImg'))
})()`;
const html =
`<html>
<head>
<meta name='viewport' content='width=device-width, user-scalable=no'>
<link rel="stylesheet" href="//at.alicdn.com/t/c/font_3772663_kmo790s3yfq.css" type="text/css">
<style>${style}</style>
</head>
<body>
<div class="list">
<div class="list__header">Common</div>
<form class="list__body" action="javascript:void(0);">
<label class="form-item">
<div>Sync with iCloud</div>
<input name="useICloud" type="checkbox" role="switch">
</label>
<label id="chooseBgImg" class="form-item form-item--link">
<div>Background image</div>
<i class="iconfont icon-arrow_right"></i>
</label>
<label id='reset' class="form-item form-item--link">
<div>Reset</div>
<i class="iconfont icon-arrow_right"></i>
</label>
</form>
</div>
<div class="list">
<div class="list__header">Settings</div>
<form id="form" class="list__body" action="javascript:void(0);"></form>
</div>
<div class="actions">
<button class="preview" data-size="small"><i class="iconfont icon-yingyongzhongxin"></i>Small</button>
<button class="preview" data-size="medium"><i class="iconfont icon-daliebiao"></i>Medium</button>
<button class="preview" data-size="large"><i class="iconfont icon-dantupailie"></i>Large</button>
</div>
<footer>
<div class="copyright">Copyright © 2022 <a href="javascript:invoke('safari','https://www.imarkr.com');">iMarkr</a> All rights reserved.</div>
</footer>
<script>${js}</script>
</body>
</html>`;
const webView = new WebView();
await webView.loadHTML(html, homePage);
const clearBgImg = () => {
delete settings.backgroundImage;
const fm = FileManager.local();
if (fm.fileExists(imgPath)) {
fm.remove(imgPath);
}
};
const chooseBgImg = async () => {
const { option } = await presentSheet({
options: [
{ key: 'choose', title: 'Choose photo' },
{ key: 'clear', title: 'Clear background image' }
]
});
switch (option?.key) {
case 'choose': {
try {
const image = await Photos.fromLibrary();
cache.writeImage('bg.png', image);
settings.backgroundImage = imgPath;
writeSettings(settings, { useICloud: settings.useICloud });
} catch (e) {}
break
}
case 'clear':
clearBgImg();
writeSettings(settings, { useICloud: settings.useICloud });
break
}
};
const injectListener = async () => {
const event = await webView.evaluateJavaScript(
`(() => {
const controller = new AbortController()
const listener = (e) => {
completion(e.detail)
controller.abort()
}
window.addEventListener(
'JBridge',
listener,
{ signal: controller.signal }
)
})()`,
true
).catch((err) => {
console.error(err);
throw err
});
const { code, data } = event;
switch (code) {
case 'preview': {
const widget = await render({ settings, family: data });
const { backgroundImage } = settings;
if (backgroundImage) {
widget.backgroundImage = FileManager.local().readImage(backgroundImage);
}
webView.evaluateJavaScript(
'window.dispatchEvent(new CustomEvent(\'JWeb\', { detail: { code: \'previewStart\' } }))',
false
);
widget[`present${data.replace(data[0], data[0].toUpperCase())}`]();
break
}
case 'safari':
Safari.openInApp(data, true);
break
case 'changeSettings':
settings = { ...settings, ...data };
writeSettings(data, { useICloud: settings.useICloud });
break
case 'moveSettings':
settings.useICloud = data;
moveSettings(data, settings);
break
case 'removeSettings':
settings = { ...settings, ...data };
clearBgImg();
removeSettings(settings);
break
case 'chooseBgImg':
await chooseBgImg();
break
case 'itemClick':
onItemClick?.(data);
break
}
injectListener();
};
injectListener().catch((e) => {
console.error(e);
throw e
});
webView.present();
// ======= web end =========
};
if (typeof require === 'undefined') require = importModule;
const preference = {
green: '#00b578',
yellow: '#ffc300',
red: '#ea0000',
/** 有效周期,单位:天 */
period: 3,
widgetURL: ''
};
const cache = useCache();
/**
* @returns {Promise<NATData>}
*/
const getData = async () => {
const { getNATData } = require/* ignore */('./Config');
if (getNATData) {
try {
const data = await getNATData();
cache.writeJSON('data.json', data);
return data
} catch (e) {
const data = cache.readJSON('data.json');
return data
}
}
// return {
// natResultName: '阳性',
// sampleDate: '2022-11-24 17:24:00'
// }
};
const createWidget = async () => {
const { green, yellow, red, period, widgetURL } = preference;
const data = await getData();
const { natResultName } = data;
const sampleDate = new Date(data.sampleDate.replace(/-/g, '/'));
const now = new Date();
const diff = now.getTime() - (new Date(sampleDate).getTime());
const leftTime = period * 24 * 3600000 - diff;
const widget = new ListWidget();
if (widgetURL) {
widget.url = widgetURL;
}
widget.backgroundColor = new Color(green);
if (leftTime < 0) {
widget.backgroundColor = new Color(yellow);
}
if (natResultName === '阳性') {
widget.backgroundColor = new Color(red);
}
const stackCapsule = widget.addStack();
stackCapsule.size = new Size(24 * 2.8, 24 * 1.6);
stackCapsule.backgroundColor = Color.white();
stackCapsule.cornerRadius = 10;
stackCapsule.centerAlignContent();
const capText = (() => {
if (leftTime >= 0) {
return Math.ceil(diff / (24 * 3600000)) * 24 + 'h'
}
return '>' + Math.ceil(Math.abs(leftTime / (24 * 3600000))) + 'd'
})();
const textCapsule = stackCapsule.addText(capText);
textCapsule.font = Font.boldSystemFont(24);
textCapsule.textColor = new Color(green);
if (leftTime < 0) {
textCapsule.textColor = new Color(yellow);
}
if (natResultName === '阳性') {
textCapsule.textColor = new Color(red);
}
widget.addSpacer(10);
const df = new DateFormatter();
df.dateFormat = 'yyyy/MM/dd hh:mm';
const textDate = widget.addText(`检测时间 ${df.string(sampleDate)}`);
textDate.font = Font.systemFont(10);
textDate.textColor = Color.white();
textDate.lineLimit = 1;
textDate.minimumScaleFactor = 0.7;
widget.addSpacer(10);
const textTip = widget.addText(`有效期${period}d剩余`);
textTip.font = Font.boldSystemFont(16);
textTip.minimumScaleFactor = 0.8;
textTip.textColor = Color.white();
const unit = leftTime < 3600000 ? '分钟' : '小时';
const leftText = (() => {
if (leftTime < 0) {
return 0
}
if (unit === '小时') {
return Math.round(leftTime / 3600000)
}
return Math.round(leftTime / 60000)
})();
widget.addSpacer(4);
const stackBottom = widget.addStack();
stackBottom.bottomAlignContent();
const stackLeft = stackBottom.addStack();
stackLeft.size = new Size(-1, 34);
const textLeft = stackLeft.addText(`${leftText}`);
textLeft.font = Font.boldSystemFont(34);
textLeft.textColor = Color.white();
const stackUnit = stackBottom.addStack();
stackUnit.size = new Size(-1, 15 + 3);
const textUnit = stackUnit.addText(unit);
textUnit.font = Font.systemFont(15);
textUnit.textColor = Color.white();
if (config.widgetFamily === 'large') {
widget.addSpacer();
}
return widget
};
const widget = await withSettings({
homePage: 'https://github.com/Honye/scriptable-scripts/blob/master/dist/NAT.js',
formItems: [
{
name: 'period',
label: 'Effective time',
type: 'select',
options: [
{ label: 'a day', value: '1' },
{ label: '2 days', value: '2' },
{ label: '3 day', value: '3' },
{ label: '4 days', value: '4' },
{ label: '5 days', value: '5' },
{ label: '6 days', value: '6' },
{ label: '7 days', value: '7' }
],
default: `${preference.period}`
},
{
name: 'widgetURL',
label: 'Widget URL'
}
],
render: async ({ family, settings }) => {
config.widgetFamily = family ?? config.widgetFamily;
Object.assign(preference, {
period: Number(settings.period || '3'),
...settings
});
const widget = createWidget();
return widget
}
});
if (config.runsInWidget) {
Script.setWidget(widget);
}
/**
* @typedef {object} NATData
* @property {'阴性'|'阳性'} natResultName 核酸检测结果
* @property {string} sampleDate 采样时间
*/