2018-01-29 07:47:26 +00:00
|
|
|
import StillImage from '../still-image/still-image.vue'
|
2016-12-02 13:42:01 +00:00
|
|
|
import nsfwImage from '../../assets/nsfw.png'
|
2016-11-25 17:21:25 +00:00
|
|
|
import fileTypeService from '../../services/file_type/file_type.service.js'
|
2016-10-28 16:08:03 +00:00
|
|
|
|
|
|
|
const Attachment = {
|
|
|
|
props: [
|
|
|
|
'attachment',
|
2016-10-28 23:38:41 +00:00
|
|
|
'nsfw',
|
2018-04-09 16:43:31 +00:00
|
|
|
'statusId',
|
|
|
|
'size'
|
2016-10-28 16:08:03 +00:00
|
|
|
],
|
2017-02-22 23:59:48 +00:00
|
|
|
data () {
|
|
|
|
return {
|
2018-04-22 14:10:10 +00:00
|
|
|
nsfwImage: this.$store.state.config.nsfwCensorImage || nsfwImage,
|
2017-02-22 23:59:48 +00:00
|
|
|
hideNsfwLocal: this.$store.state.config.hideNsfw,
|
2018-12-11 22:12:29 +00:00
|
|
|
preloadImage: this.$store.state.config.preloadImage,
|
2018-08-15 09:51:21 +00:00
|
|
|
loopVideo: this.$store.state.config.loopVideo,
|
2017-03-09 03:23:10 +00:00
|
|
|
showHidden: false,
|
|
|
|
loading: false,
|
2018-08-30 13:02:53 +00:00
|
|
|
img: fileTypeService.fileType(this.attachment.mimetype) === 'image' && document.createElement('img')
|
2017-02-22 23:59:48 +00:00
|
|
|
}
|
|
|
|
},
|
2018-01-29 07:47:26 +00:00
|
|
|
components: {
|
|
|
|
StillImage
|
|
|
|
},
|
2016-10-28 16:08:03 +00:00
|
|
|
computed: {
|
2019-01-19 13:45:56 +00:00
|
|
|
referrerpolicy () {
|
|
|
|
return this.$store.state.instance.mediaProxyAvailable ? "" : "no-referrer"
|
|
|
|
},
|
2016-10-28 16:08:03 +00:00
|
|
|
type () {
|
2016-11-25 17:21:25 +00:00
|
|
|
return fileTypeService.fileType(this.attachment.mimetype)
|
2016-12-02 13:22:42 +00:00
|
|
|
},
|
|
|
|
hidden () {
|
2018-12-12 15:07:07 +00:00
|
|
|
return this.nsfw && this.hideNsfwLocal && !this.showHidden
|
2017-03-09 03:23:10 +00:00
|
|
|
},
|
2017-11-13 09:08:34 +00:00
|
|
|
isEmpty () {
|
2017-11-20 11:27:45 +00:00
|
|
|
return (this.type === 'html' && !this.attachment.oembed) || this.type === 'unknown'
|
2018-04-09 16:43:31 +00:00
|
|
|
},
|
|
|
|
isSmall () {
|
|
|
|
return this.size === 'small'
|
2018-04-14 12:45:38 +00:00
|
|
|
},
|
|
|
|
fullwidth () {
|
|
|
|
return fileTypeService.fileType(this.attachment.mimetype) === 'html'
|
2016-10-28 16:08:03 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2017-02-19 11:58:25 +00:00
|
|
|
linkClicked ({target}) {
|
|
|
|
if (target.tagName === 'A') {
|
|
|
|
window.open(target.href, '_blank')
|
|
|
|
}
|
|
|
|
},
|
2016-12-02 13:22:42 +00:00
|
|
|
toggleHidden () {
|
2018-12-12 18:41:01 +00:00
|
|
|
if (this.img && !this.preloadImage) {
|
2018-08-15 08:20:40 +00:00
|
|
|
if (this.img.onload) {
|
|
|
|
this.img.onload()
|
|
|
|
} else {
|
|
|
|
this.loading = true
|
|
|
|
this.img.src = this.attachment.url
|
|
|
|
this.img.onload = () => {
|
|
|
|
this.loading = false
|
|
|
|
this.showHidden = !this.showHidden
|
|
|
|
}
|
2017-03-09 03:23:10 +00:00
|
|
|
}
|
2018-08-15 08:20:40 +00:00
|
|
|
} else {
|
|
|
|
this.showHidden = !this.showHidden
|
2017-03-03 03:01:19 +00:00
|
|
|
}
|
2018-08-15 09:51:21 +00:00
|
|
|
},
|
|
|
|
onVideoDataLoad (e) {
|
|
|
|
if (typeof e.srcElement.webkitAudioDecodedByteCount !== 'undefined') {
|
|
|
|
// non-zero if video has audio track
|
|
|
|
if (e.srcElement.webkitAudioDecodedByteCount > 0) {
|
|
|
|
this.loopVideo = this.loopVideo && !this.$store.state.config.loopVideoSilentOnly
|
|
|
|
}
|
|
|
|
} else if (typeof e.srcElement.mozHasAudio !== 'undefined') {
|
|
|
|
// true if video has audio track
|
|
|
|
if (e.srcElement.mozHasAudio) {
|
|
|
|
this.loopVideo = this.loopVideo && !this.$store.state.config.loopVideoSilentOnly
|
|
|
|
}
|
|
|
|
} else if (typeof e.srcElement.audioTracks !== 'undefined') {
|
|
|
|
if (e.srcElement.audioTracks.length > 0) {
|
|
|
|
this.loopVideo = this.loopVideo && !this.$store.state.config.loopVideoSilentOnly
|
|
|
|
}
|
|
|
|
}
|
2016-10-28 16:08:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-02 13:22:42 +00:00
|
|
|
export default Attachment
|