2018-01-29 10:47:26 +03:00
|
|
|
import StillImage from '../still-image/still-image.vue'
|
2016-12-02 14:42:01 +01:00
|
|
|
import nsfwImage from '../../assets/nsfw.png'
|
2016-11-25 20:21:25 +03:00
|
|
|
import fileTypeService from '../../services/file_type/file_type.service.js'
|
2016-10-28 18:08:03 +02:00
|
|
|
|
|
|
|
const Attachment = {
|
|
|
|
props: [
|
|
|
|
'attachment',
|
2016-10-29 01:38:41 +02:00
|
|
|
'nsfw',
|
2018-04-09 19:43:31 +03:00
|
|
|
'statusId',
|
2019-01-14 19:23:13 +02:00
|
|
|
'size',
|
|
|
|
'setMedia'
|
2016-10-28 18:08:03 +02:00
|
|
|
],
|
2017-02-22 18:59:48 -05:00
|
|
|
data () {
|
|
|
|
return {
|
2018-04-22 09:10:10 -05:00
|
|
|
nsfwImage: this.$store.state.config.nsfwCensorImage || nsfwImage,
|
2017-02-22 18:59:48 -05:00
|
|
|
hideNsfwLocal: this.$store.state.config.hideNsfw,
|
2018-12-12 03:42:29 +05:30
|
|
|
preloadImage: this.$store.state.config.preloadImage,
|
2017-03-08 20:23:10 -07:00
|
|
|
loading: false,
|
2019-01-14 19:23:13 +02:00
|
|
|
modalOpen: false
|
2017-02-22 18:59:48 -05:00
|
|
|
}
|
|
|
|
},
|
2018-01-29 10:47:26 +03:00
|
|
|
components: {
|
|
|
|
StillImage
|
|
|
|
},
|
2016-10-28 18:08:03 +02:00
|
|
|
computed: {
|
2019-01-14 19:23:13 +02:00
|
|
|
usePlaceHolder () {
|
|
|
|
return this.size === 'hide' || this.type === 'unknown'
|
|
|
|
},
|
2019-01-19 14:45:56 +01:00
|
|
|
referrerpolicy () {
|
2019-01-19 14:56:18 +01:00
|
|
|
return this.$store.state.instance.mediaProxyAvailable ? '' : 'no-referrer'
|
2019-01-19 14:45:56 +01:00
|
|
|
},
|
2016-10-28 18:08:03 +02:00
|
|
|
type () {
|
2016-11-25 20:21:25 +03:00
|
|
|
return fileTypeService.fileType(this.attachment.mimetype)
|
2016-12-02 14:22:42 +01:00
|
|
|
},
|
|
|
|
hidden () {
|
2019-01-20 12:46:11 +02:00
|
|
|
return this.nsfw && this.hideNsfwLocal
|
2017-03-08 20:23:10 -07:00
|
|
|
},
|
2017-11-13 11:08:34 +02:00
|
|
|
isEmpty () {
|
2017-11-20 13:27:45 +02:00
|
|
|
return (this.type === 'html' && !this.attachment.oembed) || this.type === 'unknown'
|
2018-04-09 19:43:31 +03:00
|
|
|
},
|
|
|
|
isSmall () {
|
|
|
|
return this.size === 'small'
|
2018-04-14 15:45:38 +03:00
|
|
|
},
|
|
|
|
fullwidth () {
|
2019-01-14 19:23:13 +02:00
|
|
|
return this.type === 'html' || this.type === 'audio'
|
2016-10-28 18:08:03 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
2017-02-19 12:58:25 +01:00
|
|
|
linkClicked ({target}) {
|
|
|
|
if (target.tagName === 'A') {
|
|
|
|
window.open(target.href, '_blank')
|
|
|
|
}
|
|
|
|
},
|
2019-01-14 19:23:13 +02:00
|
|
|
toggleModal (event) {
|
|
|
|
if (this.type !== 'image' && this.type !== 'video') {
|
|
|
|
return
|
|
|
|
}
|
2019-01-20 12:46:11 +02:00
|
|
|
event.stopPropagation()
|
2019-01-14 19:23:13 +02:00
|
|
|
event.preventDefault()
|
|
|
|
this.setMedia()
|
|
|
|
this.$store.dispatch('setCurrent', this.attachment)
|
2016-10-28 18:08:03 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-02 14:22:42 +01:00
|
|
|
export default Attachment
|