Skip to content

Commit 518ef36

Browse files
committedSep 1, 2020
add freinds feature and display on home page
1 parent f8ffd9d commit 518ef36

10 files changed

+258
-13
lines changed
 

‎assets/js/toggle_freindship.js

+70
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
console.log('freindship script loaded');
2+
3+
class ToggleFreindship{
4+
5+
6+
constructor(toggleElement){
7+
this.toggler=toggleElement;
8+
this.toggleFreindship();
9+
}
10+
11+
toggleFreindship(){
12+
13+
14+
$(this.toggler).click(function(e){
15+
16+
17+
e.preventDefault();
18+
let self=this;
19+
20+
$.ajax({
21+
type:'POST',
22+
url:$(self).attr('href')
23+
})
24+
.done(function(data){
25+
26+
console.log(data);
27+
28+
if(data.data.added==true){
29+
30+
$(self).html('ADD');
31+
32+
new Noty({
33+
theme:'relax',
34+
text: 'Removed Freind',
35+
type:'success',
36+
layout:'topRight',
37+
timeout:1500
38+
39+
}).show();
40+
41+
42+
}else{
43+
44+
$(self).html('REMOVE');
45+
new Noty({
46+
theme:'relax',
47+
text: 'Added Freind',
48+
type:'success',
49+
layout:'topRight',
50+
timeout:1500
51+
52+
}).show();
53+
}
54+
55+
})
56+
.fail(function(errData){
57+
58+
console.log('error in completing the request');
59+
60+
});
61+
62+
});
63+
64+
65+
66+
}
67+
68+
69+
70+
}

‎controllers/freindship_controller.js

+59
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
const Freindship=require('../models/freindship');
2+
const User=require('../models/user');
3+
const Friendship = require('../models/freindship');
4+
5+
module.exports.toggleFriend=async function(req,res){
6+
7+
try{
8+
9+
let added = false;
10+
11+
let from=await User.findById(req.user._id);
12+
let to=await User.findById(req.query.id);
13+
14+
let exsitingFreindship=await Freindship.findOne({
15+
16+
from_user:from._id,
17+
to_user:to._id
18+
19+
});
20+
21+
if(exsitingFreindship){
22+
23+
from.freindship.pull(exsitingFreindship._id);
24+
to.freindship.pull(exsitingFreindship._id);
25+
from.save();
26+
to.save();
27+
exsitingFreindship.remove();
28+
added=true;
29+
30+
}else{
31+
32+
let newFreindship = await Friendship.create({
33+
from_user: from._id,
34+
to_user:to._id
35+
})
36+
37+
from.freindship.push(newFreindship._id);
38+
to.freindship.push(newFreindship._id);
39+
from.save();
40+
to.save();
41+
42+
}
43+
44+
return res.json(200, {
45+
message: "Request successful!",
46+
data: {
47+
added: added
48+
}
49+
})
50+
51+
52+
}catch(err){
53+
54+
console.log(err);
55+
56+
57+
}
58+
59+
}

‎controllers/home_controller.js

+23-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
const Posts=require('../models/posts');
22
const Post = require('../models/posts');
33
const User=require('../models/user');
4+
const Friendship = require('../models/freindship');
5+
46

57

68

@@ -24,17 +26,34 @@ module.exports.home =async function(req, res){
2426
}
2527
}).populate('likes');
2628

27-
28-
let users=await User.find({});
29+
// console.log(req.user);
30+
31+
const users=await User.find({});
32+
33+
if(req.user){
34+
35+
36+
let freindships = await Friendship.find({from_user:req.user._id}).populate('to_user');
2937

3038

3139
return res.render('home',{
3240

3341
all_users:users,
3442
title:"Home",
35-
posts:posts
36-
43+
posts:posts,
44+
freindships:freindships
3745
});
46+
47+
}else{
48+
49+
return res.render('home',{
50+
51+
all_users:users,
52+
title:"Home",
53+
posts:posts,
54+
});
55+
56+
}
3857

