Skip to content

Commit

Permalink
Make mini-widgets in the bottom bar specific to each view
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaellehmkuhl committed Sep 6, 2023
1 parent 5568d3f commit 37a8505
Show file tree
Hide file tree
Showing 4 changed files with 73 additions and 46 deletions.
6 changes: 3 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -91,19 +91,19 @@
</div>
<div class="z-[60] w-full h-12 bg-slate-600/50 absolute flex bottom-0 backdrop-blur-[2px] justify-between">
<MiniWidgetContainer
:container="widgetStore.currentMiniWidgetsProfile.containers[1]"
:container="widgetStore.currentView.miniWidgetContainers[0]"
:allow-editing="widgetStore.editingMode"
align="start"
/>
<div />
<MiniWidgetContainer
:container="widgetStore.currentMiniWidgetsProfile.containers[2]"
:container="widgetStore.currentView.miniWidgetContainers[1]"
:allow-editing="widgetStore.editingMode"
align="center"
/>
<div />
<MiniWidgetContainer
:container="widgetStore.currentMiniWidgetsProfile.containers[3]"
:container="widgetStore.currentView.miniWidgetContainers[2]"
:allow-editing="widgetStore.editingMode"
align="end"
/>
Expand Down
96 changes: 56 additions & 40 deletions src/assets/defaults.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,48 @@ export const widgetProfiles: { [key: string]: Profile } = {
},
},
],
miniWidgetContainers: [
{
name: 'Bottom-left container',
widgets: [
{
hash: 'c6eb406b-8e3c-4ab9-a348-4ad5058352be',
component: MiniWidgetType.ViewSelector,
options: {},
},
],
},
{
name: 'Bottom-center container',
widgets: [
{
hash: 'c6eb406b-8e3c-4ab9-a348-4ad5058352be',
component: MiniWidgetType.DepthIndicator,
options: {},
},
],
},
{
name: 'Bottom-right container',
widgets: [
{
hash: '837a6722-1e54-4ace-9a92-d9c5af059d16',
component: MiniWidgetType.ArmerButton,
options: {},
},
{
hash: 'c6301929-cdfc-48af-9fdd-c87ce65d7395',
component: MiniWidgetType.ModeSelector,
options: {},
},
{
hash: 'a4d0d6ce-9978-40f2-89ab-958f91137177',
component: MiniWidgetType.MiniVideoRecorder,
options: {},
},
],
},
],
},
{
hash: 'f8a76470-9122-44f7-97f7-4555a59ee9c4',
Expand All @@ -114,6 +156,20 @@ export const widgetProfiles: { [key: string]: Profile } = {
options: {},
},
],
miniWidgetContainers: [
{
name: 'Bottom-left container',
widgets: [
{
hash: 'c6eb406b-8e3c-4ab9-a348-4ad5058352be',
component: MiniWidgetType.ViewSelector,
options: {},
},
],
},
{ name: 'Bottom-center container', widgets: [] },
{ name: 'Bottom-right container', widgets: [] },
],
},
],
},
Expand Down Expand Up @@ -144,46 +200,6 @@ export const miniWidgetsProfiles: MiniWidgetProfile[] = [
},
],
},
{
name: 'Bottom-left container',
widgets: [
{
hash: 'c6eb406b-8e3c-4ab9-a348-4ad5058352be',
component: MiniWidgetType.ViewSelector,
options: {},
},
],
},
{
name: 'Bottom-center container',
widgets: [
{
hash: 'c6eb406b-8e3c-4ab9-a348-4ad5058352be',
component: MiniWidgetType.DepthIndicator,
options: {},
},
],
},
{
name: 'Bottom-right container',
widgets: [
{
hash: '837a6722-1e54-4ace-9a92-d9c5af059d16',
component: MiniWidgetType.ArmerButton,
options: {},
},
{
hash: 'c6301929-cdfc-48af-9fdd-c87ce65d7395',
component: MiniWidgetType.ModeSelector,
options: {},
},
{
hash: 'a4d0d6ce-9978-40f2-89ab-958f91137177',
component: MiniWidgetType.MiniVideoRecorder,
options: {},
},
],
},
],
},
]
Expand Down
11 changes: 8 additions & 3 deletions src/stores/widgetManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,9 @@ export const useWidgetManagerStore = defineStore('widget-manager', () => {
const editingMode = ref(false)
const showGrid = ref(true)
const gridInterval = ref(0.01)
const currentProfile = useStorage('cockpit-current-profile-v3', widgetProfile)
const currentMiniWidgetsProfile = useStorage('cockpit-mini-widgets-profile', miniWidgetsProfile)
const savedProfiles = useStorage('cockpit-saved-profiles-v3', widgetProfiles)
const currentProfile = useStorage('cockpit-current-profile-v4', widgetProfile)
const currentMiniWidgetsProfile = useStorage('cockpit-mini-widgets-profile-v2', miniWidgetsProfile)
const savedProfiles = useStorage('cockpit-saved-profiles-v4', widgetProfiles)
const currentViewIndex = useStorage('cockpit-current-view-index', 0)

const currentView = computed<View>({
Expand Down Expand Up @@ -133,6 +133,11 @@ export const useWidgetManagerStore = defineStore('widget-manager', () => {
hash: uuid4(),
name: `${Words.animalsOcean.random()} view`,
widgets: [],
miniWidgetContainers: [
{ name: 'Bottom-left container', widgets: [] },
{ name: 'Bottom-center container', widgets: [] },
{ name: 'Bottom-right container', widgets: [] },
],
})
currentViewIndex.value = 0
}
Expand Down
6 changes: 6 additions & 0 deletions src/types/widgets.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import type { Point2D, SizeRect2D } from './general'
import type { MiniWidgetContainer } from './miniWidgets'

/**
* Available components to be used in the Widget system
Expand Down Expand Up @@ -81,6 +82,11 @@ export type View = {
* Array of widgets that are stored in the view
*/
widgets: Widget[]
/**
* Array of mini-widget containers associated with this view.
* Mainly used for storing the configuration of the mini-widgets in the bottom bar.
*/
miniWidgetContainers: MiniWidgetContainer[]
/**
* Editable name for the view
*/
Expand Down

0 comments on commit 37a8505

Please sign in to comment.