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
|
import { FormEvent, useState } from 'react';
import axios from 'axios';
import { NavBar } from '../components/navbar';
import { Vierkant, Button, Input } from '../components/ui';
import { CenteredPage, PageTitle } from '../components/page';
import { AccountAvatar } from '../components/account';
import { userInfo } from '../api/api';
import SearchOutlinedIcon from '@material-ui/icons/SearchOutlined';
function search(callback: (results: Array<userInfo>) => void) {
var query: string = (document.getElementById("searchBar") as HTMLInputElement).value;
if (query.length < 3) return;
axios.request<{ "results": Array<userInfo> }>({
method: "post",
url: `${window.location.origin}/api/social/search`,
headers: {"content-type": "application/json"},
data: { "query": query }
})
.then(response => callback(response.data.results))
.catch(() => {});
}
function SearchResults(props: { userList: Array<userInfo> }) {
return <div>
{ props.userList?.map(user => <SearchResult user={user} key={user.id}/>) }
</div>;
}
function SearchResult(props: { user: userInfo }) {
return <Vierkant style={{
padding: 12
}} fullwidth href={"/user?id=" + props.user.id}>
<div style={{ position: "relative" }}>
<AccountAvatar size={48} id={props.user.id}/>
<div style={{
position: "absolute",
top: 0, right: 0, bottom: 0,
left: 48 + 12
}}>
<b>{props.user.username}</b>
<p>{props.user.status}</p>
</div>
</div>
</Vierkant>;
}
function SearchBar(props: {
searchFunction: (event?: FormEvent<HTMLFormElement>) => void;
}) {
return <Vierkant fullwidth style={{
padding: 8,
marginBottom: 24
}}>
<form onSubmit={props.searchFunction}>
<Input id="searchBar" label="Zoeken voor gebruikers..." autocomplete="off" dark autofocus style={{
backgroundColor: "var(--background)",
color: "var(--text)",
padding: 14,
fontSize: 16,
width: "calc(100% - 48px - 14px * 2)"
}}/>
<Button style={{
padding: 12,
float: "right",
display: "inline-block",
borderRadius: 4
}} onclick={props.searchFunction}><SearchOutlinedIcon/></Button>
<input type="submit" style={{ display: "none" }}/>
</form>
</Vierkant>
}
export default function HomePage() {
var [searched, setSearched] = useState(false);
var [results, setResults] = useState<Array<userInfo>>([]);
var getSearchResults = (event?: FormEvent<HTMLFormElement>) => {
event.preventDefault();
search(results => setResults(results));
setSearched(true);
}
return <div>
<NavBar/>
<CenteredPage width={802}>
<PageTitle>Zoeken</PageTitle>
<SearchBar searchFunction={getSearchResults}/>
<SearchResults userList={results}/>
{ searched && results.length == 0 && <h1 style={{
opacity: .6,
color: "var(--text)",
textAlign: "center",
margin: "24px 32px"
}}>Geen zoekresultaten gevonden</h1> }
</CenteredPage>
</div>
}
|