aboutsummaryrefslogtreecommitdiff
path: root/src/components/interactions/interactions.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/interactions/interactions.vue')
-rw-r--r--src/components/interactions/interactions.vue25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/components/interactions/interactions.vue b/src/components/interactions/interactions.vue
new file mode 100644
index 00000000..751e5d40
--- /dev/null
+++ b/src/components/interactions/interactions.vue
@@ -0,0 +1,25 @@
+<template>
+ <div class="panel panel-default">
+ <div class="panel-heading">
+ <div class="title">
+ Interactions
+ </div>
+ </div>
+ <tab-switcher
+ ref="tabSwitcher"
+ :onSwitch="onModeSwitch"
+ >
+ <span data-tab-dummy data-filter="mentions" :label="$t('MENTIONS')"/>
+ <span data-tab-dummy data-filter="likes+repeats" :label="$t('LIKES AND REPEATS')"/>
+ <span data-tab-dummy data-filter="follows" :label="$t('FOLLOWS')"/>
+ </tab-switcher>
+ <Notifications
+ ref="notifications"
+ :noHeading="true"
+ :minimalMode="true"
+ :filterMode="filterMode"
+ />
+ </div>
+</template>
+
+<script src="./interactions.js"></script>