-
Notifications
You must be signed in to change notification settings - Fork 48
/
Copy pathSmallPortraitCardWithDialog.tsx
46 lines (42 loc) · 1.28 KB
/
SmallPortraitCardWithDialog.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
44
45
46
import styles from "./styles.module.css";
import React from "react";
import { BrowserRouter as Router, Route, Switch } from "react-router-dom";
import { useHistory } from "@docusaurus/router";
import LargePortraitCard from "./LargePortraitCard";
import { SmallPortraitCard } from "./SmallPortraitCard";
export function SmallPortraitCardWithDialog({ person }) {
const history = useHistory();
function closeDialog() {
history.goBack()
}
return (
<Router>
<div>
<SmallPortraitCard person={person} />
<Switch>
<Route
path={"/about/" + person.firstName}
render={() => (
<>
<div className={styles.modal_overlay} onClick={closeDialog}>
<div className={styles.modal_content}>
<button
className="close-button"
style={{
position: "absolute",
top: "10px",
right: "10px",
}}
onClick={closeDialog}
/>
<LargePortraitCard person={person} />
</div>
</div>
</>
)}
/>
</Switch>
</div>
</Router>
);
}