|
1 | 1 | import React from "react";
|
| 2 | +import FileSaver from "file-saver"; |
2 | 3 |
|
3 |
| -import URL_PREFIX from "router/url_prefix"; |
4 | 4 | import { uploadedFromNow } from "utilities/date_format";
|
5 |
| -import endpoints from "utilities/endpoints"; |
6 | 5 |
|
7 | 6 | import Icon from "components/Icon";
|
8 | 7 | import Card from "components/Card";
|
9 | 8 | import Graphic from "components/Graphic";
|
10 | 9 | import Button from "components/buttons/Button";
|
| 10 | +import { IAppleSetupEnrollmentProfileResponse } from "services/entities/mdm"; |
11 | 11 |
|
12 | 12 | 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 |
| - |
48 | 13 | interface ISetupAssistantProfileCardProps {
|
49 |
| - profileMetaData: any; |
50 |
| - currentTeamId: number; |
51 |
| - onDelete: (packageMetaData: any) => void; |
| 14 | + profile: IAppleSetupEnrollmentProfileResponse; |
| 15 | + onDelete: () => void; |
52 | 16 | }
|
53 | 17 |
|
54 | 18 | const SetupAssistantProfileCard = ({
|
55 |
| - profileMetaData, |
56 |
| - currentTeamId, |
| 19 | + profile, |
57 | 20 | onDelete,
|
58 | 21 | }: 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 | + ); |
64 | 31 |
|
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 | + }; |
68 | 34 |
|
69 | 35 | return (
|
70 | 36 | <Card paddingSize="medium" className={baseClass}>
|
71 | 37 | <Graphic name="file-configuration-profile" />
|
72 | 38 | <div className={`${baseClass}__info`}>
|
73 |
| - <span className={`${baseClass}__profile-name`}> |
74 |
| - {profileMetaData.title} |
75 |
| - </span> |
| 39 | + <span className={`${baseClass}__profile-name`}>{profile.name}</span> |
76 | 40 | <span className={`${baseClass}__uploaded-at`}>
|
77 |
| - {uploadedFromNow(profileMetaData.created_at)} |
| 41 | + {uploadedFromNow(profile.uploaded_at)} |
78 | 42 | </span>
|
79 | 43 | </div>
|
80 | 44 | <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> |
86 | 52 | <Button
|
87 | 53 | className={`${baseClass}__delete-button`}
|
88 | 54 | variant="text-icon"
|
89 |
| - onClick={() => onDelete(profileMetaData)} |
| 55 | + onClick={onDelete} |
90 | 56 | >
|
91 | 57 | <Icon name="trash" color="ui-fleet-black-75" />
|
92 | 58 | </Button>
|
|
0 commit comments