diff --git a/backend/api/Controllers/DeckController.cs b/backend/api/Controllers/InspectionAreaController.cs similarity index 100% rename from backend/api/Controllers/DeckController.cs rename to backend/api/Controllers/InspectionAreaController.cs diff --git a/backend/api/Controllers/Models/CreateDeckQuery.cs b/backend/api/Controllers/Models/CreateInspectionAreaQuery.cs similarity index 100% rename from backend/api/Controllers/Models/CreateDeckQuery.cs rename to backend/api/Controllers/Models/CreateInspectionAreaQuery.cs diff --git a/backend/api/Controllers/Models/DeckResponse.cs b/backend/api/Controllers/Models/InspectionAreaResponse.cs similarity index 100% rename from backend/api/Controllers/Models/DeckResponse.cs rename to backend/api/Controllers/Models/InspectionAreaResponse.cs diff --git a/backend/api/Database/Models/Deck.cs b/backend/api/Database/Models/InspectionArea.cs similarity index 100% rename from backend/api/Database/Models/Deck.cs rename to backend/api/Database/Models/InspectionArea.cs diff --git a/backend/api/Services/DeckService.cs b/backend/api/Services/InspectionAreaService.cs similarity index 100% rename from backend/api/Services/DeckService.cs rename to backend/api/Services/InspectionAreaService.cs diff --git a/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/ConfirmLocalizationDialog.tsx b/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/ConfirmLocalizationDialog.tsx index 7c210eba..786cc72c 100644 --- a/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/ConfirmLocalizationDialog.tsx +++ b/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/ConfirmLocalizationDialog.tsx @@ -1,5 +1,5 @@ import { Button, Checkbox, Dialog, Typography } from '@equinor/eds-core-react' -import { InspectionAreaMapView } from 'utils/DeckMapView' +import { InspectionAreaMapView } from 'utils/InspectionAreaMapView' import { HorizontalContent, StyledDialog, VerticalContent } from './ScheduleMissionStyles' import { useLanguageContext } from 'components/Contexts/LanguageContext' import { Robot } from 'models/Robot' diff --git a/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/ScheduleMissionWithLocalizationVerification.tsx b/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/ScheduleMissionWithLocalizationVerification.tsx index b2abdc5f..4bf3f489 100644 --- a/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/ScheduleMissionWithLocalizationVerification.tsx +++ b/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/ScheduleMissionWithLocalizationVerification.tsx @@ -5,7 +5,7 @@ import { ConflictingMissionInspectionAreasDialog, ConflictingRobotInspectionAreaDialog, } from './ConflictingLocalizationDialog' -import { UnknownInspectionAreaDialog } from './UnknownDeckDialog' +import { UnknownInspectionAreaDialog } from './UnknownInspectionAreaDialog' import { useRobotContext } from 'components/Contexts/RobotContext' import { useMissionsContext } from 'components/Contexts/MissionRunsContext' diff --git a/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/UnknownDeckDialog.tsx b/frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/UnknownInspectionAreaDialog.tsx similarity index 100% rename from frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/UnknownDeckDialog.tsx rename to frontend/src/components/Displays/ConfirmScheduleDialogs/LocalizationVerification/UnknownInspectionAreaDialog.tsx diff --git a/frontend/src/components/Pages/InspectionPage/DeckCards.tsx b/frontend/src/components/Pages/InspectionPage/InspectionAreaCards.tsx similarity index 100% rename from frontend/src/components/Pages/InspectionPage/DeckCards.tsx rename to frontend/src/components/Pages/InspectionPage/InspectionAreaCards.tsx diff --git a/frontend/src/components/Pages/InspectionPage/InspectionSection.tsx b/frontend/src/components/Pages/InspectionPage/InspectionSection.tsx index 2feefe76..8e5cccd0 100644 --- a/frontend/src/components/Pages/InspectionPage/InspectionSection.tsx +++ b/frontend/src/components/Pages/InspectionPage/InspectionSection.tsx @@ -1,12 +1,12 @@ import { useState, useEffect } from 'react' -import { InspectionArea } from 'models/Deck' +import { InspectionArea } from 'models/InspectionArea' import { useInstallationContext } from 'components/Contexts/InstallationContext' import { MissionDefinition } from 'models/MissionDefinition' import { ScheduleMissionDialog } from './ScheduleMissionDialogs' import { getInspectionDeadline } from 'utils/StringFormatting' import { InspectionTable } from './InspectionTable' import { StyledDict, compareInspections } from './InspectionUtilities' -import { InspectionAreaCards } from './DeckCards' +import { InspectionAreaCards } from './InspectionAreaCards' import { Area } from 'models/Area' import { useMissionsContext } from 'components/Contexts/MissionRunsContext' import { useMissionDefinitionsContext } from 'components/Contexts/MissionDefinitionsContext' diff --git a/frontend/src/models/Deck.ts b/frontend/src/models/InspectionArea.ts similarity index 100% rename from frontend/src/models/Deck.ts rename to frontend/src/models/InspectionArea.ts diff --git a/frontend/src/utils/DeckMapView.tsx b/frontend/src/utils/InspectionAreaMapView.tsx similarity index 100% rename from frontend/src/utils/DeckMapView.tsx rename to frontend/src/utils/InspectionAreaMapView.tsx