2016-10-28 09:08:03 -07:00
|
|
|
import Attachment from '../attachment/attachment.vue'
|
2016-10-30 08:12:35 -07:00
|
|
|
import FavoriteButton from '../favorite_button/favorite_button.vue'
|
2016-11-13 07:42:56 -08:00
|
|
|
import RetweetButton from '../retweet_button/retweet_button.vue'
|
2016-12-07 12:50:46 -08:00
|
|
|
import DeleteButton from '../delete_button/delete_button.vue'
|
2016-11-03 08:59:27 -07:00
|
|
|
import PostStatusForm from '../post_status_form/post_status_form.vue'
|
2019-03-05 11:01:49 -08:00
|
|
|
import UserCard from '../user_card/user_card.vue'
|
2019-02-02 11:11:36 -08:00
|
|
|
import UserAvatar from '../user_avatar/user_avatar.vue'
|
2019-01-26 07:45:03 -08:00
|
|
|
import Gallery from '../gallery/gallery.vue'
|
2019-01-27 05:47:30 -08:00
|
|
|
import LinkPreview from '../link-preview/link-preview.vue'
|
2019-04-01 19:29:45 -07:00
|
|
|
import AvatarList from '../avatar_list/avatar_list.vue'
|
2018-12-13 08:57:11 -08:00
|
|
|
import generateProfileLink from 'src/services/user_profile_link_generator/user_profile_link_generator'
|
2019-01-26 07:45:03 -08:00
|
|
|
import fileType from 'src/services/file_type/file_type.service'
|
2019-01-30 10:49:24 -08:00
|
|
|
import { highlightClass, highlightStyle } from '../../services/user_highlighter/user_highlighter.js'
|
2019-02-07 13:54:49 -08:00
|
|
|
import { mentionMatchesUrl, extractTagFromUrl } from 'src/services/matcher/matcher.service.js'
|
2019-04-05 11:31:54 -07:00
|
|
|
import { filter, find, unescape, uniqBy } from 'lodash'
|
2016-10-28 09:08:03 -07:00
|
|
|
|
2016-10-28 06:19:42 -07:00
|
|
|
const Status = {
|
2018-04-09 09:43:31 -07:00
|
|
|
name: 'Status',
|
2017-02-04 04:53:28 -08:00
|
|
|
props: [
|
|
|
|
'statusoid',
|
2019-05-06 18:36:55 -07:00
|
|
|
'expandable',
|
2017-03-09 00:19:40 -08:00
|
|
|
'inConversation',
|
2017-04-12 08:25:19 -07:00
|
|
|
'focused',
|
2017-05-31 01:47:18 -07:00
|
|
|
'highlight',
|
2017-06-04 13:58:15 -07:00
|
|
|
'compact',
|
2018-04-09 09:43:31 -07:00
|
|
|
'replies',
|
2019-03-02 08:35:38 -08:00
|
|
|
'isPreview',
|
2018-04-09 09:43:31 -07:00
|
|
|
'noHeading',
|
2019-03-11 13:24:37 -07:00
|
|
|
'inlineExpanded'
|
2017-02-04 04:53:28 -08:00
|
|
|
],
|
2018-08-19 18:59:06 -07:00
|
|
|
data () {
|
|
|
|
return {
|
2019-03-11 13:24:37 -07:00
|
|
|
replying: false,
|
2018-08-19 18:59:06 -07:00
|
|
|
unmuted: false,
|
|
|
|
userExpanded: false,
|
|
|
|
preview: null,
|
|
|
|
showPreview: false,
|
2019-01-28 11:59:17 -08:00
|
|
|
showingTall: this.inConversation && this.focused,
|
2019-02-04 06:28:14 -08:00
|
|
|
showingLongSubject: false,
|
2018-10-21 10:04:23 -07:00
|
|
|
expandingSubject: typeof this.$store.state.config.collapseMessageWithSubject === 'undefined'
|
|
|
|
? !this.$store.state.instance.collapseMessageWithSubject
|
2018-11-30 05:39:07 -08:00
|
|
|
: !this.$store.state.config.collapseMessageWithSubject,
|
2019-02-27 06:38:58 -08:00
|
|
|
betterShadow: this.$store.state.interface.browserSupport.cssFilter
|
2018-08-19 18:59:06 -07:00
|
|
|
}
|
|
|
|
},
|
2016-10-28 09:08:03 -07:00
|
|
|
computed: {
|
2018-10-21 10:04:23 -07:00
|
|
|
localCollapseSubjectDefault () {
|
|
|
|
return typeof this.$store.state.config.collapseMessageWithSubject === 'undefined'
|
|
|
|
? this.$store.state.instance.collapseMessageWithSubject
|
|
|
|
: this.$store.state.config.collapseMessageWithSubject
|
|
|
|
},
|
2017-04-09 06:53:23 -07:00
|
|
|
muteWords () {
|
|
|
|
return this.$store.state.config.muteWords
|
|
|
|
},
|
2018-06-18 01:36:58 -07:00
|
|
|
repeaterClass () {
|
|
|
|
const user = this.statusoid.user
|
2018-06-19 06:17:50 -07:00
|
|
|
return highlightClass(user)
|
2018-06-18 01:36:58 -07:00
|
|
|
},
|
2018-04-25 07:35:25 -07:00
|
|
|
userClass () {
|
2018-06-18 01:36:58 -07:00
|
|
|
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
|
2018-06-19 06:17:50 -07:00
|
|
|
return highlightClass(user)
|
2018-06-18 01:36:58 -07:00
|
|
|
},
|
2018-12-04 10:49:00 -08:00
|
|
|
deleted () {
|
2018-12-04 10:45:08 -08:00
|
|
|
return this.statusoid.deleted
|
|
|
|
},
|
2018-06-18 01:36:58 -07:00
|
|
|
repeaterStyle () {
|
|
|
|
const user = this.statusoid.user
|
2018-06-19 06:17:50 -07:00
|
|
|
const highlight = this.$store.state.config.highlight
|
2018-08-04 19:18:04 -07:00
|
|
|
return highlightStyle(highlight[user.screen_name])
|
2018-06-18 01:36:58 -07:00
|
|
|
},
|
|
|
|
userStyle () {
|
2018-08-04 19:41:37 -07:00
|
|
|
if (this.noHeading) return
|
2018-06-18 01:36:58 -07:00
|
|
|
const user = this.retweet ? (this.statusoid.retweeted_status.user) : this.statusoid.user
|
2018-06-19 06:17:50 -07:00
|
|
|
const highlight = this.$store.state.config.highlight
|
2018-08-04 19:18:04 -07:00
|
|
|
return highlightStyle(highlight[user.screen_name])
|
2018-04-25 07:35:25 -07:00
|
|
|
},
|
2017-03-04 12:25:59 -08:00
|
|
|
hideAttachments () {
|
2017-03-05 05:34:14 -08:00
|
|
|
return (this.$store.state.config.hideAttachments && !this.inConversation) ||
|
|
|
|
(this.$store.state.config.hideAttachmentsInConv && this.inConversation)
|
2017-03-04 12:25:59 -08:00
|
|
|
},
|
2019-01-22 12:57:51 -08:00
|
|
|
userProfileLink () {
|
|
|
|
return this.generateUserProfileLink(this.status.user.id, this.status.user.screen_name)
|
|
|
|
},
|
|
|
|
replyProfileLink () {
|
|
|
|
if (this.isReply) {
|
2019-01-30 06:57:19 -08:00
|
|
|
return this.generateUserProfileLink(this.status.in_reply_to_user_id, this.replyToName)
|
2019-01-22 12:57:51 -08:00
|
|
|
}
|
|
|
|
},
|
2016-10-28 09:08:03 -07:00
|
|
|
retweet () { return !!this.statusoid.retweeted_status },
|
2019-02-01 14:40:06 -08:00
|
|
|
retweeter () { return this.statusoid.user.name || this.statusoid.user.screen_name },
|
2018-08-09 02:52:34 -07:00
|
|
|
retweeterHtml () { return this.statusoid.user.name_html },
|
2019-02-03 11:08:04 -08:00
|
|
|
retweeterProfileLink () { return this.generateUserProfileLink(this.statusoid.user.id, this.statusoid.user.screen_name) },
|
2016-10-28 09:08:03 -07:00
|
|
|
status () {
|
|
|
|
if (this.retweet) {
|
|
|
|
return this.statusoid.retweeted_status
|
|
|
|
} else {
|
|
|
|
return this.statusoid
|
|
|
|
}
|
2016-11-06 11:45:26 -08:00
|
|
|
},
|
2019-04-09 08:45:33 -07:00
|
|
|
statusFromGlobalRepository () {
|
|
|
|
// NOTE: Consider to replace status with statusFromGlobalRepository
|
|
|
|
return this.$store.state.statuses.allStatusesObject[this.status.id]
|
|
|
|
},
|
2016-11-06 11:45:26 -08:00
|
|
|
loggedIn () {
|
|
|
|
return !!this.$store.state.users.currentUser
|
2017-02-13 15:01:50 -08:00
|
|
|
},
|
2017-04-09 06:53:23 -07:00
|
|
|
muteWordHits () {
|
|
|
|
const statusText = this.status.text.toLowerCase()
|
|
|
|
const hits = filter(this.muteWords, (muteWord) => {
|
|
|
|
return statusText.includes(muteWord.toLowerCase())
|
|
|
|
})
|
|
|
|
|
|
|
|
return hits
|
|
|
|
},
|
|
|
|
muted () { return !this.unmuted && (this.status.user.muted || this.muteWordHits.length > 0) },
|
2019-02-06 10:18:13 -08:00
|
|
|
hideFilteredStatuses () {
|
|
|
|
return typeof this.$store.state.config.hideFilteredStatuses === 'undefined'
|
|
|
|
? this.$store.state.instance.hideFilteredStatuses
|
|
|
|
: this.$store.state.config.hideFilteredStatuses
|
|
|
|
},
|
2019-02-08 04:25:56 -08:00
|
|
|
hideStatus () {
|
2019-02-08 05:17:20 -08:00
|
|
|
return (this.hideReply || this.deleted) || (this.muted && this.hideFilteredStatuses)
|
2019-02-08 04:25:56 -08:00
|
|
|
},
|
2017-04-12 08:25:19 -07:00
|
|
|
isFocused () {
|
|
|
|
// retweet or root of an expanded conversation
|
2017-04-12 09:07:55 -07:00
|
|
|
if (this.focused) {
|
2017-04-12 08:25:19 -07:00
|
|
|
return true
|
2017-04-12 09:07:55 -07:00
|
|
|
} else if (!this.inConversation) {
|
2017-04-12 08:25:19 -07:00
|
|
|
return false
|
2017-04-12 09:07:55 -07:00
|
|
|
}
|
|
|
|
// use conversation highlight only when in conversation
|
|
|
|
return this.status.id === this.highlight
|
2018-04-09 09:43:31 -07:00
|
|
|
},
|
|
|
|
// This is a bit hacky, but we want to approximate post height before rendering
|
|
|
|
// so we count newlines (masto uses <p> for paragraphs, GS uses <br> between them)
|
|
|
|
// as well as approximate line count by counting characters and approximating ~80
|
|
|
|
// per line.
|
|
|
|
//
|
|
|
|
// Using max-height + overflow: auto for status components resulted in false positives
|
|
|
|
// very often with japanese characters, and it was very annoying.
|
2018-08-19 18:59:06 -07:00
|
|
|
tallStatus () {
|
|
|
|
const lengthScore = this.status.statusnet_html.split(/<p|<br/).length + this.status.text.length / 80
|
|
|
|
return lengthScore > 20
|
|
|
|
},
|
2019-02-04 06:28:14 -08:00
|
|
|
longSubject () {
|
|
|
|
return this.status.summary.length > 900
|
2019-02-03 20:47:26 -08:00
|
|
|
},
|
2018-08-24 12:04:26 -07:00
|
|
|
isReply () {
|
2019-01-27 01:31:23 -08:00
|
|
|
return !!(this.status.in_reply_to_status_id && this.status.in_reply_to_user_id)
|
2018-08-24 12:04:26 -07:00
|
|
|
},
|
2019-01-22 12:57:51 -08:00
|
|
|
replyToName () {
|
2019-03-08 15:34:15 -08:00
|
|
|
if (this.status.in_reply_to_screen_name) {
|
2019-01-24 09:27:20 -08:00
|
|
|
return this.status.in_reply_to_screen_name
|
2019-03-08 15:34:15 -08:00
|
|
|
} else {
|
2019-03-08 15:36:35 -08:00
|
|
|
const user = this.$store.getters.findUser(this.status.in_reply_to_user_id)
|
|
|
|
return user && user.screen_name
|
2019-01-22 12:57:51 -08:00
|
|
|
}
|
|
|
|
},
|
2018-08-24 12:04:26 -07:00
|
|
|
hideReply () {
|
|
|
|
if (this.$store.state.config.replyVisibility === 'all') {
|
|
|
|
return false
|
|
|
|
}
|
2019-05-06 13:17:29 -07:00
|
|
|
if (this.inConversation || !this.isReply) {
|
2018-08-24 12:04:26 -07:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (this.status.user.id === this.$store.state.users.currentUser.id) {
|
|
|
|
return false
|
|
|
|
}
|
2019-01-17 12:44:31 -08:00
|
|
|
if (this.status.type === 'retweet') {
|
2018-08-24 12:04:26 -07:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
var checkFollowing = this.$store.state.config.replyVisibility === 'following'
|
|
|
|
for (var i = 0; i < this.status.attentions.length; ++i) {
|
|
|
|
if (this.status.user.id === this.status.attentions[i].id) {
|
|
|
|
continue
|
|
|
|
}
|
2019-05-06 13:41:12 -07:00
|
|
|
if (checkFollowing && this.$store.getters.findUser(this.status.attentions[i].id).following) {
|
2018-08-24 12:04:26 -07:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
if (this.status.attentions[i].id === this.$store.state.users.currentUser.id) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return this.status.attentions.length > 0
|
|
|
|
},
|
2018-08-19 19:41:40 -07:00
|
|
|
hideSubjectStatus () {
|
2018-10-21 10:04:23 -07:00
|
|
|
if (this.tallStatus && !this.localCollapseSubjectDefault) {
|
2018-08-19 19:08:39 -07:00
|
|
|
return false
|
|
|
|
}
|
2018-08-19 19:41:40 -07:00
|
|
|
return !this.expandingSubject && this.status.summary
|
2018-08-19 18:59:06 -07:00
|
|
|
},
|
2018-04-09 09:43:31 -07:00
|
|
|
hideTallStatus () {
|
2018-10-21 10:04:23 -07:00
|
|
|
if (this.status.summary && this.localCollapseSubjectDefault) {
|
2018-08-19 18:59:06 -07:00
|
|
|
return false
|
|
|
|
}
|
2018-04-09 09:43:31 -07:00
|
|
|
if (this.showingTall) {
|
|
|
|
return false
|
|
|
|
}
|
2018-08-19 18:59:06 -07:00
|
|
|
return this.tallStatus
|
|
|
|
},
|
|
|
|
showingMore () {
|
2019-01-30 06:38:28 -08:00
|
|
|
return (this.tallStatus && this.showingTall) || (this.status.summary && this.expandingSubject)
|
2018-04-09 09:43:31 -07:00
|
|
|
},
|
2018-08-25 16:21:54 -07:00
|
|
|
nsfwClickthrough () {
|
|
|
|
if (!this.status.nsfw) {
|
|
|
|
return false
|
|
|
|
}
|
2018-10-21 10:04:23 -07:00
|
|
|
if (this.status.summary && this.localCollapseSubjectDefault) {
|
2018-08-25 16:21:54 -07:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
},
|
2018-08-25 17:50:11 -07:00
|
|
|
replySubject () {
|
2018-09-25 05:21:47 -07:00
|
|
|
if (!this.status.summary) return ''
|
2019-02-09 04:13:52 -08:00
|
|
|
const decodedSummary = unescape(this.status.summary)
|
2018-12-18 12:31:10 -08:00
|
|
|
const behavior = typeof this.$store.state.config.subjectLineBehavior === 'undefined'
|
|
|
|
? this.$store.state.instance.subjectLineBehavior
|
|
|
|
: this.$store.state.config.subjectLineBehavior
|
2019-02-08 08:25:53 -08:00
|
|
|
const startsWithRe = decodedSummary.match(/^re[: ]/i)
|
2018-09-25 05:16:26 -07:00
|
|
|
if (behavior !== 'noop' && startsWithRe || behavior === 'masto') {
|
2019-02-08 08:25:53 -08:00
|
|
|
return decodedSummary
|
2018-09-25 05:16:26 -07:00
|
|
|
} else if (behavior === 'email') {
|
2019-02-08 08:25:53 -08:00
|
|
|
return 're: '.concat(decodedSummary)
|
2018-09-25 05:16:26 -07:00
|
|
|
} else if (behavior === 'noop') {
|
|
|
|
return ''
|
2018-08-25 17:50:11 -07:00
|
|
|
}
|
|
|
|
},
|
2018-04-09 09:43:31 -07:00
|
|
|
attachmentSize () {
|
|
|
|
if ((this.$store.state.config.hideAttachments && !this.inConversation) ||
|
2019-01-14 09:23:13 -08:00
|
|
|
(this.$store.state.config.hideAttachmentsInConv && this.inConversation) ||
|
2019-02-27 06:38:58 -08:00
|
|
|
(this.status.attachments.length > this.maxThumbnails)) {
|
2018-04-09 09:43:31 -07:00
|
|
|
return 'hide'
|
|
|
|
} else if (this.compact) {
|
|
|
|
return 'small'
|
|
|
|
}
|
|
|
|
return 'normal'
|
2019-01-26 07:45:03 -08:00
|
|
|
},
|
|
|
|
galleryTypes () {
|
|
|
|
if (this.attachmentSize === 'hide') {
|
|
|
|
return []
|
|
|
|
}
|
2019-01-31 11:19:41 -08:00
|
|
|
return this.$store.state.config.playVideosInModal
|
|
|
|
? ['image', 'video']
|
|
|
|
: ['image']
|
2019-01-26 07:45:03 -08:00
|
|
|
},
|
|
|
|
galleryAttachments () {
|
|
|
|
return this.status.attachments.filter(
|
|
|
|
file => fileType.fileMatchesSomeType(this.galleryTypes, file)
|
|
|
|
)
|
|
|
|
},
|
|
|
|
nonGalleryAttachments () {
|
|
|
|
return this.status.attachments.filter(
|
|
|
|
file => !fileType.fileMatchesSomeType(this.galleryTypes, file)
|
|
|
|
)
|
2019-02-27 06:38:58 -08:00
|
|
|
},
|
|
|
|
maxThumbnails () {
|
|
|
|
return this.$store.state.config.maxThumbnails
|
2019-04-01 09:54:34 -07:00
|
|
|
},
|
|
|
|
contentHtml () {
|
2019-04-01 10:01:28 -07:00
|
|
|
if (!this.status.summary_html) {
|
|
|
|
return this.status.statusnet_html
|
|
|
|
}
|
2019-04-01 09:54:34 -07:00
|
|
|
return this.status.summary_html + '<br />' + this.status.statusnet_html
|
2019-04-01 19:29:45 -07:00
|
|
|
},
|
2019-05-01 07:33:56 -07:00
|
|
|
combinedFavsAndRepeatsUsers () {
|
2019-04-09 08:45:33 -07:00
|
|
|
// Use the status from the global status repository since favs and repeats are saved in it
|
2019-05-01 07:33:56 -07:00
|
|
|
const combinedUsers = [].concat(
|
2019-04-29 12:36:39 -07:00
|
|
|
this.statusFromGlobalRepository.favoritedBy,
|
|
|
|
this.statusFromGlobalRepository.rebloggedBy
|
|
|
|
)
|
2019-05-01 07:33:56 -07:00
|
|
|
return uniqBy(combinedUsers, 'id')
|
2017-03-08 15:09:23 -08:00
|
|
|
}
|
2016-10-28 09:08:03 -07:00
|
|
|
},
|
|
|
|
components: {
|
2016-10-30 08:12:35 -07:00
|
|
|
Attachment,
|
2016-11-03 08:59:27 -07:00
|
|
|
FavoriteButton,
|
2016-11-13 07:42:56 -08:00
|
|
|
RetweetButton,
|
2016-12-07 12:50:46 -08:00
|
|
|
DeleteButton,
|
2017-02-16 06:58:49 -08:00
|
|
|
PostStatusForm,
|
2019-03-05 11:01:49 -08:00
|
|
|
UserCard,
|
2019-02-02 11:11:36 -08:00
|
|
|
UserAvatar,
|
2019-01-30 10:49:24 -08:00
|
|
|
Gallery,
|
2019-04-01 19:29:45 -07:00
|
|
|
LinkPreview,
|
|
|
|
AvatarList
|
2016-11-03 08:59:27 -07:00
|
|
|
},
|
|
|
|
methods: {
|
2018-05-21 15:01:33 -07:00
|
|
|
visibilityIcon (visibility) {
|
|
|
|
switch (visibility) {
|
|
|
|
case 'private':
|
|
|
|
return 'icon-lock'
|
|
|
|
case 'unlisted':
|
|
|
|
return 'icon-lock-open-alt'
|
|
|
|
case 'direct':
|
|
|
|
return 'icon-mail-alt'
|
|
|
|
default:
|
|
|
|
return 'icon-globe'
|
2018-05-20 09:28:01 -07:00
|
|
|
}
|
|
|
|
},
|
2019-01-30 09:15:35 -08:00
|
|
|
linkClicked (event) {
|
|
|
|
let { target } = event
|
2017-02-19 04:25:30 -08:00
|
|
|
if (target.tagName === 'SPAN') {
|
|
|
|
target = target.parentNode
|
|
|
|
}
|
2017-02-19 03:58:25 -08:00
|
|
|
if (target.tagName === 'A') {
|
2019-01-30 09:15:35 -08:00
|
|
|
if (target.className.match(/mention/)) {
|
2019-02-07 13:54:49 -08:00
|
|
|
const href = target.href
|
2019-01-30 09:15:35 -08:00
|
|
|
const attn = this.status.attentions.find(attn => mentionMatchesUrl(attn, href))
|
|
|
|
if (attn) {
|
|
|
|
event.stopPropagation()
|
|
|
|
event.preventDefault()
|
|
|
|
const link = this.generateUserProfileLink(attn.id, attn.screen_name)
|
|
|
|
this.$router.push(link)
|
|
|
|
return
|
|
|
|
}
|
2019-02-07 13:54:49 -08:00
|
|
|
}
|
|
|
|
if (target.className.match(/hashtag/)) {
|
|
|
|
// Extract tag name from link url
|
|
|
|
const tag = extractTagFromUrl(target.href)
|
|
|
|
if (tag) {
|
|
|
|
const link = this.generateTagLink(tag)
|
|
|
|
this.$router.push(link)
|
2019-02-11 06:45:22 -08:00
|
|
|
return
|
2019-02-07 13:54:49 -08:00
|
|
|
}
|
2019-01-30 09:15:35 -08:00
|
|
|
}
|
2019-02-11 06:38:12 -08:00
|
|
|
window.open(target.href, '_blank')
|
2017-02-19 03:58:25 -08:00
|
|
|
}
|
|
|
|
},
|
2016-11-03 08:59:27 -07:00
|
|
|
toggleReplying () {
|
2019-03-11 13:24:37 -07:00
|
|
|
this.replying = !this.replying
|
2017-02-04 04:53:28 -08:00
|
|
|
},
|
2017-06-04 13:58:15 -07:00
|
|
|
gotoOriginal (id) {
|
2017-11-13 22:55:21 -08:00
|
|
|
if (this.inConversation) {
|
2017-11-13 06:33:54 -08:00
|
|
|
this.$emit('goto', id)
|
|
|
|
}
|
2017-04-12 08:25:19 -07:00
|
|
|
},
|
2017-02-04 04:53:28 -08:00
|
|
|
toggleExpanded () {
|
|
|
|
this.$emit('toggleExpanded')
|
2017-02-13 15:01:50 -08:00
|
|
|
},
|
|
|
|
toggleMute () {
|
|
|
|
this.unmuted = !this.unmuted
|
2017-02-16 06:58:49 -08:00
|
|
|
},
|
|
|
|
toggleUserExpanded () {
|
|
|
|
this.userExpanded = !this.userExpanded
|
2017-06-07 07:58:24 -07:00
|
|
|
},
|
2018-08-19 18:59:06 -07:00
|
|
|
toggleShowMore () {
|
|
|
|
if (this.showingTall) {
|
|
|
|
this.showingTall = false
|
2019-01-28 11:59:17 -08:00
|
|
|
} else if (this.expandingSubject && this.status.summary) {
|
2018-08-19 19:41:40 -07:00
|
|
|
this.expandingSubject = false
|
2018-08-19 18:59:06 -07:00
|
|
|
} else if (this.hideTallStatus) {
|
|
|
|
this.showingTall = true
|
2019-01-28 11:59:17 -08:00
|
|
|
} else if (this.hideSubjectStatus && this.status.summary) {
|
2018-08-19 19:41:40 -07:00
|
|
|
this.expandingSubject = true
|
2018-08-19 18:59:06 -07:00
|
|
|
}
|
2018-04-09 09:43:31 -07:00
|
|
|
},
|
2017-06-07 07:58:24 -07:00
|
|
|
replyEnter (id, event) {
|
2017-11-13 06:33:54 -08:00
|
|
|
this.showPreview = true
|
2019-01-17 08:16:45 -08:00
|
|
|
const targetId = id
|
2017-11-13 06:33:54 -08:00
|
|
|
const statuses = this.$store.state.statuses.allStatuses
|
|
|
|
|
|
|
|
if (!this.preview) {
|
|
|
|
// if we have the status somewhere already
|
|
|
|
this.preview = find(statuses, { 'id': targetId })
|
|
|
|
// or if we have to fetch it
|
|
|
|
if (!this.preview) {
|
|
|
|
this.$store.state.api.backendInteractor.fetchStatus({id}).then((status) => {
|
|
|
|
this.preview = status
|
|
|
|
})
|
|
|
|
}
|
|
|
|
} else if (this.preview.id !== targetId) {
|
|
|
|
this.preview = find(statuses, { 'id': targetId })
|
|
|
|
}
|
2017-06-07 07:58:24 -07:00
|
|
|
},
|
|
|
|
replyLeave () {
|
2017-11-13 06:33:54 -08:00
|
|
|
this.showPreview = false
|
2018-12-14 19:16:44 -08:00
|
|
|
},
|
2019-01-22 12:57:51 -08:00
|
|
|
generateUserProfileLink (id, name) {
|
2018-12-26 05:50:48 -08:00
|
|
|
return generateProfileLink(id, name, this.$store.state.instance.restrictedNicknames)
|
2019-01-14 09:23:13 -08:00
|
|
|
},
|
2019-02-07 13:54:49 -08:00
|
|
|
generateTagLink (tag) {
|
|
|
|
return `/tag/${tag}`
|
|
|
|
},
|
2019-01-14 09:23:13 -08:00
|
|
|
setMedia () {
|
2019-01-26 07:45:03 -08:00
|
|
|
const attachments = this.attachmentSize === 'hide' ? this.status.attachments : this.galleryAttachments
|
2019-01-14 09:23:13 -08:00
|
|
|
return () => this.$store.dispatch('setMedia', attachments)
|
2018-08-04 19:44:02 -07:00
|
|
|
}
|
2017-04-12 08:25:19 -07:00
|
|
|
},
|
|
|
|
watch: {
|
2017-04-12 09:07:55 -07:00
|
|
|
'highlight': function (id) {
|
|
|
|
if (this.status.id === id) {
|
2017-04-12 08:25:19 -07:00
|
|
|
let rect = this.$el.getBoundingClientRect()
|
2017-04-12 09:07:55 -07:00
|
|
|
if (rect.top < 100) {
|
2019-01-30 06:38:28 -08:00
|
|
|
// Post is above screen, match its top to screen top
|
|
|
|
window.scrollBy(0, rect.top - 100)
|
|
|
|
} else if (rect.height >= (window.innerHeight - 50)) {
|
|
|
|
// Post we want to see is taller than screen so match its top to screen top
|
|
|
|
window.scrollBy(0, rect.top - 100)
|
2017-06-04 13:58:15 -07:00
|
|
|
} else if (rect.bottom > window.innerHeight - 50) {
|
2019-01-30 06:38:28 -08:00
|
|
|
// Post is below screen, match its bottom to screen bottom
|
2017-06-04 13:58:15 -07:00
|
|
|
window.scrollBy(0, rect.bottom - window.innerHeight + 50)
|
2017-04-12 09:07:55 -07:00
|
|
|
}
|
2017-04-12 08:25:19 -07:00
|
|
|
}
|
|
|
|
}
|
2018-08-27 02:51:30 -07:00
|
|
|
},
|
|
|
|
filters: {
|
|
|
|
capitalize: function (str) {
|
|
|
|
return str.charAt(0).toUpperCase() + str.slice(1)
|
|
|
|
}
|
2016-10-28 09:08:03 -07:00
|
|
|
}
|
2016-10-28 06:19:42 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export default Status
|