-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKeysTable.tsx
54 lines (51 loc) · 1.27 KB
/
KeysTable.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
import './KeysTable.css'
import {
NullstackClientContext,
NullstackFunctionalComponent,
NullstackServerContext,
} from 'nullstack'
// Wrongly enforcing type to example values always undefined at browser
type FakeServer = NullstackServerContext
function KeysTable({
project,
settings,
secrets,
server,
}: NullstackClientContext<FakeServer>) {
return (
<table class="table">
<thead>
<tr>
<th>Variable Name</th>
<th>Value</th>
</tr>
</thead>
<tbody>
<tr>
<td>NULLSTACK_PROJECT_NAME</td>
<td>{project.name}</td>
</tr>
<tr>
<td>NULLSTACK_SETTINGS_PUBLIC_KEY</td>
<td>{settings?.publicKey}</td>
</tr>
<tr>
<td>NULLSTACK_SERVER_PORT</td>
<td>{server?.port || 'undefined in browser :)'}</td>
</tr>
<tr>
<td>NULLSTACK_SECRETS_PASSWORD</td>
<td>{secrets?.password || 'undefined in browser :)'}</td>
</tr>
<tr>
<td>COMMON_VARIABLE</td>
<td>
<code>process.env.COMMON_VARIABLE</code> can be accessed only at
server!
</td>
</tr>
</tbody>
</table>
)
}
export default KeysTable as NullstackFunctionalComponent<any>