Skip to content

Commit

Permalink
Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
KelvinTegelaar committed Dec 8, 2024
1 parent cb6323c commit 6ddd785
Show file tree
Hide file tree
Showing 14 changed files with 234 additions and 23 deletions.
2 changes: 0 additions & 2 deletions generate-placeholders.js
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,7 @@ const createPlaceholderPages = () => {
if (!fs.existsSync(filePath)) {
// Write the placeholder page
fs.writeFileSync(filePath, placeholderTemplate(title), "utf8");
console.log(`Created placeholder page at ${filePath}`);
} else {
console.log(`Placeholder page already exists at ${filePath}`);
}
});
};
Expand Down
37 changes: 37 additions & 0 deletions src/components/CippComponents/CippFormContactSelector.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
import React from "react";
import { CippFormComponent } from "./CippFormComponent";
import { useWatch } from "react-hook-form";
import { useSettings } from "../../hooks/use-settings";

export const CippFormContactSelector = ({
formControl,
name,
label,
allTenants = false,
multiple = false,
type = "multiple",
select,
addedField,
valueField,
...other
}) => {
const currentTenant = useWatch({ control: formControl.control, name: "tenantFilter" });
const selectedTenant = useSettings().currentTenant;
return (
<CippFormComponent
name={name}
label={label}
type="autoComplete"
formControl={formControl}
multiple={multiple}
api={{
addedField: addedField,
tenantFilter: currentTenant ? currentTenant.value : selectedTenant,
url: "/api/ListContacts",
labelField: (option) => `${option.displayName} (${option.mail})`,
valueField: valueField ? valueField : "id",
queryKey: `listcontacts-${currentTenant?.value ? currentTenant.value : selectedTenant}`,
}}
/>
);
};
1 change: 0 additions & 1 deletion src/components/CippFormPages/CippFormPage.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,6 @@ const CippFormPage = (props) => {
delete router.query.tenantFilter;

if (router.query) {
console.log(router.query);
const resetValues = {
...formControl.getValues(),
...router.query,
Expand Down
1 change: 0 additions & 1 deletion src/components/CippFormPages/CippJSONView.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,6 @@ function CippJsonView({ object = { "No Data Selected": "No Data Selected" }, typ
const intuneObj = intuneCollection.find(
(item) => item.id === setting.settingInstance.settingDefinitionId
);
console.log(setting.settingInstance);
const label = intuneObj?.displayName || setting.settingInstance.settingDefinitionId;
const value = setting.settingInstance?.simpleSettingValue?.value
? setting.settingInstance?.simpleSettingValue?.value
Expand Down
1 change: 0 additions & 1 deletion src/components/CippTable/CIPPTableToptoolbar.js
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,6 @@ export const CIPPTableToptoolbar = ({
if (filterType === "reset") {
table.resetGlobalFilter();
table.resetColumnFilters();
console.log(table);
}
};
return (
Expand Down
1 change: 0 additions & 1 deletion src/components/CippWizard/CippIntunePolicy.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ export const CippIntunePolicy = (props) => {
if (CATemplates.isSuccess && watcher?.value) {
const template = CATemplates.data.find((template) => template.GUID === watcher.value);
if (template) {
console.log(template);
const jsonTemplate = template.RAWJson ? JSON.parse(template.RAWJson) : null;
setJSONData(jsonTemplate);
formControl.setValue("RAWJson", template.RAWJson);
Expand Down
1 change: 0 additions & 1 deletion src/pages/cipp/logs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ const Page = () => {
const onSubmit = (data) => {
// Set filter states based on form submission
setFilterEnabled(data.toggleSwitch);
console.log(data.startDate);
setDateFilter(
data.startDate
? new Date(data.startDate * 1000).toISOString().split("T")[0].replace(/-/g, "")
Expand Down
3 changes: 0 additions & 3 deletions src/pages/cipp/settings/backup.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,6 @@ const Page = () => {

const NextBackupRun = (props) => {
const date = new Date(props.date * 1000);
console.log(date);
if (isNaN(date)) {
return "Not Scheduled";
} else {
Expand Down Expand Up @@ -104,12 +103,10 @@ const Page = () => {
},
{
onSuccess: (data) => {
console.log(data.data);
const jsonString = data?.data?.[0]?.Backup;
if (!jsonString) {
return;
}
console.log(jsonString);
const blob = new Blob([jsonString], { type: "application/json" });
const url = URL.createObjectURL(blob);
const a = document.createElement("a");
Expand Down
1 change: 0 additions & 1 deletion src/pages/endpoint/applications/list/add.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,6 @@ const ApplicationDeploymentForm = () => {

useEffect(() => {
//if the searchQuerySelection was succesful, fill in the fields.
console.log(searchQuerySelection);
if (searchQuerySelection) {
formControl.setValue("packagename", searchQuerySelection.value.packagename);
formControl.setValue("applicationName", searchQuerySelection.value.applicationName);
Expand Down
190 changes: 190 additions & 0 deletions src/pages/identity/administration/groups/edit.jsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,190 @@
import React, { useEffect } from "react";
import { Grid, Divider, Typography } from "@mui/material";
import { useForm, useWatch } from "react-hook-form";
import { Layout as DashboardLayout } from "/src/layouts/index.js";
import CippFormPage from "/src/components/CippFormPages/CippFormPage";
import CippFormComponent from "/src/components/CippComponents/CippFormComponent";
import { CippFormUserSelector } from "/src/components/CippComponents/CippFormUserSelector";
import { useRouter } from "next/router";
import { ApiGetCall } from "../../../../api/ApiCall";
import { useSettings } from "../../../../hooks/use-settings";
import { CippFormContactSelector } from "../../../../components/CippComponents/CippFormContactSelector";

const EditGroup = () => {
const router = useRouter();
const { groupId } = router.query;
const tenantFilter = useSettings().currentTenant;
const groupInfo = ApiGetCall({
url: `/api/ListGroups?groupID=${groupId}&tenantFilter=${tenantFilter}&members=true&owners=true`,
queryKey: `ListGroups-${groupId}`,
waiting: false,
});

useEffect(() => {
if (groupId) {
groupInfo.refetch();
}
}, [router.query, groupId, tenantFilter]);

const formControl = useForm({
mode: "onChange",
defaultValues: {
tenantId: tenantFilter,
},
});
const groupType = useWatch({ control: formControl.control, name: "groupType" });

useEffect(() => {
if (groupInfo.isSuccess) {
const group = groupInfo.data?.groupInfo;
if (group) {
formControl.reset({
tenantId: tenantFilter,
allowExternal: group.allowExternal,
sendCopies: group.sendCopies,
groupName: group.displayName,
groupId: group.id,
groupType: (() => {
if (group.mailEnabled && group.securityEnabled) {
return "Mail-Enabled Security";
}
if (!group.mailEnabled && group.securityEnabled) {
return "Security";
}
if (group.groupTypes?.includes("Unified")) {
return "Microsoft 365";
}
if (
(!group.groupTypes || group.groupTypes.length === 0) &&
group.mailEnabled &&
!group.securityEnabled
) {
return "Distribution List";
}
return null; // Default case, if no condition is met
})(),
});
}
}
}, [groupInfo.isSuccess]);

return (
<Grid container spacing={2}>
<Grid item xs={12} md={6}>
<CippFormPage
formControl={formControl}
queryKey="EditGroup"
title="Edit Group"
backButtonTitle="Group Overview"
postUrl="/api/EditGroup"
>
<Typography variant="h6">Add</Typography>
<Grid container spacing={2}>
<Grid item xs={12}>
<CippFormUserSelector
formControl={formControl}
name="AddMember"
label="Add Member"
multiple={true}
valueField="userPrincipalName"
/>
</Grid>
<Grid item xs={12}>
<CippFormContactSelector
formControl={formControl}
name="AddContact"
label="Add Contact"
multiple={true}
/>
</Grid>
{/* AddOwners */}
<Grid item xs={12}>
<CippFormUserSelector
formControl={formControl}
name="AddOwner"
label="Add Owner"
multiple={true}
labelField={(option) => `${option.displayName} (${option.userPrincipalName})`}
valueField="userPrincipalName"
/>
</Grid>
<Divider sx={{ my: 2, width: "100%" }} />
<Grid item xs={12}>
<Typography variant="h6">Remove</Typography>

<CippFormComponent
type="autoComplete"
formControl={formControl}
isFetching={groupInfo.isFetching}
disabled={groupInfo.isFetching}
options={groupInfo.data?.members?.map((m) => ({
label: `${m.displayName} (${m.userPrincipalName})`,
value: m.userPrincipalName,
}))}
name="RemoveMember"
label="Remove Member"
multiple={true}
/>
</Grid>

{/* RemoveOwners */}
<Grid item xs={12}>
<CippFormComponent
type="autoComplete"
isFetching={groupInfo.isFetching}
disabled={groupInfo.isFetching}
options={groupInfo.data?.owners?.map((o) => ({
label: `${o.displayName} (${o.userPrincipalName})`,
value: o.userPrincipalName,
}))}
formControl={formControl}
name="RemoveOwner"
label="Remove Owner"
multiple={true}
/>
</Grid>

{/* RemoveContacts */}
<Grid item xs={12}>
<CippFormContactSelector
formControl={formControl}
name="RemoveContact"
label="Remove Contact"
multiple={true}
/>
</Grid>

<Divider sx={{ my: 2, width: "100%" }} />

{/* Conditional fields */}
{(groupType === "Microsoft 365" || groupType === "Distribution List") && (
<Grid item xs={12}>
<CippFormComponent
type="switch"
label="Let people outside the organization email the group"
name="allowExternal"
formControl={formControl}
/>
</Grid>
)}

{groupType === "Microsoft 365" && (
<Grid item xs={12}>
<CippFormComponent
type="switch"
label="Send Copies of team emails and events to team members inboxes"
name="sendCopies"
formControl={formControl}
/>
</Grid>
)}
</Grid>
</CippFormPage>
</Grid>
</Grid>
);
};

EditGroup.getLayout = (page) => <DashboardLayout>{page}</DashboardLayout>;

export default EditGroup;
12 changes: 6 additions & 6 deletions src/pages/identity/administration/groups/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,18 +2,18 @@ import { Button } from "@mui/material";
import { CippTablePage } from "/src/components/CippComponents/CippTablePage.jsx";
import { Layout as DashboardLayout } from "/src/layouts/index.js";
import Link from "next/link";
import { EyeIcon } from "@heroicons/react/24/outline";

const Page = () => {
const pageTitle = "Groups";
const actions = [
{
//tested
label: "Edit Group",
type: "LINK",
link: "/[tenant]/identity/groups/[id]",
linkParams: {
tenant: "TenantFilter",
id: "mail",
},
link: "/identity/administration/groups/edit?groupId=[id]",
multiPost: false,
icon: <EyeIcon />,
color: "success",
},
{
label: "Hide from Global Address List",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ const Page = () => {
url: "/api/ExecCACheck",
relatedQueryKeys: `ExecCACheck-${tenant}-${userId}-${JSON.stringify(formParams)}`,
});
console.log(postRequest);
const onSubmit = (data) => {
//add userId and tenantFilter to the object
data.userId = {};
Expand Down
2 changes: 0 additions & 2 deletions src/pages/tenant/gdap-management/onboarding/start.js
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,6 @@ const Page = () => {

useEffect(() => {
if (currentRelationship?.value) {
console.log("useEffect");
var currentRoles = [];
if (currentInvite?.RoleMappings) {
currentRoles = currentInvite?.RoleMappings;
Expand Down Expand Up @@ -208,7 +207,6 @@ const Page = () => {
startOnboarding?.data?.data?.Status !== "succeeded" &&
startOnboarding?.data?.data?.Status !== "failed"
) {
console.log(startOnboarding?.data?.data?.Status);
const interval = setInterval(() => {
startOnboarding.mutate({
url: "/api/ExecOnboardTenant",
Expand Down
4 changes: 1 addition & 3 deletions src/pages/tenant/standards/bpa-report/builder.js
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,6 @@ const Page = () => {
processAutoComplete(cleanedData); // Apply the processing to the cleaned data

const jsonConfig = JSON.stringify(cleanedData, null, 2);
console.log("Cleaned Form Data:", jsonConfig);
addBPATemplate.mutate({ url: "/api/AddBPATemplate", data: cleanedData });
};

Expand All @@ -175,8 +174,7 @@ const Page = () => {
}
};

const onSubmit = (data) => {
};
const onSubmit = (data) => {};
return (
<>
<Head>
Expand Down

0 comments on commit 6ddd785

Please sign in to comment.