2018-01-29 18:47:26 +11:00
|
|
|
import StillImage from '../still-image/still-image.vue'
|
2019-01-27 02:45:03 +11:00
|
|
|
import VideoAttachment from '../video_attachment/video_attachment.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'
|
2020-01-31 11:24:54 +11:00
|
|
|
import { mapGetters } from 'vuex'
|
2016-10-29 03:08:03 +11:00
|
|
|
|
|
|
|
const Attachment = {
|
|
|
|
props: [
|
|
|
|
'attachment',
|
2016-10-29 10:38:41 +11:00
|
|
|
'nsfw',
|
2019-01-15 04:23:13 +11:00
|
|
|
'size',
|
2019-01-27 02:45:03 +11:00
|
|
|
'allowPlay',
|
2019-10-19 07:04:17 +11:00
|
|
|
'setMedia',
|
|
|
|
'naturalSizeLoad'
|
2016-10-29 03:08:03 +11:00
|
|
|
],
|
2017-02-23 10:59:48 +11:00
|
|
|
data () {
|
|
|
|
return {
|
2019-01-23 08:10:59 +11:00
|
|
|
nsfwImage: this.$store.state.instance.nsfwCensorImage || nsfwImage,
|
2019-10-07 07:28:30 +11:00
|
|
|
hideNsfwLocal: this.$store.getters.mergedConfig.hideNsfw,
|
|
|
|
preloadImage: this.$store.getters.mergedConfig.preloadImage,
|
2017-03-09 14:23:10 +11:00
|
|
|
loading: false,
|
2019-01-27 02:45:03 +11:00
|
|
|
img: fileTypeService.fileType(this.attachment.mimetype) === 'image' && document.createElement('img'),
|
|
|
|
modalOpen: false,
|
|
|
|
showHidden: false
|
2017-02-23 10:59:48 +11:00
|
|
|
}
|
|
|
|
},
|
2018-01-29 18:47:26 +11:00
|
|
|
components: {
|
2019-01-27 02:45:03 +11:00
|
|
|
StillImage,
|
|
|
|
VideoAttachment
|
2018-01-29 18:47:26 +11:00
|
|
|
},
|
2016-10-29 03:08:03 +11:00
|
|
|
computed: {
|
2020-06-29 21:48:22 +10:00
|
|
|
usePlaceholder () {
|
2019-01-15 04:23:13 +11:00
|
|
|
return this.size === 'hide' || this.type === 'unknown'
|
|
|
|
},
|
2020-06-29 21:48:22 +10:00
|
|
|
placeholderName () {
|
|
|
|
if (this.attachment.description === '' || !this.attachment.description) {
|
|
|
|
return this.type.toUpperCase()
|
|
|
|
}
|
|
|
|
return this.attachment.description
|
|
|
|
},
|
|
|
|
placeholderIconClass () {
|
|
|
|
if (this.type === 'image') return 'icon-picture'
|
|
|
|
if (this.type === 'video') return 'icon-video'
|
|
|
|
if (this.type === 'audio') return 'icon-music'
|
|
|
|
return 'icon-link'
|
|
|
|
},
|
2019-01-20 00:45:56 +11:00
|
|
|
referrerpolicy () {
|
2019-01-20 00:56:18 +11:00
|
|
|
return this.$store.state.instance.mediaProxyAvailable ? '' : 'no-referrer'
|
2019-01-20 00:45:56 +11:00
|
|
|
},
|
2016-10-29 03:08:03 +11:00
|
|
|
type () {
|
2016-11-26 04:21:25 +11:00
|
|
|
return fileTypeService.fileType(this.attachment.mimetype)
|
2016-12-03 00:22:42 +11:00
|
|
|
},
|
|
|
|
hidden () {
|
2019-01-27 02:45:03 +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 () {
|
2019-01-15 04:23:13 +11:00
|
|
|
return this.type === 'html' || this.type === 'audio'
|
2020-01-31 11:24:54 +11:00
|
|
|
},
|
2020-06-29 21:48:22 +10:00
|
|
|
useModal () {
|
|
|
|
return this.size === 'hide' ? ['image', 'video', 'audio']
|
|
|
|
: this.mergedConfig.playVideosInModal
|
|
|
|
? ['image', 'video']
|
|
|
|
: ['image']
|
|
|
|
},
|
2020-01-31 11:24:54 +11:00
|
|
|
...mapGetters(['mergedConfig'])
|
2016-10-29 03:08:03 +11:00
|
|
|
},
|
|
|
|
methods: {
|
2019-07-05 17:02:14 +10:00
|
|
|
linkClicked ({ target }) {
|
2017-02-19 22:58:25 +11:00
|
|
|
if (target.tagName === 'A') {
|
|
|
|
window.open(target.href, '_blank')
|
|
|
|
}
|
|
|
|
},
|
2019-01-27 02:45:03 +11:00
|
|
|
openModal (event) {
|
2020-06-29 21:48:22 +10:00
|
|
|
if (this.useModal) {
|
2019-01-27 02:45:03 +11:00
|
|
|
event.stopPropagation()
|
|
|
|
event.preventDefault()
|
|
|
|
this.setMedia()
|
|
|
|
this.$store.dispatch('setCurrent', this.attachment)
|
|
|
|
}
|
|
|
|
},
|
|
|
|
toggleHidden (event) {
|
2020-01-31 11:24:54 +11:00
|
|
|
if (
|
|
|
|
(this.mergedConfig.useOneClickNsfw && !this.showHidden) &&
|
|
|
|
(this.type !== 'video' || this.mergedConfig.playVideosInModal)
|
|
|
|
) {
|
2019-01-27 02:45:03 +11:00
|
|
|
this.openModal(event)
|
2019-01-15 04:23:13 +11:00
|
|
|
return
|
|
|
|
}
|
2019-01-27 02:45:03 +11:00
|
|
|
if (this.img && !this.preloadImage) {
|
|
|
|
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
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
this.showHidden = !this.showHidden
|
|
|
|
}
|
2019-10-19 07:04:17 +11:00
|
|
|
},
|
|
|
|
onImageLoad (image) {
|
|
|
|
const width = image.naturalWidth
|
|
|
|
const height = image.naturalHeight
|
|
|
|
this.naturalSizeLoad && this.naturalSizeLoad({ width, height })
|
2016-10-29 03:08:03 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-03 00:22:42 +11:00
|
|
|
export default Attachment
|