Skip to content

Commit 00df0d3

Browse files
committed
set up deleting mdm profile
1 parent cba0383 commit 00df0d3

File tree

4 files changed

+51
-13
lines changed

4 files changed

+51
-13
lines changed

frontend/pages/ManageControlsPage/SetupExperience/cards/SetupAssistant/SetupAssistant.tsx

+10-3
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ const StartupAssistant = ({ currentTeamId }: ISetupAssistantProps) => {
5555
isLoading: isLoadingEnrollmentProfile,
5656
isError: isErrorEnrollmentProfile,
5757
error: enrollmentProfileError,
58+
refetch: refetchEnrollmentProfile,
5859
} = useQuery<IAppleSetupEnrollmentProfileResponse, AxiosError>(
5960
["enrollment_profile", currentTeamId],
6061
() => mdmAPI.getSetupEnrollmentProfile(currentTeamId),
@@ -73,9 +74,14 @@ const StartupAssistant = ({ currentTeamId }: ISetupAssistantProps) => {
7374
return teamConfig?.mdm?.macos_setup.enable_release_device_manually || false;
7475
};
7576

76-
const onUpload = () => {};
77+
const onUpload = () => {
78+
refetchEnrollmentProfile();
79+
};
7780

78-
const onDelete = () => {};
81+
const onDelete = () => {
82+
setShowDeleteProfileModal(false);
83+
refetchEnrollmentProfile();
84+
};
7985

8086
const defaultReleaseDeviceSetting = getReleaseDeviceSetting();
8187

@@ -103,7 +109,7 @@ const StartupAssistant = ({ currentTeamId }: ISetupAssistantProps) => {
103109
{enrollmentProfileNotFound ? (
104110
<SetupAssistantProfileUploader
105111
currentTeamId={currentTeamId}
106-
onUpload={() => 1}
112+
onUpload={onUpload}
107113
/>
108114
) : (
109115
<SetuAssistantProfileCard
@@ -125,6 +131,7 @@ const StartupAssistant = ({ currentTeamId }: ISetupAssistantProps) => {
125131
)}
126132
{showDeleteProfileModal && (
127133
<DeleteAutoEnrollmentProfile
134+
currentTeamId={currentTeamId}
128135
onDelete={onDelete}
129136
onCancel={() => setShowDeleteProfileModal(false)}
130137
/>

frontend/pages/ManageControlsPage/SetupExperience/cards/SetupAssistant/components/DeleteAutoEnrollmentProfile/DeleteAutoEnrollmentProfile.tsx

+20-3
Original file line numberDiff line numberDiff line change
@@ -1,25 +1,42 @@
1-
import React from "react";
1+
import React, { useContext } from "react";
2+
3+
import mdmAPI from "services/entities/mdm";
24

35
import Modal from "components/Modal";
46
import Button from "components/buttons/Button";
7+
import { render } from "@testing-library/react";
8+
import { NotificationContext } from "context/notification";
59

610
interface DeleteAutoEnrollProfileProps {
11+
currentTeamId: number;
712
onCancel: () => void;
813
onDelete: () => void;
914
}
1015

1116
const baseClass = "delete-auto-enrollment-profile-modal";
1217

1318
const DeleteAutoEnrollProfile = ({
19+
currentTeamId,
1420
onCancel,
1521
onDelete,
1622
}: DeleteAutoEnrollProfileProps) => {
23+
const { renderFlash } = useContext(NotificationContext);
24+
25+
const handleDelete = async () => {
26+
try {
27+
await mdmAPI.deleteSetupEnrollmentProfile(currentTeamId);
28+
renderFlash("success", "Successfully deleted!");
29+
} catch {
30+
renderFlash("error", "Couldn’t delete. Please try again.");
31+
}
32+
onDelete();
33+
};
34+
1735
return (
1836
<Modal
1937
className={baseClass}
2038
title="Delete automatic enrollment profile"
2139
onExit={onCancel}
22-
onEnter={() => onDelete()}
2340
>
2441
<>
2542
<p>Delete the automatic enrollment profile to upload a new one.</p>
@@ -28,7 +45,7 @@ const DeleteAutoEnrollProfile = ({
2845
automatically enroll with the default setup settings.
2946
</p>
3047
<div className="modal-cta-wrap">
31-
<Button type="button" onClick={() => onDelete()} variant="alert">
48+
<Button type="button" onClick={handleDelete} variant="alert">
3249
Delete
3350
</Button>
3451
<Button onClick={onCancel} variant="inverse-alert">

frontend/pages/ManageControlsPage/SetupExperience/cards/SetupAssistant/components/SetupAssistantProfileUploader/SetupAssistantProfileUploader.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,14 +34,14 @@ const SetupAssistantProfileUploader = ({
3434
const file = files[0];
3535

3636
// quick exit if the file type is incorrect
37-
if (!file.name.includes(".json")) {
37+
if (file.type !== "application/json") {
3838
renderFlash("error", UPLOAD_ERROR_MESSAGES.wrongType.message);
3939
setShowLoading(false);
4040
return;
4141
}
4242

4343
try {
44-
await mdmAPI.uploadBootstrapPackage(file, currentTeamId);
44+
await mdmAPI.uploadSetupEnrollmentProfile(file, currentTeamId);
4545
renderFlash("success", "Successfully uploaded!");
4646
onUpload();
4747
} catch (e) {

frontend/services/entities/mdm.ts

+19-5
Original file line numberDiff line numberDiff line change
@@ -263,14 +263,28 @@ const mdmService = {
263263
uploadSetupEnrollmentProfile: (file: File, teamId: number) => {
264264
const { MDM_APPLE_SETUP_ENROLLMENT_PROFILE } = endpoints;
265265

266-
const formData = new FormData();
267-
formData.append("profile", file);
268-
formData.append("team_id", teamId.toString());
269-
270-
return sendRequest("POST", MDM_APPLE_SETUP_ENROLLMENT_PROFILE, formData);
266+
const reader = new FileReader();
267+
reader.readAsText(file);
268+
269+
return new Promise((resolve) => {
270+
reader.addEventListener("load", () => {
271+
const body: Record<string, any> = {
272+
name: file.name,
273+
enrollment_profile: JSON.parse(reader.result as string),
274+
};
275+
if (teamId !== API_NO_TEAM_ID) {
276+
body.team_id = teamId;
277+
}
278+
resolve(sendRequest("POST", MDM_APPLE_SETUP_ENROLLMENT_PROFILE, body));
279+
});
280+
});
271281
},
272282
deleteSetupEnrollmentProfile: (teamId: number) => {
273283
const { MDM_APPLE_SETUP_ENROLLMENT_PROFILE } = endpoints;
284+
if (teamId === API_NO_TEAM_ID) {
285+
return sendRequest("DELETE", MDM_APPLE_SETUP_ENROLLMENT_PROFILE);
286+
}
287+
274288
const path = `${MDM_APPLE_SETUP_ENROLLMENT_PROFILE}?${buildQueryStringFromParams(
275289
{ team_id: teamId }
276290
)}`;

0 commit comments

Comments
 (0)