pleroma-fe/src/components/attachment/attachment.js

36 lines
740 B
JavaScript
Raw Normal View History

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'
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
],
2016-12-03 00:22:42 +11:00
data: () => ({
nsfwImage,
2017-02-23 10:38:05 +11:00
hideNsfwLocal: this.$store.state.config.hideNsfw,
showHidden: !this.hideNsfwLocal
2016-12-03 00:22:42 +11:00
}),
2016-10-29 03:08:03 +11:00
computed: {
type () {
2016-11-26 04:21:25 +11:00
return fileTypeService.fileType(this.attachment.mimetype)
2016-12-03 00:22:42 +11:00
},
hidden () {
return this.nsfw && !this.showHidden
2016-10-29 03:08:03 +11:00
}
},
methods: {
linkClicked ({target}) {
if (target.tagName === 'A') {
window.open(target.href, '_blank')
}
},
2016-12-03 00:22:42 +11:00
toggleHidden () {
this.showHidden = !this.showHidden
2016-10-29 03:08:03 +11:00
}
}
}
2016-12-03 00:22:42 +11:00
export default Attachment