2018-01-29 18:47:26 +11:00
|
|
|
import StillImage from '../still-image/still-image.vue'
|
2016-12-03 00:42:01 +11:00
|
|
|
import nsfwImage from '../../assets/nsfw.png'
|
2016-11-26 04:21:25 +11:00
|
|
|
import fileTypeService from '../../services/file_type/file_type.service.js'
|
2016-10-29 03:08:03 +11:00
|
|
|
|
|
|
|
const Attachment = {
|
|
|
|
props: [
|
|
|
|
'attachment',
|
2016-10-29 10:38:41 +11:00
|
|
|
'nsfw',
|
2018-04-10 02:43:31 +10:00
|
|
|
'statusId',
|
|
|
|
'size'
|
2016-10-29 03:08:03 +11:00
|
|
|
],
|
2017-02-23 10:59:48 +11:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
nsfwImage,
|
|
|
|
hideNsfwLocal: this.$store.state.config.hideNsfw,
|
2017-03-09 14:23:10 +11:00
|
|
|
showHidden: false,
|
|
|
|
loading: false,
|
|
|
|
img: document.createElement('img')
|
2017-02-23 10:59:48 +11:00
|
|
|
}
|
|
|
|
},
|
2018-01-29 18:47:26 +11:00
|
|
|
components: {
|
|
|
|
StillImage
|
|
|
|
},
|
2016-10-29 03:08:03 +11:00
|
|
|
computed: {
|
|
|
|
type () {
|
2016-11-26 04:21:25 +11:00
|
|
|
return fileTypeService.fileType(this.attachment.mimetype)
|
2016-12-03 00:22:42 +11:00
|
|
|
},
|
|
|
|
hidden () {
|
2017-02-23 10:59:48 +11:00
|
|
|
return this.nsfw && this.hideNsfwLocal && !this.showHidden
|
2017-03-09 14:23:10 +11:00
|
|
|
},
|
2017-11-13 20:08:34 +11:00
|
|
|
isEmpty () {
|
2017-11-20 22:27:45 +11:00
|
|
|
return (this.type === 'html' && !this.attachment.oembed) || this.type === 'unknown'
|
2018-04-10 02:43:31 +10:00
|
|
|
},
|
|
|
|
isSmall () {
|
|
|
|
return this.size === 'small'
|
2018-04-14 22:45:38 +10:00
|
|
|
},
|
|
|
|
fullwidth () {
|
|
|
|
return fileTypeService.fileType(this.attachment.mimetype) === 'html'
|
2016-10-29 03:08:03 +11:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2017-02-19 22:58:25 +11:00
|
|
|
linkClicked ({target}) {
|
|
|
|
if (target.tagName === 'A') {
|
|
|
|
window.open(target.href, '_blank')
|
|
|
|
}
|
|
|
|
},
|
2016-12-03 00:22:42 +11:00
|
|
|
toggleHidden () {
|
2017-03-09 14:23:10 +11: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-03 14:01:19 +11:00
|
|
|
}
|
2016-10-29 03:08:03 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-03 00:22:42 +11:00
|
|
|
export default Attachment
|