blob: 11cfe2ce91e888f66a5b1c6a85dee65de734d640 (
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
|
import Navbar from '../components/navbar';
import { FormEvent } from 'react';
import { ArticleMeta } from './post/[id]';
import SearchOutlinedIcon from '@material-ui/icons/SearchOutlined';
function SearchBar(props: {
searchFunction: (event?: FormEvent<HTMLFormElement>) => void;
}) {
return <div className="searchBar">
<form onSubmit={props.searchFunction}>
<input className="input" placeholder="Search for posts..." autoComplete="off"/>
<button className="button" onClick={() => props.searchFunction()}><SearchOutlinedIcon/></button>
<input type="submit" style={{ display: "none" }}/>
</form>
</div>
}
export default function SearchPage(props: {
posts: Array<{
props: {
meta: ArticleMeta
}
}>
}) {
return <div>
<div className="centeredPage">
<div className="titleWrapper">
<h1>Search for posts</h1>
</div>
<div className="navAreaWrapper">
<div className="sticky">
<Navbar page="search"/>
</div>
</div>
<div className="contentWrapper">
<SearchBar searchFunction={(event?: FormEvent<HTMLFormElement>) => {
event?.preventDefault();
}}/>
</div>
</div>
</div>
}
// grep -Por "^\[meta\]:\s+<tags>\s+\(\K(.+)(?=\)$)" posts
|