Skip to content

Commit 5b58c1b

Browse files
Update SmallPortraitCardWithDialog to enable the possibility to close the dialog by clicking the overlay.
1 parent ddfdc96 commit 5b58c1b

File tree

4 files changed

+56
-52
lines changed

4 files changed

+56
-52
lines changed

src/components/about/SmallPortraitCard.tsx

+19-21
Original file line numberDiff line numberDiff line change
@@ -2,41 +2,39 @@ import styles from "./styles.module.css";
22
import { useHistory } from "react-router";
33
import Avatar from "./Avatar";
44
import { useState } from "react";
5+
import Link from "@docusaurus/Link";
56

6-
7-
export function SmallPortraitCard ({ person}) {
7+
export function SmallPortraitCard({ person }) {
88
let [isDialogOpen, setIsDialogOpen] = useState(false);
99

1010
const history = useHistory();
1111

1212
const openDialog = () => {
1313
history.push("/about/" + person.firstName);
1414
setIsDialogOpen(true);
15-
/* dialog = name
16-
/* use a props*/
1715
};
1816

1917
return (
2018
<div onClick={openDialog}>
21-
<div className={"card" + " " + styles.small_portrait_card}>
22-
<div className="card__header">
23-
<Avatar person={person} />
24-
<div
25-
className={
26-
"flex-full-centered" + " " + styles.small_card_complete_name
27-
}
28-
>
29-
{person.completeName}
19+
<div className={"card" + " " + styles.small_portrait_card}>
20+
<div className="card__header">
21+
<Avatar person={person} />
22+
<div
23+
className={
24+
"flex-full-centered" + " " + styles.small_card_complete_name
25+
}
26+
>
27+
{person.completeName}
28+
</div>
3029
</div>
31-
</div>
32-
<div className="card__body">
33-
<div
34-
className={"flex-full-centered" + " " + styles.small_card_position}
35-
>
36-
{person.position}
30+
<div className="card__body">
31+
<div
32+
className={"flex-full-centered" + " " + styles.small_card_position}
33+
>
34+
{person.position}
35+
</div>
3736
</div>
3837
</div>
3938
</div>
40-
</div>
4139
);
42-
}
40+
}

src/components/about/SmallPortraitCardWithDialog.tsx

+13-28
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
import styles from "./styles.module.css";
12
import React from "react";
23
import {
34
BrowserRouter as Router,
@@ -9,30 +10,17 @@ import { useState } from "react";
910
import LargePortraitCard from "./LargePortraitCard";
1011
import { SmallPortraitCard } from "./SmallPortraitCard";
1112

12-
const modalOverlay = {
13-
position: "fixed",
14-
top: "0",
15-
left: "0",
16-
right: "0",
17-
bottom: "0",
18-
backgroundColor: "rgba(0, 0, 0, 0.3)",
19-
zIndex: 1000
20-
};
21-
const modalContent = {
22-
position: "fixed",
23-
top: "50%",
24-
left: "50%",
25-
transform: "translate(-50%, -50%)",
26-
backgroundColor: "white",
27-
border: "1px solid #ccc",
28-
boxShadow: "0 8px 16px rgba(0,0,0,0.2)",
29-
borderRadius: "10px",
30-
zIndex: "4000"
31-
};
32-
33-
export default function PortraitCardsAnchorAndDialog({ person }) {
13+
export default function SmallPortraitCardWithDialog({ person }) {
3414
const history = useHistory();
3515
let [isDialogOpen, setIsDialogOpen] = useState(true);
16+
const overlay = document.getElementsByClassName("modal_overlay");
17+
const closeButton = document.getElementsByClassName("close-button");
18+
19+
function closeDialog() {
20+
history.goBack();
21+
console.log("overlay clicked")
22+
}
23+
3624
return (
3725
<Router>
3826
<div>
@@ -42,19 +30,16 @@ export default function PortraitCardsAnchorAndDialog({ person }) {
4230
path={"/about/" + person.firstName}
4331
render={() => (
4432
<>
45-
<div style={modalOverlay}>
46-
<div style={modalContent}>
33+
<div className={styles.modal_overlay} onClick={closeDialog}>
34+
<div className={styles.modal_content}>
4735
<button
4836
className="close-button"
4937
style={{
5038
position: "absolute",
5139
top: "10px",
5240
right: "10px",
5341
}}
54-
onClick={() => {
55-
history.goBack();
56-
setIsDialogOpen(false);
57-
}}
42+
onClick={closeDialog}
5843
/>
5944
<LargePortraitCard person={person} />
6045
</div>

src/components/about/index.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ import { coreTeam, QSCollaboratorsTeam, leadershipTeam } from "./Team/team";
33
import FourValues from "./FourValues";
44
import SubTeam from "./SubTeam";
55
import LinkToContact from "../home/LinkToContact";
6-
import { BrowserRouter as Router } from "react-router-dom";
7-
import Appli from "./Test"; // Your main App component
6+
87

98
export function About() {
109
return (

src/components/about/styles.module.css

+23-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,25 @@
1+
.modal_overlay {
2+
position: fixed;
3+
top: 0;
4+
left: 0;
5+
right: 0;
6+
bottom: 0;
7+
background-color: rgba(0, 0, 0, 0.3);
8+
z-index: 1000;
9+
}
10+
11+
.modal_content {
12+
position: fixed;
13+
top: 50%;
14+
left: 50%;
15+
transform: translate(-50%, -50%);
16+
background-color: white;
17+
border: 1px solid #ccc;
18+
box-shadow: 0 8px 16px rgba(0,0,0,0.2);
19+
border-radius: 20px;
20+
z-index: 4000;
21+
}
22+
123
.small_portrait_card {
224
width: 279px;
325
height: 320px;
@@ -239,7 +261,7 @@ div .join_the_team_text {
239261
}
240262

241263
.large_portrait_card {
242-
width: 960px;
264+
width: 920px;
243265
padding: var(--ifm-spacing-xl) var(--ifm-spacing-2xl);
244266
}
245267

0 commit comments

Comments
 (0)