1
1
import React , { useState } from "react" ;
2
2
import { useQuery } from "react-query" ;
3
+ import { AxiosError } from "axios" ;
3
4
4
5
import { IConfig } from "interfaces/config" ;
5
- import { API_NO_TEAM_ID , ITeam , ITeamConfig } from "interfaces/team" ;
6
+ import { API_NO_TEAM_ID , ITeamConfig } from "interfaces/team" ;
6
7
import configAPI from "services/entities/config" ;
7
8
import teamsAPI , { ILoadTeamResponse } from "services/entities/teams" ;
8
9
import mdmAPI , {
9
10
IAppleSetupEnrollmentProfileResponse ,
10
11
} from "services/entities/mdm" ;
12
+ import { DEFAULT_USE_QUERY_OPTIONS } from "utilities/constants" ;
11
13
12
14
import SectionHeader from "components/SectionHeader" ;
13
15
import Spinner from "components/Spinner" ;
@@ -18,8 +20,6 @@ import SetupAssistantProfileUploader from "./components/SetupAssistantProfileUpl
18
20
import SetuAssistantProfileCard from "./components/SetupAssistantProfileCard/SetupAssistantProfileCard" ;
19
21
import DeleteAutoEnrollmentProfile from "./components/DeleteAutoEnrollmentProfile" ;
20
22
import AdvancedOptionsForm from "./components/AdvancedOptionsForm" ;
21
- import { DEFAULT_USE_QUERY_OPTIONS } from "utilities/constants" ;
22
- import { Axios , AxiosError } from "axios" ;
23
23
24
24
const baseClass = "setup-assistant" ;
25
25
@@ -54,10 +54,14 @@ const StartupAssistant = ({ currentTeamId }: ISetupAssistantProps) => {
54
54
data : enrollmentProfileData ,
55
55
isLoading : isLoadingEnrollmentProfile ,
56
56
isError : isErrorEnrollmentProfile ,
57
+ error : enrollmentProfileError ,
57
58
} = useQuery < IAppleSetupEnrollmentProfileResponse , AxiosError > (
58
59
[ "enrollment_profile" , currentTeamId ] ,
59
60
( ) => mdmAPI . getSetupEnrollmentProfile ( currentTeamId ) ,
60
- DEFAULT_USE_QUERY_OPTIONS
61
+ {
62
+ ...DEFAULT_USE_QUERY_OPTIONS ,
63
+ retry : false ,
64
+ }
61
65
) ;
62
66
63
67
const getReleaseDeviceSetting = ( ) => {
@@ -75,10 +79,14 @@ const StartupAssistant = ({ currentTeamId }: ISetupAssistantProps) => {
75
79
76
80
const defaultReleaseDeviceSetting = getReleaseDeviceSetting ( ) ;
77
81
82
+ const isLoading =
83
+ isLoadingGlobalConfig || isLoadingTeamConfig || isLoadingEnrollmentProfile ;
84
+ const enrollmentProfileNotFound = enrollmentProfileError ?. status === 404 ;
85
+
78
86
return (
79
87
< div className = { baseClass } >
80
88
< SectionHeader title = "Setup assistant" />
81
- { isLoadingEnrollmentProfile ? (
89
+ { isLoading ? (
82
90
< Spinner />
83
91
) : (
84
92
< div className = { `${ baseClass } __content` } >
@@ -92,7 +100,7 @@ const StartupAssistant = ({ currentTeamId }: ISetupAssistantProps) => {
92
100
newTab
93
101
/>
94
102
</ p >
95
- { ! enrollmentProfileData ? (
103
+ { enrollmentProfileNotFound ? (
96
104
< SetupAssistantProfileUploader
97
105
currentTeamId = { currentTeamId }
98
106
onUpload = { ( ) => 1 }
0 commit comments