Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add cockpit theme to mission planning #1365

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions src/stores/mainVehicle.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import { computed, reactive, ref, watch } from 'vue'

import { defaultGlobalAddress } from '@/assets/defaults'
import { useBlueOsStorage } from '@/composables/settingsSyncer'
import { useSnackbar } from '@/composables/snackbar'
import { altitude_setpoint } from '@/libs/altitude-slider'
import {
getCpuTempCelsius,
Expand Down Expand Up @@ -65,6 +66,8 @@ const defaultRtcConfiguration = {
iceServers: [],
} as RTCConfiguration

const { showSnackbar } = useSnackbar()

export const useMainVehicleStore = defineStore('main-vehicle', () => {
const controllerStore = useControllerStore()
const widgetStore = useWidgetManagerStore()
Expand Down Expand Up @@ -299,6 +302,7 @@ export const useMainVehicleStore = defineStore('main-vehicle', () => {
*/
async function clearMissions(): Promise<void> {
mainVehicle.value?.clearMissions()
showSnackbar({ message: 'Mission deleted from vehicle', variant: 'info' })
}

/**
Expand Down
7 changes: 7 additions & 0 deletions src/stores/mission.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ export const useMissionStore = defineStore('mission', () => {
)
}

const clearMission = (): void => {
currentPlanningWaypoints.splice(0)
missionName.value = ''
missionStartTime.value = new Date()
}

const changeUsername = async (): Promise<void> => {
let newUsername: string | undefined
try {
Expand Down Expand Up @@ -94,5 +100,6 @@ export const useMissionStore = defineStore('mission', () => {
slideEventsEnabled,
slideEventsCategoriesRequired,
moveWaypoint,
clearMission,
}
})
Loading
Loading