2016-10-29 03:08:03 +11:00
|
|
|
import nsfwImage from '../../assets/nsfw.jpg'
|
2016-11-26 04:21:25 +11:00
|
|
|
import fileTypeService from '../../services/file_type/file_type.service.js'
|
2016-10-29 03:08:03 +11:00
|
|
|
|
|
|
|
const Attachment = {
|
|
|
|
props: [
|
|
|
|
'attachment',
|
2016-10-29 10:38:41 +11:00
|
|
|
'nsfw',
|
|
|
|
'statusId'
|
2016-10-29 03:08:03 +11:00
|
|
|
],
|
|
|
|
data: () => ({ nsfwImage }),
|
|
|
|
computed: {
|
|
|
|
type () {
|
2016-11-26 04:21:25 +11:00
|
|
|
return fileTypeService.fileType(this.attachment.mimetype)
|
2016-10-29 03:08:03 +11:00
|
|
|
}
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
showNsfw () {
|
2016-10-29 10:38:41 +11:00
|
|
|
this.$store.commit('setNsfw', { id: this.statusId, nsfw: false })
|
2016-10-29 03:08:03 +11:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Attachment
|