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

37 lines
652 B
JavaScript
Raw Normal View History

2016-10-29 03:08:03 +11:00
import nsfwImage from '../../assets/nsfw.jpg'
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-10-29 10:38:41 +11:00
let type = 'unknown'
if(this.attachment.mimetype.match(/text\/html/)) {
type = 'html';
}
if(this.attachment.mimetype.match(/image/)) {
type = 'image';
}
if(this.attachment.mimetype.match(/video\/webm/)) {
type = 'webm';
};
return type
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