Skip to content

Commit 268dd18

Browse files
authored
Fleet UI: Calendar settings page (#17593)
1 parent 0dacaa9 commit 268dd18

File tree

16 files changed

+528
-68
lines changed

16 files changed

+528
-68
lines changed

frontend/components/AddHostsModal/PlatformWrapper/_styles.scss

+2-10
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,7 @@
5151
}
5252

5353
&__copy-message {
54-
font-weight: $regular;
55-
vertical-align: top;
56-
background-color: $ui-light-grey;
57-
border: solid 1px #e2e4ea;
58-
border-radius: 10px;
59-
padding: 2px 6px;
54+
@include copy-message;
6055
}
6156

6257
.buttons {
@@ -122,9 +117,6 @@
122117
}
123118

124119
&__copy-message {
125-
background-color: $ui-light-grey;
126-
border: solid 1px #e2e4ea;
127-
border-radius: 10px;
128-
padding: 2px 6px;
120+
@include copy-message;
129121
}
130122
}

frontend/components/EnrollSecrets/EnrollSecretTable/EnrollSecretRow/_styles.scss

+1-4
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,7 @@
4040
}
4141

4242
&__copy-message {
43-
background-color: $ui-light-grey;
44-
border: solid 1px #e2e4ea;
45-
border-radius: 10px;
46-
padding: 2px 6px;
43+
@include copy-message;
4744
}
4845

4946
&__action-overlay {

frontend/components/forms/fields/InputFieldHiddenContent/_styles.scss

+1-4
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,6 @@
4343
}
4444

4545
&__copy-message {
46-
background-color: $ui-light-grey;
47-
border: solid 1px #e2e4ea;
48-
border-radius: 10px;
49-
padding: 2px 6px;
46+
@include copy-message;
5047
}
5148
}

frontend/interfaces/integration.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@ export interface IIntegrationFormErrors {
6161
}
6262

6363
export interface IGlobalCalendarIntegration {
64-
email: string;
65-
private_key: string;
6664
domain: string;
65+
api_key_json: string;
6766
}
6867

6968
interface ITeamCalendarSettings {

frontend/pages/AccountPage/APITokenModal/TokenSecretField/_styles.scss

+1-6
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,7 @@
3131
}
3232

3333
&__copy-message {
34-
font-weight: $regular;
35-
vertical-align: top;
36-
background-color: $ui-light-grey;
37-
border: solid 1px #e2e4ea;
38-
border-radius: 10px;
39-
padding: 2px 6px;
34+
@include copy-message;
4035
}
4136

4237
&__secret-download-icon {

frontend/pages/SoftwarePage/components/ManageSoftwareAutomationsModal/ManageSoftwareAutomationsModal.tsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import {
88
IJiraIntegration,
99
IZendeskIntegration,
1010
IIntegration,
11-
IIntegrations,
11+
IGlobalIntegrations,
1212
IIntegrationType,
1313
} from "interfaces/integration";
1414
import {
@@ -124,7 +124,7 @@ const ManageAutomationsModal = ({
124124
}
125125
}, [destinationUrl]);
126126

127-
const { data: integrations } = useQuery<IConfig, Error, IIntegrations>(
127+
const { data: integrations } = useQuery<IConfig, Error, IGlobalIntegrations>(
128128
["integrations"],
129129
() => configAPI.loadAll(),
130130
{

frontend/pages/admin/IntegrationsPage/IntegrationNavItems.tsx

+29-27
Original file line numberDiff line numberDiff line change
@@ -4,32 +4,34 @@ import { ISideNavItem } from "../components/SideNav/SideNav";
44
import Integrations from "./cards/Integrations";
55
import Mdm from "./cards/MdmSettings/MdmSettings";
66
import AutomaticEnrollment from "./cards/AutomaticEnrollment/AutomaticEnrollment";
7+
import Calendars from "./cards/Calendars/Calendars";
78

8-
const getFilteredIntegrationSettingsNavItems = (
9-
isSandboxMode = false
10-
): ISideNavItem<any>[] => {
11-
return [
12-
// TODO: types
13-
{
14-
title: "Ticket destinations",
15-
urlSection: "ticket-destinations",
16-
path: PATHS.ADMIN_INTEGRATIONS_TICKET_DESTINATIONS,
17-
Card: Integrations,
18-
},
19-
{
20-
title: "Mobile device management (MDM)",
21-
urlSection: "mdm",
22-
path: PATHS.ADMIN_INTEGRATIONS_MDM,
23-
Card: Mdm,
24-
exclude: isSandboxMode,
25-
},
26-
{
27-
title: "Automatic enrollment",
28-
urlSection: "automatic-enrollment",
29-
path: PATHS.ADMIN_INTEGRATIONS_AUTOMATIC_ENROLLMENT,
30-
Card: AutomaticEnrollment,
31-
},
32-
].filter((navItem) => !navItem.exclude);
33-
};
9+
const integrationSettingsNavItems: ISideNavItem<any>[] = [
10+
// TODO: types
11+
{
12+
title: "Ticket destinations",
13+
urlSection: "ticket-destinations",
14+
path: PATHS.ADMIN_INTEGRATIONS_TICKET_DESTINATIONS,
15+
Card: Integrations,
16+
},
17+
{
18+
title: "Mobile device management (MDM)",
19+
urlSection: "mdm",
20+
path: PATHS.ADMIN_INTEGRATIONS_MDM,
21+
Card: Mdm,
22+
},
23+
{
24+
title: "Automatic enrollment",
25+
urlSection: "automatic-enrollment",
26+
path: PATHS.ADMIN_INTEGRATIONS_AUTOMATIC_ENROLLMENT,
27+
Card: AutomaticEnrollment,
28+
},
29+
{
30+
title: "Calendars",
31+
urlSection: "calendars",
32+
path: PATHS.ADMIN_INTEGRATIONS_CALENDARS,
33+
Card: Calendars,
34+
},
35+
];
3436

35-
export default getFilteredIntegrationSettingsNavItems;
37+
export default integrationSettingsNavItems;

frontend/pages/admin/IntegrationsPage/IntegrationsPage.tsx

+3-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
import { AppContext } from "context/app";
2-
import React, { useContext } from "react";
1+
import React from "react";
32
import { InjectedRouter, Params } from "react-router/lib/Router";
43

54
import SideNav from "../components/SideNav";
6-
import getFilteredIntegrationSettingsNavItems from "./IntegrationNavItems";
5+
import integrationSettingsNavItems from "./IntegrationNavItems";
76

87
const baseClass = "integrations";
98

@@ -16,9 +15,8 @@ const IntegrationsPage = ({
1615
router,
1716
params,
1817
}: IIntegrationSettingsPageProps) => {
19-
const { isSandboxMode } = useContext(AppContext);
2018
const { section } = params;
21-
const navItems = getFilteredIntegrationSettingsNavItems(isSandboxMode);
19+
const navItems = integrationSettingsNavItems;
2220
const DEFAULT_SETTINGS_SECTION = navItems[0];
2321
const currentSection =
2422
navItems.find((item) => item.urlSection === section) ??

0 commit comments

Comments
 (0)