Skip to content

Commit 1d39566

Browse files
committed
finish up download
1 parent 00df0d3 commit 1d39566

File tree

4 files changed

+28
-76
lines changed

4 files changed

+28
-76
lines changed

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -106,14 +106,14 @@ const StartupAssistant = ({ currentTeamId }: ISetupAssistantProps) => {
106106
newTab
107107
/>
108108
</p>
109-
{enrollmentProfileNotFound ? (
109+
{enrollmentProfileNotFound || !enrollmentProfileData ? (
110110
<SetupAssistantProfileUploader
111111
currentTeamId={currentTeamId}
112112
onUpload={onUpload}
113113
/>
114114
) : (
115115
<SetuAssistantProfileCard
116-
profileMetaData={1}
116+
profile={enrollmentProfileData}
117117
currentTeamId={currentTeamId}
118118
onDelete={() => setShowDeleteProfileModal(true)}
119119
/>

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

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ import mdmAPI from "services/entities/mdm";
44

55
import Modal from "components/Modal";
66
import Button from "components/buttons/Button";
7-
import { render } from "@testing-library/react";
87
import { NotificationContext } from "context/notification";
98

109
interface DeleteAutoEnrollProfileProps {

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

+26-60
Original file line numberDiff line numberDiff line change
@@ -1,92 +1,58 @@
11
import React from "react";
2+
import FileSaver from "file-saver";
23

3-
import URL_PREFIX from "router/url_prefix";
44
import { uploadedFromNow } from "utilities/date_format";
5-
import endpoints from "utilities/endpoints";
65

76
import Icon from "components/Icon";
87
import Card from "components/Card";
98
import Graphic from "components/Graphic";
109
import Button from "components/buttons/Button";
10+
import { IAppleSetupEnrollmentProfileResponse } from "services/entities/mdm";
1111

1212
const baseClass = "setup-assistant-profile-card";
13-
14-
interface ITestFormProps {
15-
url: string;
16-
token: string;
17-
className?: string;
18-
}
19-
20-
/**
21-
* This component abstracts away the downloading of the package. It implements this
22-
* with a browser form that calls the correct url to initiate the package download.
23-
* We do it this way as this allows us to take advantage of the browsers native
24-
* downloading UI instead of having to handle this in the Fleet UI.
25-
* TODO: make common component and use here and in DownloadInstallers.tsx.
26-
*/
27-
const DownloadPackageButton = ({ url, token, className }: ITestFormProps) => {
28-
return (
29-
<form
30-
key="form"
31-
method="GET"
32-
action={url}
33-
target="_self"
34-
className={className}
35-
>
36-
<input type="hidden" name="token" value={token || ""} />
37-
<Button
38-
variant="text-icon"
39-
type="submit"
40-
className={`${baseClass}__download-button`}
41-
>
42-
<Icon name="download" />
43-
</Button>
44-
</form>
45-
);
46-
};
47-
4813
interface ISetupAssistantProfileCardProps {
49-
profileMetaData: any;
50-
currentTeamId: number;
51-
onDelete: (packageMetaData: any) => void;
14+
profile: IAppleSetupEnrollmentProfileResponse;
15+
onDelete: () => void;
5216
}
5317

5418
const SetupAssistantProfileCard = ({
55-
profileMetaData,
56-
currentTeamId,
19+
profile,
5720
onDelete,
5821
}: ISetupAssistantProfileCardProps) => {
59-
profileMetaData = {
60-
title: "test-profile.json",
61-
created_at: "2021-08-25T20:00:00Z",
62-
token: "123-abc",
63-
};
22+
const onDownload = () => {
23+
const date = new Date();
24+
const filename = `${date.getFullYear()}-${date.getMonth()}-${date.getDate()}_${
25+
profile.name
26+
}`;
27+
const file = new global.window.File(
28+
[JSON.stringify(profile.enrollment_profile)],
29+
filename
30+
);
6431

65-
const { origin } = global.window.location;
66-
const path = `${endpoints.MDM_BOOTSTRAP_PACKAGE}`;
67-
const url = `${origin}${URL_PREFIX}/api${path}`;
32+
FileSaver.saveAs(file);
33+
};
6834

6935
return (
7036
<Card paddingSize="medium" className={baseClass}>
7137
<Graphic name="file-configuration-profile" />
7238
<div className={`${baseClass}__info`}>
73-
<span className={`${baseClass}__profile-name`}>
74-
{profileMetaData.title}
75-
</span>
39+
<span className={`${baseClass}__profile-name`}>{profile.name}</span>
7640
<span className={`${baseClass}__uploaded-at`}>
77-
{uploadedFromNow(profileMetaData.created_at)}
41+
{uploadedFromNow(profile.uploaded_at)}
7842
</span>
7943
</div>
8044
<div className={`${baseClass}__actions`}>
81-
<DownloadPackageButton
82-
className={`${baseClass}__download-package`}
83-
url={url}
84-
token={profileMetaData.token}
85-
/>
45+
<Button
46+
className={`${baseClass}__download-button`}
47+
variant="text-icon"
48+
onClick={onDownload}
49+
>
50+
<Icon name="download" />
51+
</Button>
8652
<Button
8753
className={`${baseClass}__delete-button`}
8854
variant="text-icon"
89-
onClick={() => onDelete(profileMetaData)}
55+
onClick={onDelete}
9056
>
9157
<Icon name="trash" color="ui-fleet-black-75" />
9258
</Button>

frontend/pages/ManageControlsPage/SetupExperience/cards/SetupAssistant/components/SetupAssistantProfileCard/_styles.scss

-13
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,4 @@
2727
&__download-button, &__delete-button {
2828
padding: 11px; // TODO: use a padding value from existing variables. talk to design.
2929
}
30-
31-
// needed these styles for the download button for some weird icon buttons
32-
// styles that are causing alignment issues
33-
&__download-package {
34-
button {
35-
margin: 0;
36-
height: auto;
37-
}
38-
39-
&:hover {
40-
cursor: pointer;
41-
}
42-
}
4330
}

0 commit comments

Comments
 (0)