forked from TryinTryin/supply-chain-interdependency-tool-1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
state-handler.js
445 lines (397 loc) · 13 KB
/
state-handler.js
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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
const process = require("process");
const { app, ipcMain, dialog } = require("electron");
const fs = require("fs-extra");
const Store = require("electron-store");
const store = new Store({ accessPropertiesByDotNotation: false });
const csvParser = require("csv-parser");
const csvSync = require("csv-parse/lib/sync");
const { parse } = require("json2csv");
const stripBom = require("strip-bom"); // Needed because fs has no encoding, like utf-8-sig in python, for files with BOM (byte order mark)
const stripBomStream = require("strip-bom-stream");
let mutableData = () => {
return {
suppliers: [],
products: [],
projects: [],
supplierResponses: {},
productResponses: {},
projectResponses: {}
};
};
let sessionData = {
supplierQuestions: [],
productQuestions: [],
projectQuestions: [],
...mutableData()
};
// Constants for file names that will contain the data.
const questionPaths = [
{ path: "/assets/supplier-questions.csv", type: "supplierQuestions" },
{ path: "/assets/product-questions.csv", type: "productQuestions" },
{ path: "/assets/project-questions.csv", type: "projectQuestions" }
];
const responsePaths = [
{ path: "supplier-responses.json", type: "supplierResponses" },
{ path: "product-responses.json", type: "productResponses" },
{ path: "project-responses.json", type: "projectResponses" }
];
const resourcePaths = [
{ path: "suppliers.csv", type: "suppliers" },
{ path: "products.csv", type: "products" },
{ path: "projects.csv", type: "projects" }
];
// Load any previuosly generated session data.
loadSessionData = () => {
const appPath = app.getPath("appData") + "/" + app.getName();
// If the C-SCRM app folder does not exist, create it.
if (!fs.existsSync(appPath)) {
fs.mkdirSync(appPath);
}
const dataPath = appPath + "/data";
// If the data folder does not exist, create it.
if (!fs.existsSync(dataPath)) {
fs.mkdirSync(dataPath);
}
// Load data given by user
resourcePaths.forEach(resource => {
loadCSVFileContents(dataPath + "/" + resource.path, resource.type, data => {
data.forEach(
d => d._cscrm_active && (d._cscrm_active = parseInt(d._cscrm_active))
);
return data;
});
});
// Load question data
questionPaths.forEach(questionItem => {
loadCSVFileContents(__dirname + "/" + questionItem.path, questionItem.type);
});
// Convert answers to json, instead of the 'value={number};label="Some text" | ...' strings
convertAnswers();
// Load response data
responsePaths.forEach(responseItem => {
loadJSONFileContents(dataPath + "/" + responseItem.path, responseItem.type);
});
// Add empty objects for to eventually hold responses for each supplier, product, and project.
createCorrespondingResponses();
};
const convertAnswers = () => {
let questionGroups = [
sessionData.supplierQuestions,
sessionData.productQuestions,
sessionData.projectQuestions
];
questionGroups.forEach(group => {
group.forEach(question => {
if (question.hasOwnProperty("Answers")) {
let answers = [];
let allAnswersString = question.Answers.trim();
let splitAnswers = allAnswersString.split(" | ");
splitAnswers.forEach(answerString => {
let splitAns = answerString.split(";");
if (splitAns.length == 2) {
let answerVal = Number(splitAns[0].replace("value=", ""));
let answerLabel = splitAns[1]
.replace("label=", "")
.replace(/\"/g, "");
answers.push({ val: answerVal, label: answerLabel });
}
});
question.Answers = answers;
}
});
});
};
const createCorrespondingResponses = () => {
let responseGroups = [
{
itemList: sessionData.suppliers,
responses: sessionData.supplierResponses
},
{ itemList: sessionData.products, responses: sessionData.productResponses },
{ itemList: sessionData.projects, responses: sessionData.projectResponses }
];
responseGroups.forEach(group => {
group.itemList.forEach(item => {
if (!group.responses.hasOwnProperty(item.ID)) {
group.responses[item.ID] = {};
}
});
});
};
const loadCSVFileContents = (path, itemType, cb) => {
let itemData = [];
if (fs.existsSync(path)) {
try {
let data = fs.readFileSync(path);
data = stripBom(data.toString());
try {
itemData = csvSync(data, { columns: true });
if (cb) {
itemData = cb(itemData);
}
updateSessionData(itemData, itemType);
} catch (csvErr) {
console.log("csv error with ", path);
}
} catch (err) {
console.log("error loading ", path, ", error: ", err);
}
}
};
const loadJSONFileContents = (path, itemType) => {
if (fs.existsSync(path)) {
try {
let data = JSON.parse(fs.readFileSync(path));
updateSessionData(data, itemType);
} catch (err) {
console.log(
"**loadJSONFileContents: error loading ",
path,
", error: ",
err
);
}
}
};
const saveSessionData = (event, type) => {
const appPath = app.getPath("appData") + "/" + app.getName();
// If the C-SCRM app folder does not exist, create it.
if (!fs.existsSync(appPath)) {
fs.mkdirSync(appPath);
}
const dataPath = appPath + "/data";
// If the data folder does not exist, create it.
if (!fs.existsSync(dataPath)) {
fs.mkdirSync(dataPath);
}
if (type === "resources") {
resourcePaths.forEach(resource => {
if (sessionData[resource.type].length > 0) {
try {
const csv = parse(sessionData[resource.type]);
fs.writeFile(dataPath + "/" + resource.path, csv, err => {
if (!err) {
console.log(resource.type, " saved");
event.sender.send("save-confirm", resource.type + " saved");
} else {
console.log("save write error: ", err);
event.sender.send("save-error", err);
}
});
} catch (csvErr) {
console.log("save csv error: ", csvErr);
event.sender.send("save-error", csvErr);
}
}
});
} else if (type === "responses") {
responsePaths.forEach(path => {
if (Object.keys(sessionData[path.type]).length > 0) {
let data = JSON.stringify(sessionData[path.type]);
fs.writeFile(dataPath + "/" + path.path, data, err => {
if (!err) {
console.log(path.type, " saved");
event.sender.send("save-confirm", path.type + " saved");
} else {
console.log("save error: ", err);
event.sender.send("save-error", err);
}
});
}
});
}
};
// required in import file header row
const REQUIRED_IMPORT_HEADERS = {
products: ["ID", "Name", "Supplier ID", "Project ID"],
suppliers: ["ID", "Name"],
projects: ["ID", "Level", "Name"]
};
// required fields for each data row in import file
const REQUIRED_IMPORT_FIELDS = {
products: ["ID", "Name"],
suppliers: ["ID", "Name"],
projects: ["ID", "Level", "Name"]
};
const validateImport = (data, type) => {
// types of validation errors:
// - empty import
// - imported data is not of correct type; does not have the headers required
// - all data has all required fields (subset of required headers)
// - no duplicate IDs
// - for product relations, no repeats
// see if any data at all
if (data.length === 0) {
return { success: false, error: "No data" };
}
// see if required fields even exist in file
const headersMissing = REQUIRED_IMPORT_HEADERS[type].filter(
field => data[0][field] == undefined
);
if (headersMissing.length > 0) {
return {
success: false,
error: `Missing in header row: ${headersMissing.join(", ")}`
};
}
// make sure all rows have required fields
const fieldsWithMissing = REQUIRED_IMPORT_FIELDS[type].filter(field =>
data.some(row => !row[field])
);
if (fieldsWithMissing.length > 0) {
return {
success: false,
error: `One or more rows missing these fields: ${fieldsWithMissing.join(
", "
)}`
};
}
// check for duplicate IDs
const allIds = new Set(data.map(row => row.ID));
if (allIds.size < data.length) {
return {
success: false,
error: "Import file rows cannot have duplicate IDs"
};
}
// the "|" character is reserved
if (
data.some(row => row.ID.indexOf("|") !== -1 || row.ID.indexOf(";") !== -1)
) {
return {
success: false,
error: 'IDs cannot contain the characters "|" or ";"'
};
}
// ensure valid relations (for products)
if (type === "products") {
const relationFields = ["Supplier ID", "Project ID"];
for (let i = 0; i < data.length; i++) {
const row = data[i];
for (let j = 0; j < relationFields.length; j++) {
const field = relationFields[j];
let relations = row[field].split(";");
// for product relations, check no duplicates
if (relations.length !== new Set(relations).size) {
return {
success: false,
error: `One or more rows have duplicate relations in ${field}`
};
}
// check no relation contains the reserved character "|"
if (relations.some(rel => rel.indexOf("|") !== -1)) {
return {
success: false,
error: `${field} relations cannot contain the character "|"`
};
}
}
}
}
return { success: true };
};
const updateSessionData = (data, type, keepInactive = false) => {
if (sessionData.hasOwnProperty(type)) {
if (keepInactive) {
const updated = data.map(d => {
return { ...d, _cscrm_active: 1 };
});
const updatedIds = new Set(updated.map(d => d.ID));
const inactive = sessionData[type].filter(d => !updatedIds.has(d.ID));
inactive.forEach(d => (d._cscrm_active = 0));
data = [...updated, ...inactive];
}
sessionData[type] = data;
} else {
console.error(
"updateSessionData() - sessionData does not have property: ",
type
);
}
return data;
};
// Functions and event handlers for communicating with data.
ipcMain.on("renderer-loaded", event => {
event.sender.send("init-state", sessionData);
const preferences = store.store;
event.sender.send("init-preferences", preferences);
//event.sender.send('app-loc', app.getPath('appData'));
});
ipcMain.on("update-preferences", (event, payload) => {
store.set(payload);
});
ipcMain.on("open-import", event => {
let importFile = dialog.showOpenDialog({ properties: ["openFile"] });
event.sender.send("return-import", importFile);
});
ipcMain.on("response-update", (event, changedResponses) => {
changedResponses.forEach(responseSet => {
Object.keys(responseSet).forEach(typeKey => {
Object.keys(responseSet[typeKey]).forEach(itemKey => {
sessionData[typeKey][itemKey] = responseSet[typeKey][itemKey];
});
});
});
saveSessionData(event, "responses");
});
ipcMain.on("asynchronous-file-load", (event, req) => {
let response = { error: null, data: [], type: null };
if (!req.type || !req.filePath) {
response.error = "Missing type or file path.";
event.sender.send("asynchronous-file-response", response);
} else {
const filePath = req.filePath;
const keepInactive = req.keepInactive;
response.type = req.type;
console.log("asynch file load, filePath: ", filePath);
if (filePath === null || typeof filePath === "undefined") {
response.error = "**ERROR** The file path was not given.";
event.sender.send("asynchronous-file-response", response);
} else {
if (filePath.endsWith(".csv")) {
try {
fs.createReadStream(filePath)
.pipe(stripBomStream())
.pipe(csvParser())
.on("data", data => {
response.data.push(data);
})
.on("end", () => {
const validation = validateImport(response.data, response.type);
if (validation.success) {
response.data = updateSessionData(
response.data,
response.type,
keepInactive
);
event.sender.send("asynchronous-file-response", response);
saveSessionData(event, "resources");
createCorrespondingResponses();
} else {
response.error = "**ERROR**" + validation.error;
event.sender.send("asynchronous-file-response", response);
}
});
} catch (err) {
response.error = "**ERROR**" + err;
event.sender.send("asynchronous-file-response", response);
}
} else {
response.error = "**ERROR** Not a CSV";
event.sender.send("asynchronous-file-response", response);
}
}
}
});
ipcMain.on("clear-all-data", (event, req) => {
const appPath = app.getPath("appData") + "/" + app.getName();
const dataPath = appPath + "/data";
// assume success?
fs.emptyDirSync(dataPath);
sessionData = {
...sessionData,
...mutableData()
};
store.clear();
event.sender.send("clear-all-data-response", { status: 0 });
});