closes #136
This commit is contained in:
@@ -6,14 +6,17 @@ import { Report } from "../../_components/left/Report";
|
||||
import { Dme } from "(app)/pilot/_components/dme/Dme";
|
||||
import dynamic from "next/dynamic";
|
||||
import { ConnectedDispatcher } from "tracker/_components/ConnectedDispatcher";
|
||||
import { useQuery } from "@tanstack/react-query";
|
||||
import { useMutation, useQuery } from "@tanstack/react-query";
|
||||
import { usePilotConnectionStore } from "_store/pilot/connectionStore";
|
||||
import { getConnectedAircraftsAPI } from "_querys/aircrafts";
|
||||
import { checkSimulatorConnected, useDebounce } from "@repo/shared-components";
|
||||
import { Button, checkSimulatorConnected, useDebounce } from "@repo/shared-components";
|
||||
import { SimConnectionAlert } from "(app)/pilot/_components/SimConnectionAlert";
|
||||
import { SettingsBoard } from "_components/left/SettingsBoard";
|
||||
import { BugReport } from "_components/left/BugReport";
|
||||
import { useEffect, useState } from "react";
|
||||
import { useDmeStore } from "_store/pilot/dmeStore";
|
||||
import { sendMissionAPI } from "_querys/missions";
|
||||
import toast from "react-hot-toast";
|
||||
|
||||
const Map = dynamic(() => import("_components/map/Map"), {
|
||||
ssr: false,
|
||||
@@ -21,12 +24,29 @@ const Map = dynamic(() => import("_components/map/Map"), {
|
||||
|
||||
const PilotPage = () => {
|
||||
const { connectedAircraft, status } = usePilotConnectionStore((state) => state);
|
||||
const { latestMission } = useDmeStore((state) => state);
|
||||
// Query will be cached anyway, due to this, displayed Markers are in sync with own Aircraft connection-warning
|
||||
const { data: aircrafts } = useQuery({
|
||||
queryKey: ["aircrafts"],
|
||||
queryFn: () => getConnectedAircraftsAPI(),
|
||||
refetchInterval: 10_000,
|
||||
});
|
||||
const sendAlertMutation = useMutation({
|
||||
mutationKey: ["missions"],
|
||||
mutationFn: (params: {
|
||||
id: number;
|
||||
stationId?: number | undefined;
|
||||
vehicleName?: "RTW" | "POL" | "FW" | undefined;
|
||||
desktopOnly?: boolean | undefined;
|
||||
}) => sendMissionAPI(params.id, params),
|
||||
onError: (error) => {
|
||||
console.error(error);
|
||||
toast.error("Fehler beim Alarmieren");
|
||||
},
|
||||
onSuccess: (data) => {
|
||||
toast.success(data.message);
|
||||
},
|
||||
});
|
||||
const [shortlyConnected, setShortlyConnected] = useState(false);
|
||||
useDebounce(
|
||||
() => {
|
||||
@@ -76,7 +96,27 @@ const PilotPage = () => {
|
||||
</div>
|
||||
<div className="flex h-full w-1/3">
|
||||
<div className="bg-base-300 flex h-full w-full flex-col p-4">
|
||||
<h2 className="card-title mb-2">MRT & DME</h2>
|
||||
<div className="flex justify-between">
|
||||
<h2 className="card-title mb-2">MRT & DME</h2>
|
||||
<div
|
||||
className="tooltip tooltip-left mb-4"
|
||||
data-tip="Dadurch wird der Einsatz erneut an den Desktop-Client gesendet."
|
||||
>
|
||||
<Button
|
||||
className="btn btn-xs btn-outline"
|
||||
disabled={!latestMission}
|
||||
onClick={async () => {
|
||||
if (!latestMission) return;
|
||||
await sendAlertMutation.mutateAsync({
|
||||
id: latestMission.id,
|
||||
desktopOnly: false,
|
||||
});
|
||||
}}
|
||||
>
|
||||
Erneut senden
|
||||
</Button>
|
||||
</div>
|
||||
</div>
|
||||
<div className="card bg-base-200 mb-4 shadow-xl">
|
||||
<div className="card-body flex h-full w-full items-center justify-center">
|
||||
<div className="max-w-150">
|
||||
|
||||
Reference in New Issue
Block a user