Skip to content

Commit

Permalink
Remove VideoRecorder widget
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaellehmkuhl committed Sep 5, 2023
1 parent 51b5f8d commit 4ac30d2
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 259 deletions.
254 changes: 0 additions & 254 deletions src/components/widgets/VideoRecorder.vue

This file was deleted.

1 change: 0 additions & 1 deletion src/types/widgets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export enum WidgetType {
Map = 'Map',
MiniWidgetsBar = 'MiniWidgetsBar',
VideoPlayer = 'VideoPlayer',
VideoRecorder = 'VideoRecorder',
}

export type Widget = {
Expand Down
4 changes: 0 additions & 4 deletions src/views/WidgetsView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,6 @@
<template v-if="widget.component === WidgetType.VideoPlayer">
<VideoPlayer :widget="widget" />
</template>
<template v-if="widget.component === WidgetType.VideoRecorder">
<VideoRecorder :widget="widget" />
</template>
<!-- TODO: Use the line below instead of the 12 lines above -->
<!-- <component :is="componentFromType(widget.component)"></component> -->
</WidgetHugger>
Expand All @@ -65,7 +62,6 @@ import Indicators from '../components/widgets/Indicators.vue'
import Map from '../components/widgets/Map.vue'
import MiniWidgetsBar from '../components/widgets/MiniWidgetsBar.vue'
import VideoPlayer from '../components/widgets/VideoPlayer.vue'
import VideoRecorder from '../components/widgets/VideoRecorder.vue'
const store = useWidgetManagerStore()
Expand Down

0 comments on commit 4ac30d2

Please sign in to comment.