-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAccessCount.tsx
50 lines (42 loc) · 1.27 KB
/
AccessCount.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
/* eslint-disable no-console */
import Nullstack, { NullstackServerContext } from 'nullstack'
type ContextPassword = {
passwordFromBrowser: string
}
class AccessCount extends Nullstack {
apiResult: string
static serverCount = 0
static async accessAPI(context: ContextPassword) {
const { secrets, settings, passwordFromBrowser } =
context as NullstackServerContext<ContextPassword>
if (settings.disableCount) {
return 'Test Mode! ViewCount disabled!'
}
if (passwordFromBrowser !== secrets.password) {
return 'Unauthorized access! Use the right password!'
}
return `Authorized! API Access count: ${++AccessCount.serverCount}`
}
async callAPI({ passwordFromBrowser }: ContextPassword) {
this.apiResult = await AccessCount.accessAPI({ passwordFromBrowser })
}
render() {
return (
<main>
<button class="button" onclick={this.callAPI}>
Try access with wrong password
</button>
<button
class="button"
onclick={() =>
this.callAPI({ passwordFromBrowser: 'right_password' })
}
>
Try access with right password
</button>
{this.apiResult && <p>{this.apiResult}</p>}
</main>
)
}
}
export default AccessCount