Skip to content

Commit

Permalink
Allow syncing Cockpit profiles with the vehicle
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaellehmkuhl authored and patrickelectric committed Nov 20, 2023
1 parent 98d95c7 commit 4e3193d
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/components/EditMenu.vue
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@
<span class="mdi mdi-upload" />
</label>
</div>
<div
v-tooltip="'Export profiles to vehicle.'"
class="icon-btn mdi mdi-briefcase-upload"
@click="store.exportProfilesToVehicle"
/>
<div
v-tooltip="'Import profiles from vehicle.'"
class="icon-btn mdi mdi-briefcase-download"
@click="store.importProfilesFromVehicle"
/>
</div>
</div>
<div class="w-full h-px my-2 sm bg-slate-800/40" />
Expand Down
24 changes: 24 additions & 0 deletions src/stores/widgetManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,18 @@ import { computed, onBeforeMount, onBeforeUnmount, ref, watch } from 'vue'

import { widgetProfiles } from '@/assets/defaults'
import { miniWidgetsProfile } from '@/assets/defaults'
import { getKeyDataFromCockpitVehicleStorage, setKeyDataOnCockpitVehicleStorage } from '@/libs/blueos'
import * as Words from '@/libs/funny-name/words'
import { CockpitAction, registerActionCallback, unregisterActionCallback } from '@/libs/joystick/protocols'
import { isEqual } from '@/libs/utils'
import type { Point2D, SizeRect2D } from '@/types/general'
import type { MiniWidget, MiniWidgetContainer } from '@/types/miniWidgets'
import { type Profile, type View, type Widget, isProfile, isView, WidgetType } from '@/types/widgets'

import { useMainVehicleStore } from './mainVehicle'

export const useWidgetManagerStore = defineStore('widget-manager', () => {
const vehicleStore = useMainVehicleStore()
const editingMode = ref(false)
const showGrid = ref(true)
const gridInterval = ref(0.01)
Expand Down Expand Up @@ -159,6 +163,24 @@ export const useWidgetManagerStore = defineStore('widget-manager', () => {
reader.readAsText(e.target.files[0])
}

const importProfilesFromVehicle = async (): Promise<void> => {
const newProfiles = await getKeyDataFromCockpitVehicleStorage(
vehicleStore.globalAddress,
'cockpit-saved-profiles-v7'
)
savedProfiles.value = newProfiles
Swal.fire({ icon: 'success', text: 'Cockpit profiles imported from vehicle.', timer: 3000 })
}

const exportProfilesToVehicle = async (): Promise<void> => {
await setKeyDataOnCockpitVehicleStorage(
vehicleStore.globalAddress,
'cockpit-saved-profiles-v7',
savedProfiles.value
)
Swal.fire({ icon: 'success', text: 'Cockpit profiles exported to vehicle.', timer: 3000 })
}

/**
* Adds new view to the store, with a randomly generated hash with UUID4 pattern
*/
Expand Down Expand Up @@ -483,5 +505,7 @@ export const useWidgetManagerStore = defineStore('widget-manager', () => {
openWidgetConfigMenu,
toggleFullScreen,
isFullScreen,
importProfilesFromVehicle,
exportProfilesToVehicle,
}
})

0 comments on commit 4e3193d

Please sign in to comment.