-
Notifications
You must be signed in to change notification settings - Fork 2
/
notification.php
330 lines (277 loc) · 13.3 KB
/
notification.php
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
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
<?php
include 'core/init.php';
$user_id = $_SESSION['user_id'];
$user = User::getData($user_id);
$who_users = Follow::whoToFollow($user_id);
// update notification count
User::updateNotifications($user_id);
$notify_count = User::CountNotification($user_id);
$notofication = User::notification($user_id);
// var_dump($notofication);
// die();
if (User::checkLogIn() === false)
header('location: index.php');
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Notifications | Chirrup</title>
<link rel="stylesheet" href="assets/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/all.min.css">
<link rel="stylesheet" href="assets/css/profile_style.css?v=<?php echo time(); ?>">
<link rel="shortcut icon" type="image/png" href="assets/images/twitter.svg">
</head>
<body>
<script src="assets/js/jquery-3.5.1.min.js"></script>
<div id="mine">
<div class="wrapper-left">
<div class="sidebar-left">
<div class="grid-sidebar" style="margin-top: 12px">
<div class="icon-sidebar-align">
<img src="<?php echo BASE_URL . "/assets/images/logo.png"; ?>" alt="" height="130px" width="230px" />
</div>
</div>
<a href="home.php">
<div class="grid-sidebar bg-active" style="margin-top: 12px">
<div class="icon-sidebar-align">
<img src="<?php echo BASE_URL . "/includes/icons/tweethome.png"; ?>" alt="" height="26.25px" width="26.25px" />
</div>
<div class="wrapper-left-elements">
<a href="home.php" style="margin-top: 4px;"><strong>Home</strong></a>
</div>
</div>
</a>
<a href="notification.php">
<div class="grid-sidebar">
<div class="icon-sidebar-align position-relative">
<?php if ($notify_count > 0) { ?>
<i class="notify-count"><?php echo $notify_count; ?></i>
<?php } ?>
<img
src="<?php echo BASE_URL . "/includes/icons/tweetnotif.png"; ?>"
alt=""
height="26.25px"
width="26.25px"
/>
</div>
<div class="wrapper-left-elements">
<a class="wrapper-left-active" href="notification.php" style="margin-top: 4px"><strong>Notifications</strong></a>
</div>
</div>
</a>
<a href="<?php echo BASE_URL . $user->username; ?>">
<div class="grid-sidebar">
<div class="icon-sidebar-align">
<img src="<?php echo BASE_URL . "/includes/icons/tweetprof.png"; ?>" alt="" height="26.25px" width="26.25px" />
</div>
<div class="wrapper-left-elements">
<!-- <a href="/twitter/<?php echo $user->username; ?>" style="margin-top: 4px"><strong>Profile</strong></a> -->
<a href="<?php echo BASE_URL . $user->username; ?>" style="margin-top: 4px"><strong>Profile</strong></a>
</div>
</div>
</a>
<a href="<?php echo BASE_URL . "account.php"; ?>">
<div class="grid-sidebar ">
<div class="icon-sidebar-align">
<img src="<?php echo BASE_URL . "/includes/icons/tweetsetting.png"; ?>" alt="" height="26.25px" width="26.25px" />
</div>
<div class="wrapper-left-elements">
<a href="<?php echo BASE_URL . "account.php"; ?>" style="margin-top: 4px"><strong>Settings</strong></a>
</div>
</div>
</a>
<a href="includes/logout.php">
<div class="grid-sidebar">
<div class="icon-sidebar-align">
<i style="font-size: 26px;" class="fas fa-sign-out-alt"></i>
</div>
<div class="wrapper-left-elements">
<a href="includes/logout.php" style="margin-top: 4px"><strong style="color:red;">Logout</strong></a>
</div>
</div>
</a>
<button class="button-twittear">
<strong>Post</strong>
</button>
<div class="box-user">
<div class="grid-user">
<div>
<img
src="assets/images/users/<?php echo $user->img ?>"
alt="user"
class="img-user"
/>
</div>
<div>
<p class="name"><strong><?php if($user->name !== null) {
echo $user->name; } ?></strong></p>
<p class="username">@<?php echo $user->username; ?></p>
</div>
<div class="mt-arrow">
<img
src="https://i.ibb.co/mRLLwdW/arrow-down.png"
alt=""
height="18.75px"
width="18.75px"
/>
</div>
</div>
</div>
</div>
</div>
<div class="grid-posts">
<div>
<div class="grid-toolbar-center">
<div class="center-input-search">
</div>
</div>
<div class="box-fixed" id="box-fixed"></div>
<div class="box-home feed">
<div class="container">
<div style="border-bottom: 1px solid #F5F8FA;" class="row position-fixed box-name">
<div class="col-xs-2">
<a href="javascript: history.go(-1);"> <i style="font-size:20px;" class="fas fa-arrow-left arrow-style"></i> </a>
</div>
<div class="col-xs-10">
<p style="margin-top: 12px;" class="home-name"> Notifications</p>
</div>
</div>
</div>
<div class="container mt-5">
<?php foreach($notofication as $notify) {
$user = User::getData($notify->notify_from);
$timeAgo = Tweet::getTimeAgo($notify->time);
?>
<?php if ($notify->type == 'like') {
$icon = "<i style='color: red;font-size:30px;' class='fa-heart fas ml-2'></i>";
$msg = "Liked Your Tweet";
} else if ($notify->type == 'retweet') {
$icon = "<i style='font-size:30px;color: rgb(22, 207, 22);' class='fas fa-retweet ml-2'></i>";
$msg = "Retweeted Your Tweet";
} else if ($notify->type == 'qoute') {
$icon = "<i style='font-size:30px;color: rgb(22, 207, 22);' class='fas fa-retweet ml-2'></i>";
$msg = "Quoted Your Tweet";
} else if ($notify->type == 'comment') {
$icon = "<i style='font-size:30px;' class='far fa-comment ml-2'></i>";
$msg = "Comment to your Tweet";
} else if ($notify->type == 'reply') {
$icon = "<i style='font-size:30px;' class='far fa-comment ml-2'></i>";
$msg = "Reply to your Comment";
} else if ($notify->type == 'follow') {
$icon = "<i style='font-size:30px;' class='fas fa-user ml-2'></i>";
$msg = "Followed You";
} else if ($notify->type == 'mention') {
$icon = "<i style='font-size:30px;' class='fas fa-user ml-2'></i>";
$msg = "Mention you in Tweet";
}?>
<div style="position: relative; border-bottom:4px solid #F5F8FA;" class="box-tweet py-3 ">
<a href="
<?php if ($notify->type == 'follow'){
echo $user->username;
} else { ?>
status/<?php echo $notify->target; ?>
<?php } ?> ">
<span style="position:absolute; width:100%; height:100%; top:0;left: 0; z-index: 1;"></span>
</a>
<div class="grid-tweet">
<div class="icon mt-2">
<?php echo $icon; ?>
</div>
<div class="notify-user">
<p>
<a style="position: relative; z-index:1000;" href="<?php echo $user->username; ?>">
<img class="img-user" src="assets/images/users/<?php echo $user->img ?>" alt="">
</a>
</p>
<p> <a style="font-weight: 700;
font-size:18px;
position: relative; z-index:1000;" href="<?php echo $user->username; ?>">
<?php echo $user->name; ?> </a> <?php echo $msg; ?>
<span style="font-weight: 500;" class="ml-3">
<?php echo $timeAgo; ?>
</span>
</p>
</div>
</div>
</div>
<?php } ?>
</div>
</div>
</div>
<div class="wrapper-right">
<div style="width: 90%;" class="container">
<div class="input-group py-2 m-auto pr-5 position-relative">
<i id="icon-search" class="fas fa-search tryy"></i>
<input type="text" class="form-control search-input" placeholder="Search Chirrup">
<div class="search-result">
</div>
</div>
</div>
<div class="box-share">
<p class="txt-share"><strong>Who to follow</strong></p>
<?php
foreach($who_users as $user) {
// $u = User::getData($user->user_id);
$user_follow = Follow::isUserFollow($user_id , $user->id) ;
?>
<div class="grid-share">
<a style="position: relative; z-index:5; color:black" href="<?php echo $user->username; ?>">
<img
src="assets/images/users/<?php echo $user->img; ?>"
alt=""
class="img-share"
/>
</a>
<div>
<p>
<a style="position: relative; z-index:5; color:black" href="<?php echo $user->username; ?>">
<strong><?php echo $user->name; ?></strong>
</a>
</p>
<p class="username">@<?php echo $user->username; ?>
<?php if (Follow::FollowsYou($user->id , $user_id)) { ?>
<span class="ml-1 follows-you">Follows You</span></p>
<?php } ?></p></p>
</div>
<div>
<button class="follow-btn follow-btn-m
<?= $user_follow ? 'following' : 'follow' ?>"
data-follow="<?php echo $user->id; ?>"
data-user="<?php echo $user_id; ?>"
data-profile="<?php echo $profileData->id; ?>"
style="font-weight: 700;">
<?php if($user_follow) { ?>
Following
<?php } else { ?>
Follow
<?php } ?>
</button>
</div>
</div>
<?php }?>
</div>
</div>
</div> </div>
<script src="assets/js/search.js"></script>
<script src="assets/js/photo.js"></script>
<script src="assets/js/follow.js?v=<?php echo time(); ?>"></script>
<script src="assets/js/users.js?v=<?php echo time(); ?>"></script>
<script type="text/javascript" src="assets/js/hashtag.js"></script>
<script type="text/javascript" src="assets/js/like.js"></script>
<script type="text/javascript" src="assets/js/comment.js?v=<?php echo time(); ?>"></script>
<script type="text/javascript" src="assets/js/retweet.js?v=<?php echo time(); ?>"></script>
<script src="https://kit.fontawesome.com/38e12cc51b.js" crossorigin="anonymous"></script>
<!-- <script src="assets/js/jquery-3.4.1.slim.min.js"></script> -->
<script src="assets/js/jquery-3.5.1.min.js"></script>
<script src="assets/js/popper.min.js"></script>
<script src="assets/js/bootstrap.min.js"></script>
</body>
<style>
.container {
padding-left: 55px;
background-color: #525E75;
}
</style>
</html>