-
-
Notifications
You must be signed in to change notification settings - Fork 6.8k
Expand file tree
/
Copy pathCippJSONView.jsx
More file actions
272 lines (260 loc) · 9.14 KB
/
CippJSONView.jsx
File metadata and controls
272 lines (260 loc) · 9.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
import React, { useState, useEffect } from "react";
import {
Accordion,
AccordionSummary,
AccordionDetails,
IconButton,
Grid,
Typography,
Button,
} from "@mui/material";
import ExpandMoreIcon from "@mui/icons-material/ExpandMore";
import VisibilityIcon from "@mui/icons-material/Visibility";
import VisibilityOffIcon from "@mui/icons-material/VisibilityOff";
import { PropertyListItem } from "../property-list-item";
import { PropertyList } from "../property-list";
import { getCippTranslation } from "../../utils/get-cipp-translation";
import { getCippFormatting } from "../../utils/get-cipp-formatting";
import { CippCodeBlock } from "../CippComponents/CippCodeBlock";
import intuneCollection from "/src/data/intuneCollection.json";
const cleanObject = (obj) => {
if (Array.isArray(obj)) {
return obj
.map((item) => cleanObject(item))
.filter((item) => item !== null && item !== undefined && item !== "");
} else if (typeof obj === "object" && obj !== null) {
const cleanedObj = {};
Object.entries(obj).forEach(([key, value]) => {
const cleanedValue = cleanObject(value);
if (cleanedValue !== null && cleanedValue !== undefined && cleanedValue !== "") {
cleanedObj[key] = cleanedValue;
}
});
return Object.keys(cleanedObj).length > 0 ? cleanedObj : null;
} else {
return obj;
}
};
const renderListItems = (data, onItemClick) => {
return Object.entries(data).map(([key, value]) => {
if (Array.isArray(value)) {
return (
<PropertyListItem
key={key}
label={getCippTranslation(key)}
disabled={value.length === 0}
value={
<Button variant="text" onClick={() => onItemClick(value)}>
{value.length} item{value.length > 1 ? "s" : ""}
</Button>
}
/>
);
} else if (typeof value === "object" && value !== null) {
return (
<PropertyListItem
key={key}
label={getCippTranslation(key)}
value={
<Button variant="text" onClick={() => onItemClick(value)}>
View Details
</Button>
}
/>
);
} else {
return (
<PropertyListItem
key={key}
label={getCippTranslation(key)}
value={getCippFormatting(value, key)}
/>
);
}
});
};
function CippJsonView({
object = { "No Data Selected": "No Data Selected" },
type,
defaultOpen = false,
}) {
const [viewJson, setViewJson] = useState(false);
const [accordionOpen, setAccordionOpen] = useState(defaultOpen);
const [drilldownData, setDrilldownData] = useState([]);
const renderIntuneItems = (data) => {
const items = [];
const policyNameKey = ["Name", "DisplayName", "displayName", "name"].find((key) => key in data);
if (policyNameKey) {
items.push(
<PropertyListItem key="policyName" label="Policy Name" value={data[policyNameKey]} />
);
}
if (data.omaSettings) {
data.omaSettings.forEach((omaSetting, index) => {
items.push(
<PropertyListItem
key={`omaSetting-${index}`}
label={`${omaSetting.displayName} (${omaSetting.omaUri})`}
value={omaSetting.value}
/>
);
});
} else if (data.settings) {
data.settings.forEach((setting, index) => {
const settingInstance = setting.settingInstance;
const intuneObj = intuneCollection.find(
(item) => item.id === settingInstance.settingDefinitionId
);
// Handle groupSettingCollectionInstance
if (
settingInstance["@odata.type"] ===
"#microsoft.graph.deviceManagementConfigurationGroupSettingCollectionInstance" &&
settingInstance.groupSettingCollectionValue
) {
settingInstance.groupSettingCollectionValue.forEach((groupValue, gIndex) => {
if (groupValue.children && Array.isArray(groupValue.children)) {
groupValue.children.forEach((child, cIndex) => {
const childIntuneObj = intuneCollection.find(
(item) => item.id === child.settingDefinitionId
);
const label = childIntuneObj?.displayName || child.settingDefinitionId;
let value;
if (child.choiceSettingValue && child.choiceSettingValue.value) {
value =
childIntuneObj?.options?.find(
(option) => option.id === child.choiceSettingValue.value
)?.displayName || child.choiceSettingValue.value;
}
items.push(
<PropertyListItem
key={`setting-${index}-group-${gIndex}-child-${cIndex}`}
label={label}
value={value}
/>
);
});
}
});
} else if (settingInstance?.simpleSettingValue?.value) {
const label = intuneObj?.displayName || settingInstance.settingDefinitionId;
const value = settingInstance.simpleSettingValue.value;
items.push(<PropertyListItem key={`setting-${index}`} label={label} value={value} />);
} else if (settingInstance?.choiceSettingValue?.value) {
const label = intuneObj?.displayName || settingInstance.settingDefinitionId;
const optionValue =
intuneObj?.options?.find(
(option) => option.id === settingInstance.choiceSettingValue.value
)?.displayName || settingInstance.choiceSettingValue.value;
items.push(
<PropertyListItem key={`setting-${index}`} label={label} value={optionValue} />
);
} else {
const label = intuneObj?.displayName || settingInstance.settingDefinitionId;
items.push(
<PropertyListItem
key={`setting-${index}`}
label={label}
value="This setting could not be resolved"
/>
);
}
});
} else if (data.added) {
items.push(
<PropertyListItem
key="legacyPolicy"
label="Legacy Policy"
value="This is a legacy policy and the settings can only be shown in JSON format. Press the eye icon to view the JSON."
/>
);
} else {
Object.entries(data).forEach(([key, value]) => {
items.push(
<PropertyListItem
key={key}
label={getCippTranslation(key)}
value={getCippFormatting(value, key)}
/>
);
});
}
return items;
};
useEffect(() => {
if (!type && (object?.omaSettings || object?.settings || object?.added)) {
type = "intune";
}
const blacklist = [
"selectedOption",
"GUID",
"ID",
"id",
"noSubmitButton",
"createdDateTime",
"modifiedDateTime",
];
const cleanedObj = cleanObject(object);
const filteredObj = Object.fromEntries(
Object.entries(cleanedObj).filter(([key]) => !blacklist.includes(key))
);
setDrilldownData([filteredObj]);
}, [object]);
const toggleView = () => setViewJson(!viewJson);
const handleItemClick = (itemData, level) => {
const updatedData = drilldownData.slice(0, level + 1);
updatedData[level + 1] = itemData;
setDrilldownData(updatedData);
};
return (
<Accordion
variant="outlined"
expanded={accordionOpen}
onChange={() => setAccordionOpen(!accordionOpen)}
>
<AccordionSummary
expandIcon={<ExpandMoreIcon />}
sx={{ display: "flex", alignItems: "center" }}
>
<Typography variant="h6" sx={{ flexGrow: 1 }}>
Policy Details
</Typography>
</AccordionSummary>
<AccordionDetails>
<IconButton onClick={toggleView} sx={{ ml: 1 }}>
{viewJson ? <VisibilityOffIcon /> : <VisibilityIcon />}
</IconButton>
{viewJson ? (
<CippCodeBlock type="editor" code={JSON.stringify(cleanObject(object), null, 2)} />
) : (
<Grid container spacing={2}>
{drilldownData?.map((data, index) => (
<Grid
item
xs={12}
sm={type === "intune" ? 12 : 3}
key={index}
sx={{
//give a top border if the item is > 4, and add spacing between the top and bottom items
paddingTop: index === 0 ? 0 : 2,
borderTop: index >= 4 && type !== "intune" ? "1px solid lightgrey" : "none",
borderRight: index < drilldownData.length - 1 ? "1px solid lightgrey" : "none",
overflowWrap: "anywhere",
whiteSpace: "pre-line",
paddingRight: 2,
}}
>
{type !== "intune" && (
<PropertyList>
{renderListItems(data, (itemData) => handleItemClick(itemData, index))}
</PropertyList>
)}
{type === "intune" && <PropertyList>{renderIntuneItems(data)}</PropertyList>}
</Grid>
))}
</Grid>
)}
</AccordionDetails>
</Accordion>
);
}
export default CippJsonView;