-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathServerList.tsx
43 lines (42 loc) · 1.1 KB
/
ServerList.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
import * as React from 'react';
import { ProjectState, ServerInfo } from '../shared/state';
import { Button } from './components/Button';
import { Server } from './Server';
export function ServerList({
state,
updateServer,
deleteServer,
}: {
state: ProjectState;
updateServer: (dc: ServerInfo, position: number, insert: boolean) => void;
deleteServer: (id: string) => void;
}) {
return (
<div className="servers">
<h2 className="title">SSH Connections</h2>
{state.servers?.map((dc: ServerInfo, i: number) => (
<Server
key={dc.id}
server={dc}
updateServer={(dc: ServerInfo) => updateServer(dc, i, false)}
deleteServer={() => deleteServer(dc.id)}
/>
))}
<div className="text-center">
<Button
onClick={() => {
updateServer(
new ServerInfo({
name: `Untitled Server #${state.servers?.length + 1}`,
}),
-1,
true
);
}}
>
Add SSH Connection
</Button>
</div>
</div>
);
}