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',
|
|
|
|
'statusId'
|
2016-10-28 16:08:03 +00:00
|
|
|
],
|
2017-02-22 23:59:48 +00:00
|
|
|
data () {
|
|
|
|
return {
|
|
|
|
nsfwImage,
|
|
|
|
hideNsfwLocal: this.$store.state.config.hideNsfw,
|
2017-03-09 03:23:10 +00:00
|
|
|
showHidden: false,
|
|
|
|
loading: false,
|
|
|
|
img: document.createElement('img')
|
2017-02-22 23:59:48 +00:00
|
|
|
}
|
|
|
|
},
|
2016-10-28 16:08:03 +00:00
|
|
|
computed: {
|
|
|
|
type () {
|
2016-11-25 17:21:25 +00:00
|
|
|
return fileTypeService.fileType(this.attachment.mimetype)
|
2016-12-02 13:22:42 +00:00
|
|
|
},
|
|
|
|
hidden () {
|
2017-02-22 23:59:48 +00:00
|
|
|
return this.nsfw && this.hideNsfwLocal && !this.showHidden
|
2017-03-09 03:23:10 +00:00
|
|
|
},
|
|
|
|
autoHeight () {
|
|
|
|
if (this.type === 'image' && this.nsfw) {
|
|
|
|
return {
|
2017-04-09 11:28:21 +00:00
|
|
|
'min-height': '109px'
|
2017-03-09 03:23:10 +00:00
|
|
|
}
|
|
|
|
}
|
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 () {
|
2017-03-09 03:23:10 +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-03 03:01:19 +00:00
|
|
|
}
|
2016-10-28 16:08:03 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-02 13:22:42 +00:00
|
|
|
export default Attachment
|