mirror of
https://github.com/ClaytonWWilson/CS307-Team24.git
synced 2025-12-17 02:38:47 +00:00
added get request userline function
This commit is contained in:
parent
7969d3b10b
commit
754c2f2d75
@ -26,3 +26,20 @@ exports.putPost = (req, res) => {
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
|
exports.getallPostsforUser = (req, res) => {
|
||||||
|
|
||||||
|
admin.firestore().collection('posts').where('userHandle', '==', 'user' ).get()
|
||||||
|
.then((data) => {
|
||||||
|
let posts = [];
|
||||||
|
data.forEach(function(doc) {
|
||||||
|
posts.push(doc.data());
|
||||||
|
});
|
||||||
|
return res.status(200).json(posts);
|
||||||
|
})
|
||||||
|
.catch((err) => {
|
||||||
|
console.error(err);
|
||||||
|
return res.status(500).json({error: 'Failed to fetch all posts written by specific user.'})
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@ -24,8 +24,9 @@ app.post('/updateProfileInfo', updateProfileInfo);
|
|||||||
/*------------------------------------------------------------------*
|
/*------------------------------------------------------------------*
|
||||||
* handlers/post.js *
|
* handlers/post.js *
|
||||||
*------------------------------------------------------------------*/
|
*------------------------------------------------------------------*/
|
||||||
const {putPost} = require('./handlers/post');
|
const {putPost, getallPostsforUser} = require('./handlers/post');
|
||||||
|
|
||||||
|
app.get('/getallPostsforUser', getallPostsforUser);
|
||||||
|
|
||||||
// Adds one post to the database
|
// Adds one post to the database
|
||||||
app.post('/putPost', fbAuth, putPost);
|
app.post('/putPost', fbAuth, putPost);
|
||||||
|
|||||||
@ -9,16 +9,29 @@ class Userline extends Component {
|
|||||||
{
|
{
|
||||||
super(props);
|
super(props);
|
||||||
this.state = {
|
this.state = {
|
||||||
|
microBlogs : []
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
render() {
|
componentDidMount() {
|
||||||
|
|
||||||
|
axios.get('http://localhost:5001/twistter-e4649/us-central1/api/getallPostsforUser')
|
||||||
|
.then(res => {
|
||||||
|
const post = res.data;
|
||||||
|
this.setState({microBlogs : post})
|
||||||
|
|
||||||
|
})
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
render() {
|
||||||
return (
|
return (
|
||||||
<p>Hi</p>
|
<ul>
|
||||||
|
{ this.state.microBlogs.map(microBlog => <p>{microBlog.body}</p>)}
|
||||||
|
</ul>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
export default Userline;
|
||||||
export default Userline;
|
|
||||||
|
|||||||
@ -37,10 +37,11 @@ class Writing_Microblogs extends Component {
|
|||||||
|
|
||||||
},
|
},
|
||||||
{ headers: { 'Content-Type': 'application/json'} }
|
{ headers: { 'Content-Type': 'application/json'} }
|
||||||
|
|
||||||
)
|
)
|
||||||
console.log(response.data);
|
console.log(response.data);
|
||||||
|
|
||||||
event.preventDefault();
|
event.preventDefault();
|
||||||
|
this.setState({value: '', title: '',characterCount: 10})
|
||||||
}
|
}
|
||||||
|
|
||||||
handleChangeforPost(event) {
|
handleChangeforPost(event) {
|
||||||
@ -51,6 +52,7 @@ class Writing_Microblogs extends Component {
|
|||||||
const charCount = event.target.value.length
|
const charCount = event.target.value.length
|
||||||
const charRemaining = 10 - charCount
|
const charRemaining = 10 - charCount
|
||||||
this.setState({characterCount: charRemaining })
|
this.setState({characterCount: charRemaining })
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user