pleroma-fe/src/components/interactions/interactions.js
2026-01-06 16:23:17 +02:00

36 lines
851 B
JavaScript

import TabSwitcher from 'src/components/tab_switcher/tab_switcher.jsx'
import Notifications from '../notifications/notifications.vue'
const tabModeDict = {
mentions: ['mention'],
statuses: ['status'],
'likes+repeats': ['repeat', 'like'],
follows: ['follow'],
reactions: ['pleroma:emoji_reaction'],
reports: ['pleroma:report'],
moves: ['move'],
}
const Interactions = {
data() {
return {
allowFollowingMove:
this.$store.state.users.currentUser.allow_following_move,
filterMode: tabModeDict.mentions,
canSeeReports: this.$store.state.users.currentUser.privileges.includes(
'reports_manage_reports',
),
}
},
methods: {
onModeSwitch(key) {
this.filterMode = tabModeDict[key]
},
},
components: {
Notifications,
TabSwitcher,
},
}
export default Interactions