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