Compare commits
3 Commits
38c46ec73b
...
b0c54c69c3
Author | SHA1 | Date | |
---|---|---|---|
b0c54c69c3 | |||
dbcf2e24bf | |||
c1027e6d48 |
|
@ -254,14 +254,19 @@ export default {
|
||||||
return this.item.refs[this.item['like-of']]
|
return this.item.refs[this.item['like-of']]
|
||||||
} else if (this.isRepost) {
|
} else if (this.isRepost) {
|
||||||
return this.item.refs[this.item['repost-of']]
|
return this.item.refs[this.item['repost-of']]
|
||||||
|
} else if (this.isBookmark) {
|
||||||
|
return this.item.refs[this.item['bookmark-of']]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
isRef() {
|
isRef() {
|
||||||
return this.isLike || this.isRepost
|
return this.isLike || this.isRepost || this.isBookmark
|
||||||
},
|
},
|
||||||
isLike() {
|
isLike() {
|
||||||
return this.hasRef('like-of')
|
return this.hasRef('like-of')
|
||||||
},
|
},
|
||||||
|
isBookmark() {
|
||||||
|
return this.hasRef('bookmark-of')
|
||||||
|
},
|
||||||
isRepost() {
|
isRepost() {
|
||||||
return this.hasRef('repost-of')
|
return this.hasRef('repost-of')
|
||||||
},
|
},
|
||||||
|
@ -272,6 +277,9 @@ export default {
|
||||||
if (this.isRepost) {
|
if (this.isRepost) {
|
||||||
return 'reposted'
|
return 'reposted'
|
||||||
}
|
}
|
||||||
|
if (this.isBookmark) {
|
||||||
|
return 'bookmarked'
|
||||||
|
}
|
||||||
return ''
|
return ''
|
||||||
},
|
},
|
||||||
main_content() {
|
main_content() {
|
||||||
|
@ -370,6 +378,7 @@ export default {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
this.hasHiddenContent = el.scrollHeight > el.clientHeight
|
this.hasHiddenContent = el.scrollHeight > el.clientHeight
|
||||||
|
this.hiddenContentVisible = false
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -378,7 +387,7 @@ export default {
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
.entry.unread {
|
.entry.unread {
|
||||||
border-color: #555;
|
outline: 2px solid #5757e8;
|
||||||
}
|
}
|
||||||
|
|
||||||
.media .entry {
|
.media .entry {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user