3958
}catch(err){
4059
console.log('Error',err);

‎controllers/users_controller.js

+26-5
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,38 @@ const User=require('../models/user');
22
const fs=require('fs');
33
const path=require('path');
44
const Noty=require('noty');
5+
const Friendship = require('../models/freindship');
56

67

78

89
module.exports.profile = function(req, res){
9-
User.findById(req.params.id,function(err,user){
10-
return res.render('user_profile', {
11-
title: 'User Profile',
12-
profile_user:user
13-
})
10+
11+
12+
13+
User.findById(req.params.id,function(err,user){
14+
15+
16+
17+
18+
console.log(user);
19+
20+
21+
return res.render('user_profile', {
22+
title: 'User Profile',
23+
profile_user:user,
24+
})
1425

1526
});
27+
28+
// let user=User.findById(req.params.id);
29+
30+
// console.log(user);
31+
32+
// return res.render('user_profile',{
33+
// title:'User Profile',
34+
// profile_user:user
35+
// });
36+
1637
};
1738

1839

‎models/freindship.js

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
const mongoose=require('mongoose');
2+
3+
4+
const friendshipSchema=new mongoose.Schema({
5+
6+
// user who sent the request
7+
from_user:{
8+
9+
type:mongoose.Schema.Types.ObjectId,
10+
ref:'User'
11+
},
12+
// the user who acccepted the request,the naming is just to understand,otherwise the user's wont see a difference
13+
to_user:{
14+
15+
type:mongoose.Schema.Types.ObjectId,
16+
ref:'User'
17+
}
18+
19+
20+
},{
21+
22+
timestamps:true
23+
24+
});
25+
26+
const Friendship=mongoose.model('Friendship',friendshipSchema);
27+
module.exports=Friendship;

‎models/user.js

+10-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,16 @@ const userSchema=new mongoose.Schema({
2424
},
2525
avatar:{
2626
type:String
27-
}
27+
},
28+
freindship: [
29+
30+
{
31+
type:mongoose.Schema.Types.ObjectId,
32+
ref:'Freindship'
33+
}
34+
35+
]
36+
2837

2938
}, {
3039

‎routes/freindship.js

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
const express = require('express');
2+
3+
const router = express.Router();
4+
5+
const freindshipController=require('../controllers/freindship_controller');
6+
7+
8+
router.post('/toggle',freindshipController.toggleFriend);
9+
10+
module.exports=router;

‎routes/index.js

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ router.use('/posts',require('./posts'));
1212
router.use('/comments',require('./comments'))
1313
router.use('/reset-password',require('./reset_password'));
1414
router.use('/likes',require('./likes'));
15+
router.use('/freindship',require('./freindship'));
1516

1617
router.use('/api',require('./api'));
1718

‎views/home.ejs

+15-2
Original file line numberDiff line numberDiff line change
@@ -35,15 +35,28 @@
3535

3636
<section id="user-freinds">
3737

38-
<h4>Freinds</h4>
38+
<h4>ALL-USERS</h4>
3939
<% for(u of all_users){%>
4040
4141
<p>
4242
<a href="/users/profile/<%= u.id %>"><%= u.name %></a>
4343
</p>
44-
4544
4645
<%}%>
46+
47+
<h4>FREINDS</h4>
48+
49+
<% if(locals.user) {%>
50+
51+
<% for(u of freindships){%>
52+
53+
<p>
54+
<a href="/users/profile/<%= u.to_user._id %>"><%= u.to_user.name %></a>
55+
</p>
56+
57+
<%}%>
58+
59+
<%}%>
4760

4861

4962
</section>

‎views/user_profile.ejs

+17-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,20 @@
2222
<p><%= profile_user.name %></p>
2323
<p><%= profile_user.email %></p>
2424
25-
<%}%>
25+
<%}%>
26+
27+
28+
<a href="/freindship/toggle/?id=<%= profile_user.id %>" class="toggle-freindship-button">ADD/REMOVE</a>
29+
30+
31+
32+
<script src="/js/toggle_freindship.js"></script>
33+
<script>
34+
35+
$('.toggle-freindship-button').each(function(){
36+
let self = this;
37+
let toggleFreindship = new ToggleFreindship(self);
38+
});
39+
40+
</script>
41+

0 commit comments

Comments
 (0)
Please sign in to comment.