2018-01-28 23:47:26 -08:00
|
|
|
import StillImage from '../still-image/still-image.vue'
|
2021-04-09 09:09:22 -07:00
|
|
|
import Flash from '../flash/flash.vue'
|
2019-01-26 07:45:03 -08:00
|
|
|
import VideoAttachment from '../video_attachment/video_attachment.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'
|
2020-01-30 16:24:54 -08:00
|
|
|
import { mapGetters } from 'vuex'
|
2020-10-20 14:01:28 -07:00
|
|
|
import { library } from '@fortawesome/fontawesome-svg-core'
|
|
|
|
import {
|
|
|
|
faFile,
|
|
|
|
faMusic,
|
|
|
|
faImage,
|
2020-11-19 04:19:03 -08:00
|
|
|
faVideo,
|
2020-11-24 02:32:42 -08:00
|
|
|
faPlayCircle,
|
2021-06-17 06:29:46 -07:00
|
|
|
faTimes,
|
|
|
|
faStop,
|
2021-06-17 16:04:01 -07:00
|
|
|
faSearchPlus,
|
|
|
|
faTrashAlt,
|
|
|
|
faPencilAlt
|
2020-10-20 14:01:28 -07:00
|
|
|
} from '@fortawesome/free-solid-svg-icons'
|
|
|
|
|
|
|
|
library.add(
|
|
|
|
faFile,
|
|
|
|
faMusic,
|
|
|
|
faImage,
|
2020-11-19 04:19:03 -08:00
|
|
|
faVideo,
|
2020-11-24 02:32:42 -08:00
|
|
|
faPlayCircle,
|
2021-06-17 06:29:46 -07:00
|
|
|
faTimes,
|
|
|
|
faStop,
|
2021-06-17 16:04:01 -07:00
|
|
|
faSearchPlus,
|
|
|
|
faTrashAlt,
|
|
|
|
faPencilAlt
|
2020-10-20 14:01:28 -07:00
|
|
|
)
|
2016-10-28 09:08:03 -07:00
|
|
|
|
|
|
|
const Attachment = {
|
|
|
|
props: [
|
|
|
|
'attachment',
|
2021-06-17 16:04:01 -07:00
|
|
|
'description',
|
|
|
|
'hideDescription',
|
2016-10-28 16:38:41 -07:00
|
|
|
'nsfw',
|
2019-01-14 09:23:13 -08:00
|
|
|
'size',
|
2019-10-18 13:04:17 -07:00
|
|
|
'setMedia',
|
2021-06-17 16:04:01 -07:00
|
|
|
'remove',
|
|
|
|
'edit'
|
2016-10-28 09:08:03 -07:00
|
|
|
],
|
2017-02-22 15:59:48 -08:00
|
|
|
data () {
|
|
|
|
return {
|
2021-06-17 16:04:01 -07:00
|
|
|
localDescription: this.description || this.attachment.description,
|
2019-01-22 13:10:59 -08:00
|
|
|
nsfwImage: this.$store.state.instance.nsfwCensorImage || nsfwImage,
|
2019-10-06 13:28:30 -07:00
|
|
|
hideNsfwLocal: this.$store.getters.mergedConfig.hideNsfw,
|
|
|
|
preloadImage: this.$store.getters.mergedConfig.preloadImage,
|
2017-03-08 19:23:10 -08:00
|
|
|
loading: false,
|
2019-01-26 07:45:03 -08:00
|
|
|
img: fileTypeService.fileType(this.attachment.mimetype) === 'image' && document.createElement('img'),
|
|
|
|
modalOpen: false,
|
2021-06-17 06:29:46 -07:00
|
|
|
showHidden: false,
|
|
|
|
flashLoaded: false
|
2017-02-22 15:59:48 -08:00
|
|
|
}
|
|
|
|
},
|
2018-01-28 23:47:26 -08:00
|
|
|
components: {
|
2021-04-09 09:09:22 -07:00
|
|
|
Flash,
|
2019-01-26 07:45:03 -08:00
|
|
|
StillImage,
|
|
|
|
VideoAttachment
|
2018-01-28 23:47:26 -08:00
|
|
|
},
|
2016-10-28 09:08:03 -07:00
|
|
|
computed: {
|
2021-06-17 06:29:46 -07:00
|
|
|
classNames () {
|
|
|
|
return [
|
|
|
|
{
|
|
|
|
'-loading': this.loading,
|
|
|
|
'-nsfw-placeholder': this.hidden
|
|
|
|
},
|
|
|
|
'-' + this.type,
|
2021-06-18 04:12:50 -07:00
|
|
|
'-' + this.size,
|
2021-06-17 06:29:46 -07:00
|
|
|
`-${this.useContainFit ? 'contain' : 'cover'}-fit`
|
|
|
|
]
|
|
|
|
},
|
2020-06-29 04:48:22 -07:00
|
|
|
usePlaceholder () {
|
2019-01-14 09:23:13 -08:00
|
|
|
return this.size === 'hide' || this.type === 'unknown'
|
|
|
|
},
|
2021-06-17 06:29:46 -07:00
|
|
|
useContainFit () {
|
|
|
|
return this.$store.getters.mergedConfig.useContainFit
|
|
|
|
},
|
2020-06-29 04:48:22 -07:00
|
|
|
placeholderName () {
|
|
|
|
if (this.attachment.description === '' || !this.attachment.description) {
|
|
|
|
return this.type.toUpperCase()
|
|
|
|
}
|
|
|
|
return this.attachment.description
|
|
|
|
},
|
|
|
|
placeholderIconClass () {
|
2020-10-20 14:01:28 -07:00
|
|
|
if (this.type === 'image') return 'image'
|
|
|
|
if (this.type === 'video') return 'video'
|
|
|
|
if (this.type === 'audio') return 'music'
|
|
|
|
return 'file'
|
2020-06-29 04:48:22 -07:00
|
|
|
},
|
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-26 07:45:03 -08:00
|
|
|
return this.nsfw && this.hideNsfwLocal && !this.showHidden
|
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
|
|
|
},
|
2020-06-29 04:48:22 -07:00
|
|
|
useModal () {
|
2021-06-18 04:12:50 -07:00
|
|
|
let modalTypes = []
|
|
|
|
switch (this.size) {
|
|
|
|
case 'hide':
|
|
|
|
case 'small':
|
|
|
|
modalTypes = ['image', 'video', 'audio', 'flash']
|
|
|
|
break
|
|
|
|
default:
|
|
|
|
modalTypes = this.mergedConfig.playVideosInModal
|
|
|
|
? ['image', 'video', 'flash']
|
|
|
|
: ['image']
|
|
|
|
break
|
|
|
|
}
|
2020-07-06 03:42:33 -07:00
|
|
|
return modalTypes.includes(this.type)
|
2020-06-29 04:48:22 -07:00
|
|
|
},
|
2020-01-30 16:24:54 -08:00
|
|
|
...mapGetters(['mergedConfig'])
|
2016-10-28 09:08:03 -07:00
|
|
|
},
|
2021-06-17 16:04:01 -07:00
|
|
|
watch: {
|
|
|
|
localDescription (newVal) {
|
|
|
|
this.onEdit(newVal)
|
|
|
|
}
|
|
|
|
},
|
2016-10-28 09:08:03 -07:00
|
|
|
methods: {
|
2019-07-05 00:02:14 -07:00
|
|
|
linkClicked ({ target }) {
|
2017-02-19 03:58:25 -08:00
|
|
|
if (target.tagName === 'A') {
|
|
|
|
window.open(target.href, '_blank')
|
|
|
|
}
|
|
|
|
},
|
2019-01-26 07:45:03 -08:00
|
|
|
openModal (event) {
|
2020-06-29 04:48:22 -07:00
|
|
|
if (this.useModal) {
|
2021-06-17 16:01:37 -07:00
|
|
|
this.$emit('setMedia')
|
|
|
|
this.$store.dispatch('setCurrentMedia', this.attachment)
|
2019-01-26 07:45:03 -08:00
|
|
|
}
|
|
|
|
},
|
2021-06-17 06:29:46 -07:00
|
|
|
openModalForce (event) {
|
2021-06-17 16:01:37 -07:00
|
|
|
this.$emit('setMedia')
|
|
|
|
this.$store.dispatch('setCurrentMedia', this.attachment)
|
|
|
|
},
|
2021-06-17 16:04:01 -07:00
|
|
|
onEdit (event) {
|
|
|
|
console.log('ONEDIT', event)
|
|
|
|
this.edit && this.edit(this.attachment, event)
|
|
|
|
},
|
|
|
|
onRemove () {
|
|
|
|
this.remove && this.remove(this.attachment)
|
2021-06-17 06:29:46 -07:00
|
|
|
},
|
|
|
|
stopFlash () {
|
|
|
|
this.$refs.flash.closePlayer()
|
|
|
|
},
|
|
|
|
setFlashLoaded (event) {
|
|
|
|
this.flashLoaded = event
|
|
|
|
},
|
2019-01-26 07:45:03 -08:00
|
|
|
toggleHidden (event) {
|
2020-01-30 16:24:54 -08:00
|
|
|
if (
|
|
|
|
(this.mergedConfig.useOneClickNsfw && !this.showHidden) &&
|
|
|
|
(this.type !== 'video' || this.mergedConfig.playVideosInModal)
|
|
|
|
) {
|
2019-01-26 07:45:03 -08:00
|
|
|
this.openModal(event)
|
2019-01-14 09:23:13 -08:00
|
|
|
return
|
|
|
|
}
|
2019-01-26 07:45:03 -08: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-18 13:04:17 -07:00
|
|
|
},
|
|
|
|
onImageLoad (image) {
|
|
|
|
const width = image.naturalWidth
|
|
|
|
const height = image.naturalHeight
|
2021-06-17 16:04:01 -07:00
|
|
|
this.$emit('naturalSizeLoad', { id: this.attachment.id, width, height })
|
2016-10-28 09:08:03 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-12-02 05:22:42 -08:00
|
|
|
export default Attachment
|