blob: 3d86358a3f5f8dcea2b2967575d385f3cf6690f0 (
plain)
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
|
import { useContext, useEffect } from 'preact/hooks';
import { useSignal } from '@preact/signals';
import { route } from 'preact-router';
import { Pb } from '../context.ts';
import { logOut } from '../util.ts';
import { Header, Content, ContainedList, Form, FormLabel, TextInput, Button } from '../components';
const ProjectsList = ({ user }) => {
console.log(user);
const pb = useContext(Pb);
const projects = useSignal(null);
const projectName = useSignal('');
useEffect(() => {
pb.collection('projects')
.getList(1, 20, { sort: '-mtime' })
.then(p => projects.value = p);
}, []);
const onCreateProject = async (event: FormEvent) => {
event.preventDefault();
const project = await pb.collection('projects').create({
name: projectName.value,
owner: pb.authStore.model.id,
});
route(`/${user}/${project.name}`);
};
return (
<>
<Header title="DataNodes">
<Button kind="ghost" href="/account">My Account</Button>
<Button kind="ghost" onClick={() => logOut(pb)}>Log Out</Button>
</Header>
<Content>
<h1>{user}'s Projects</h1>
<Form onSubmit={onCreateProject}>
<FormLabel>
Name
<TextInput placeholder="Project name" signal={projectName} />
</FormLabel>
<Button>Create project</Button>
</Form>
{projects.value === null
? <p>Loading...</p>
: <ContainedList>
{projects.value.items.map(p => (
<li><Button kind="ghost" href={`/${user}/${p.name}`}>{p.name}</Button></li>
))}
</ContainedList>
}
</Content>
</>
);
};
export default ProjectsList;
|