From feb630ef1fbcfea0034f02c18472dfb082c7f784 Mon Sep 17 00:00:00 2001 From: Henry Jameson Date: Wed, 18 Jun 2025 17:55:08 +0300 Subject: [PATCH] forgotten files --- .../bubble_timeline/bubble_timeline.js | 18 ++++++++++++++++++ .../bubble_timeline/bubble_timeline.vue | 9 +++++++++ 2 files changed, 27 insertions(+) create mode 100644 src/components/bubble_timeline/bubble_timeline.js create mode 100644 src/components/bubble_timeline/bubble_timeline.vue diff --git a/src/components/bubble_timeline/bubble_timeline.js b/src/components/bubble_timeline/bubble_timeline.js new file mode 100644 index 000000000..6f73dd2b8 --- /dev/null +++ b/src/components/bubble_timeline/bubble_timeline.js @@ -0,0 +1,18 @@ +import Timeline from '../timeline/timeline.vue' +const BubbleTimeline = { + components: { + Timeline + }, + computed: { + timeline () { return this.$store.state.statuses.timelines.bubble } + }, + created () { + this.$store.dispatch('startFetchingTimeline', { timeline: 'bubble' }) + }, + unmounted () { + this.$store.dispatch('stopFetchingTimeline', 'bubble') + } + +} + +export default BubbleTimeline diff --git a/src/components/bubble_timeline/bubble_timeline.vue b/src/components/bubble_timeline/bubble_timeline.vue new file mode 100644 index 000000000..4aefa2729 --- /dev/null +++ b/src/components/bubble_timeline/bubble_timeline.vue @@ -0,0 +1,9 @@ + + +