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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
|
import { CSSProperties, ReactNode, useState } from 'react';
import axios from 'axios';
import { userInfo, gameInfo } from "../api/api";
import { AccountAvatar } from "./account";
import { Bubble, Vierkant, IconLabelButton } from './ui';
import DoneIcon from '@material-ui/icons/Done';
import CloseIcon from '@material-ui/icons/Close';
export function NotificationsArea(props: {
visible?: boolean;
friendRequests?: Array<userInfo>;
gameInvites?: Array<gameInfo>;
rerender: () => void;
}) {
var messages = (
(props.friendRequests ? props.friendRequests.length : 0) +
(props.gameInvites ? props.gameInvites.length : 0)
)
return props.visible && <Bubble style={{
left: 48 + 12,
top: 92,
transform: "translateY(-100%)",
textAlign: "left",
width: 400,
height: 450
}} tuitjeStyle={{
left: 12,
bottom: 86,
transform: "translate(-100%, 100%) rotate(90deg)"
}}>
<h2 style={{ marginBottom: 24 }}>Meldingen</h2>
<div style={{
overflowY: "scroll",
whiteSpace: "normal",
height: 450 - 24 * 4,
borderRadius: 6
}}>
{ props.gameInvites?.map(game => <GameInvite hide={props.rerender} game={game}/>) }
{ props.friendRequests?.map(user => <FriendRequest hide={props.rerender} user={user}/>) }
{
messages == 0 &&
<div style={{
position: "absolute",
left: 0,
right: 0,
bottom: 0,
top: 0
}}>
<h1 style={{
position: "absolute",
top: "50%",
left: "50%",
whiteSpace: "nowrap",
transform: "translate(-50%, -50%)",
opacity: .7
}}>Geen meldingen</h1>
</div>
}
</div>
</Bubble>
}
var FriendRequestButtonStyle: CSSProperties = {
borderRadius: 6,
display: "inline-block",
marginLeft: 0,
textAlign: "center"
};
function Acceptable(props: {
children?: ReactNode;
onAccept?: () => void;
onDeny?: () => void;
}) {
return <Vierkant style={{
borderRadius: 8,
background: "var(--background-alt)",
margin: 0,
padding: 12,
width: "100%",
marginBottom: 12
}}>
<div style={{ position: "relative" }}>
{props.children}
<div style={{
display: "grid",
gridTemplateColumns: "1fr, 1fr",
gridGap: 12,
marginTop: 12,
gridAutoFlow: "column",
}}>
<IconLabelButton
onclick={props.onAccept}
style={FriendRequestButtonStyle}
icon={<DoneIcon/>}
text="Accepteren"/>
<IconLabelButton
onclick={props.onDeny}
style={FriendRequestButtonStyle}
icon={<CloseIcon/>}
text="Verwijderen"/>
</div>
</div>
</Vierkant>
}
function FriendRequest(props: {
user: userInfo;
hide: () => void;
}) {
var [ gone, setGone ] = useState(false);
var hide = () => {
setGone(true);
props.hide();
}
return !gone && <Acceptable onAccept={() => {
axios.request({
method: "post",
url: "/api/social/accept",
headers: {"content-type": "application/json"},
data: { "id": props.user?.id }
})
.then(hide);
}} onDeny={() => {
axios.request({
method: "post",
url: "/api/social/remove",
headers: {"content-type": "application/json"},
data: { "id": props.user?.id }
})
.then(hide);
}}>
<a href={"/user?id=" + props.user.id}>
<AccountAvatar size={48} id={props.user.id}/>
<div style={{
display: "inline-block",
verticalAlign: "top",
marginLeft: 6
}}>
<i style={{ display: "block" }}>Vriendschapsverzoek</i>
<b>{props.user.username}</b>
</div>
</a>
</Acceptable>
}
function GameInvite(props: {
game: gameInfo;
hide: () => void;
}) {
return <Acceptable>
<a>
<div style={{
display: "inline-block",
verticalAlign: "top",
}}>
<i style={{ display: "block" }}>Partijuitnodiging</i>
<p><b><a href={"/user?id=" + props.game.opponent?.id}>{props.game.opponent?.username}</a></b> wil een potje 4 op een rij spelen!</p>
</div>
</a>
</Acceptable>
}
|