generated from chiffre-io/template-library
-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathclient.tsx
120 lines (114 loc) · 3.37 KB
/
client.tsx
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
'use client'
import { useRouter } from 'next/navigation'
import { useQueryState } from 'nuqs'
import React from 'react'
import { delayParser, queryParser } from './parsers'
const autoFillMessage = `Lorem ipsum dolor sit amet, consectetur adipiscing elit. Donec a diam lectus. Sed sit amet ipsum mauris. Maecenas congue ligula ac quam viverra nec consectetur ante hendrerit. Donec et mollis dolor.`
export function Client() {
const [isQueryLoading, startQueryTransition] = React.useTransition()
const [isDelayLoading, startDelayTransition] = React.useTransition()
const [serverDelay, setServerDelay] = useQueryState(
'serverDelay',
delayParser.withOptions({
shallow: false,
startTransition: startDelayTransition
})
)
const [clientDelay, setClientDelay] = useQueryState(
'clientDelay',
delayParser
)
const [q, setQ] = useQueryState(
'q',
queryParser.withOptions({
shallow: false,
throttleMs: clientDelay,
startTransition: startQueryTransition
})
)
const router = useRouter()
const timeoutRef = React.useRef<number | undefined>(undefined)
const [index, setIndex] = React.useState(0)
React.useEffect(() => {
if (index === 0) {
return
}
setQ(autoFillMessage.slice(0, index))
clearTimeout(timeoutRef.current)
if (index === autoFillMessage.length) {
return
}
timeoutRef.current = window.setTimeout(() => {
setIndex(i => Math.min(i + 1, autoFillMessage.length))
}, 80)
}, [index])
return (
<>
<h2>Client</h2>
<div>
<label>Server latency simulation </label>
<select
value={serverDelay}
onChange={e =>
setServerDelay(parseInt(e.target.value)).then(() =>
router.refresh()
)
}
>
<option value="0">No delay</option>
<option value="100">100ms</option>
<option value="200">200ms</option>
<option value="500">500ms</option>
<option value="1000">1s</option>
</select>
</div>
<div>
<label>Throttle URL updates at </label>
<select
value={clientDelay}
onChange={e => setClientDelay(parseInt(e.target.value))}
>
<option value="50">Default (50ms)</option>
<option value="100">100ms</option>
<option value="200">200ms</option>
<option value="500">500ms</option>
<option value="1000">1s</option>
</select>
</div>
<br />
<div>
<label>Query </label>
<input
value={q}
onChange={e => setQ(e.target.value)}
placeholder="Search"
/>
{timeoutRef.current ? (
<button
onClick={() => {
setIndex(0)
clearTimeout(timeoutRef.current)
timeoutRef.current = undefined
setQ(null)
}}
>
Cancel
</button>
) : (
<button onClick={() => setIndex(1)}>Simulate typing</button>
)}
<button
onClick={() => {
setQ('foo')
setServerDelay(500)
}}
>
Set both
</button>
<p>Client state: {q || <em>empty</em>}</p>
<p>Query status: {isQueryLoading ? 'loading' : 'idle'}</p>
<p>Delay status: {isDelayLoading ? 'loading' : 'idle'}</p>
</div>
</>
)
}