[hub] add review timeline element

This commit is contained in:
Prateeksha Singh
2018-08-30 16:08:52 +05:30
parent dc36d52ef9
commit 997bfa4916
3 changed files with 112 additions and 11 deletions

View File

@@ -1,16 +1,52 @@
<template>
<div>
<div ref="review-area" class="timeline-head"></div>
<div class="timeline-items"></div>
<div class="timeline-items">
<review-timeline-item v-for="review in reviews"
:key="review.user"
:username="review.username"
:avatar="review.user_image"
:comment_when="when(review.modified)"
:rating="review.rating"
:subject="review.subject"
:content="review.content"
>
</review-timeline-item>
</div>
</div>
</template>
<script>
import ReviewTimelineItem from '../components/ReviewTimelineItem.vue';
export default {
props: ['hub_item_name', 'reviews'],
props: ['hub_item_name'],
data() {
return {
reviews: []
}
},
components: {
ReviewTimelineItem
},
created() {
this.get_item_reviews();
},
mounted() {
this.make_input();
},
methods: {
when(datetime) {
return comment_when(datetime);
},
get_item_reviews() {
hub.call('get_item_reviews', { hub_item_name: this.hub_item_name })
.then(reviews => {
this.reviews = reviews;
})
.catch(() => {});
},
make_input() {
this.review_area = new frappe.ui.ReviewArea({
parent: this.$refs['review-area'],
@@ -31,8 +67,8 @@ export default {
.then(this.push_review.bind(this));
},
push_review(){
//
push_review(review){
this.reviews.unshift(review);
}
}
}