blob: ceb83f4610b23b4b06bc52f805d80ff93bcc518b (
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
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
|
import axios from 'axios';
import { FormEvent, useState } from 'react';
import { userInfo } from '../api/api';
import { AccountAvatar } from '../components/account';
import { NavBar } from '../components/navbar';
import { CenteredPage, PageTitle } from '../components/page';
import { Button, Input, Vierkant } from '../components/ui';
import SearchOutlinedIcon from '@material-ui/icons/SearchOutlined';
function search(callback: (results: Array<userInfo>) => void) {
var query: string = (document.getElementById('bigSearchBar') 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 className='results w100m2m'>
{props.userList?.map(user => <SearchResult user={user} key={user.id} />)}
</div>;
}
function SearchResult(props: { user: userInfo; }) {
return <Vierkant
className='result bg-800 pad-m fullwidth'
href={'/user?id=' + props.user.id}
>
<div className='inner posrel'>
<AccountAvatar size={48} id={props.user.id} />
<div className='userInfo posabs v0 r0'>
<b className='username'>{props.user.username}</b>
<p className='status'>{props.user.status}</p>
</div>
</div>
</Vierkant>;
}
function BigSearchBar(props: {
searchFunction: (event?: FormEvent<HTMLFormElement>) => void;
}) {
return <Vierkant className='pad-m bg-800 w100m2m bigSearchBar posrel'>
<form onSubmit={props.searchFunction}>
<Input
id='bigSearchBar'
label='Zoeken voor gebruikers...'
autocomplete='off'
autofocus
className='pad-m posabs abscenterv'
/>
<Button
className='pad-m dispinbl valigntop floatr'
onclick={props.searchFunction}
>
<SearchOutlinedIcon />
</Button>
<input type='submit' className='dispnone' />
</form>
</Vierkant>;
}
export default function SearchPage() {
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>
<BigSearchBar searchFunction={getSearchResults} />
<SearchResults userList={results} />
{searched && results.length == 0 && <h1
className='noresults center subtile'
>
Geen zoekresultaten gevonden
</h1>}
</CenteredPage>
</div>;
}
|