aboutsummaryrefslogtreecommitdiff
path: root/src/components/interactions/interactions.vue
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2019-05-14 22:38:16 +0300
committerHenry Jameson <me@hjkos.com>2019-05-14 22:48:44 +0300
commit543604fd2d107d3c6b7123e5713ac923eb76f23c (patch)
treed981ba4a7877689593a312c83c9d993187dc11ca /src/components/interactions/interactions.vue
parent2322610b62c8593e8ca71a2a8ae7057d4c39b480 (diff)
removed unused masto api, added initial version of interactions timeline
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>