-
Notifications
You must be signed in to change notification settings - Fork 555
/
Copy pathContent.tsx
1012 lines (974 loc) · 37.2 KB
/
Content.tsx
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
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
import { useEffect, useState, useMemo, useRef, Suspense, useReducer, useCallback } from 'react';
import FileTable from './FileTable';
import { Button, Typography, Flex, StatusIndicator, useMediaQuery } from '@neo4j-ndl/react';
import { useCredentials } from '../context/UserCredentials';
import { useFileContext } from '../context/UsersFiles';
import { extractAPI } from '../utils/FileAPI';
import { BannerAlertProps, ContentProps, CustomFile, OptionType, chunkdata, FileTableHandle } from '../types';
import deleteAPI from '../services/DeleteFiles';
import { postProcessing } from '../services/PostProcessing';
import { triggerStatusUpdateAPI } from '../services/ServerSideStatusUpdateAPI';
import useServerSideEvent from '../hooks/useSse';
import {
batchSize,
buttonCaptions,
chatModeLables,
largeFileSize,
llms,
RETRY_OPIONS,
tooltips,
} from '../utils/Constants';
import ButtonWithToolTip from './UI/ButtonWithToolTip';
import DropdownComponent from './Dropdown';
import GraphViewModal from './Graph/GraphViewModal';
import { lazy } from 'react';
import FallBackDialog from './UI/FallBackDialog';
import DeletePopUp from './Popups/DeletePopUp/DeletePopUp';
import GraphEnhancementDialog from './Popups/GraphEnhancementDialog';
import { tokens } from '@neo4j-ndl/base';
import axios from 'axios';
import DatabaseStatusIcon from './UI/DatabaseStatusIcon';
import RetryConfirmationDialog from './Popups/RetryConfirmation/Index';
import retry from '../services/retry';
import { showErrorToast, showNormalToast, showSuccessToast } from '../utils/toasts';
import { useMessageContext } from '../context/UserMessages';
import PostProcessingToast from './Popups/GraphEnhancementDialog/PostProcessingCheckList/PostProcessingToast';
import { getChunkText } from '../services/getChunkText';
import ChunkPopUp from './Popups/ChunkPopUp';
import { isExpired, isFileReadyToProcess } from '../utils/Utils';
import { useHasSelections } from '../hooks/useHasSelections';
const ConfirmationDialog = lazy(() => import('./Popups/LargeFilePopUp/ConfirmationDialog'));
let afterFirstRender = false;
const Content: React.FC<ContentProps> = ({
showEnhancementDialog,
toggleEnhancementDialog,
setOpenConnection,
showDisconnectButton,
connectionStatus,
}) => {
const { breakpoints } = tokens;
const isTablet = useMediaQuery(`(min-width:${breakpoints.xs}) and (max-width: ${breakpoints.lg})`);
// const [init, setInit] = useState<boolean>(false);
const [openGraphView, setOpenGraphView] = useState<boolean>(false);
const [inspectedName, setInspectedName] = useState<string>('');
const [documentName, setDocumentName] = useState<string>('');
const [showConfirmationModal, setShowConfirmationModal] = useState<boolean>(false);
const [showExpirationModal, setShowExpirationModal] = useState<boolean>(false);
const [extractLoading, setIsExtractLoading] = useState<boolean>(false);
const { setUserCredentials, userCredentials, setConnectionStatus, isGdsActive, isReadOnlyUser, isGCSActive } =
useCredentials();
const [retryFile, setRetryFile] = useState<string>('');
const [retryLoading, setRetryLoading] = useState<boolean>(false);
const [showRetryPopup, toggleRetryPopup] = useReducer((state) => !state, false);
const [showChunkPopup, toggleChunkPopup] = useReducer((state) => !state, false);
const [chunksLoading, toggleChunksLoading] = useReducer((state) => !state, false);
const [currentPage, setCurrentPage] = useState<number>(0);
const [totalPageCount, setTotalPageCount] = useState<number | null>(null);
const [textChunks, setTextChunks] = useState<chunkdata[]>([]);
const [alertStateForRetry, setAlertStateForRetry] = useState<BannerAlertProps>({
showAlert: false,
alertType: 'neutral',
alertMessage: '',
});
const { setMessages } = useMessageContext();
const {
filesData,
setFilesData,
setModel,
selectedNodes,
selectedRels,
setSelectedNodes,
setRowSelection,
setSelectedRels,
postProcessingTasks,
queue,
processedCount,
setProcessedCount,
setchatModes,
model,
additionalInstructions,
setAdditionalInstructions,
} = useFileContext();
const [viewPoint, setViewPoint] = useState<'tableView' | 'showGraphView' | 'chatInfoView' | 'neighborView'>(
'tableView'
);
const [showDeletePopUp, setShowDeletePopUp] = useState<boolean>(false);
const [deleteLoading, setIsDeleteLoading] = useState<boolean>(false);
const hasSelections = useHasSelections(selectedNodes, selectedRels);
const { updateStatusForLargeFiles } = useServerSideEvent(
(inMinutes, time, fileName) => {
showNormalToast(`${fileName} will take approx ${time} ${inMinutes ? 'Min' : 'Sec'}`);
localStorage.setItem('alertShown', JSON.stringify(true));
},
(fileName) => {
showErrorToast(`${fileName} Failed to process`);
}
);
const childRef = useRef<FileTableHandle>(null);
const incrementPage = async () => {
setCurrentPage((prev) => prev + 1);
await getChunks(documentName, currentPage + 1);
};
const decrementPage = async () => {
setCurrentPage((prev) => prev - 1);
await getChunks(documentName, currentPage - 1);
};
useEffect(() => {
if (afterFirstRender) {
localStorage.setItem('processedCount', JSON.stringify({ db: userCredentials?.uri, count: processedCount }));
}
if (processedCount == batchSize && !isReadOnlyUser) {
handleGenerateGraph([], true);
}
if (processedCount === 1 && queue.isEmpty()) {
(async () => {
showNormalToast(
<PostProcessingToast
isGdsActive={isGdsActive}
postProcessingTasks={postProcessingTasks}
isSchema={hasSelections}
/>
);
try {
const payload = isGdsActive
? hasSelections
? postProcessingTasks.filter((task) => task !== 'graph_schema_consolidation')
: postProcessingTasks
: hasSelections
? postProcessingTasks.filter(
(task) => task !== 'graph_schema_consolidation' && task !== 'enable_communities'
)
: postProcessingTasks.filter((task) => task !== 'enable_communities');
if (payload.length) {
const response = await postProcessing(payload);
if (response.data.status === 'Success') {
const communityfiles = response.data?.data;
if (Array.isArray(communityfiles) && communityfiles.length) {
communityfiles?.forEach((c: any) => {
setFilesData((prev) => {
return prev.map((f) => {
if (f.name === c.filename) {
return {
...f,
chunkNodeCount: c.chunkNodeCount ?? 0,
entityNodeCount: c.entityNodeCount ?? 0,
communityNodeCount: c.communityNodeCount ?? 0,
chunkRelCount: c.chunkRelCount ?? 0,
entityEntityRelCount: c.entityEntityRelCount ?? 0,
communityRelCount: c.communityRelCount ?? 0,
nodesCount: c.nodeCount,
relationshipsCount: c.relationshipCount,
};
}
return f;
});
});
});
}
showSuccessToast('All Q&A functionality is available now.');
} else {
throw new Error(response.data.error);
}
}
} catch (error) {
if (error instanceof Error) {
showSuccessToast(error.message);
}
}
})();
}
}, [processedCount, userCredentials, queue, isReadOnlyUser, isGdsActive]);
useEffect(() => {
if (afterFirstRender) {
localStorage.setItem('waitingQueue', JSON.stringify({ db: userCredentials?.uri, queue: queue.items }));
}
afterFirstRender = true;
}, [queue.items.length, userCredentials]);
const handleDropdownChange = (selectedOption: OptionType | null | void) => {
if (selectedOption?.value) {
setModel(selectedOption?.value);
}
setFilesData((prevfiles) => {
return prevfiles.map((curfile) => {
return {
...curfile,
model:
curfile.status === 'New' || curfile.status === 'Ready to Reprocess'
? selectedOption?.value ?? ''
: curfile.model,
};
});
});
};
const getChunks = async (name: string, pageNo: number) => {
toggleChunksLoading();
const response = await getChunkText(name, pageNo);
setTextChunks(response.data.data.pageitems);
if (!totalPageCount) {
setTotalPageCount(response.data.data.total_pages);
}
toggleChunksLoading();
};
const extractData = async (uid: string, isselectedRows = false, filesTobeProcess: CustomFile[]) => {
if (!isselectedRows) {
const fileItem = filesData.find((f) => f.id == uid);
if (fileItem) {
setIsExtractLoading(true);
await extractHandler(fileItem, uid);
}
} else {
const fileItem = filesTobeProcess.find((f) => f.id == uid);
if (fileItem) {
setIsExtractLoading(true);
await extractHandler(fileItem, uid);
}
}
};
const extractHandler = async (fileItem: CustomFile, uid: string) => {
queue.remove(fileItem.name as string);
try {
setFilesData((prevfiles) =>
prevfiles.map((curfile) => {
if (curfile.id === uid) {
return {
...curfile,
status: 'Processing',
};
}
return curfile;
})
);
setRowSelection((prev) => {
const copiedobj = { ...prev };
for (const key in copiedobj) {
if (key == uid) {
copiedobj[key] = false;
}
}
return copiedobj;
});
if (fileItem.name != undefined && userCredentials != null) {
const { name } = fileItem;
triggerStatusUpdateAPI(
name as string,
userCredentials?.uri,
userCredentials?.userName,
userCredentials?.password,
userCredentials?.database,
updateStatusForLargeFiles
);
}
const apiResponse = await extractAPI(
fileItem.model,
fileItem.fileSource,
fileItem.retryOption ?? '',
fileItem.sourceUrl,
localStorage.getItem('accesskey'),
atob(localStorage.getItem('secretkey') ?? ''),
fileItem.name ?? '',
fileItem.gcsBucket ?? '',
fileItem.gcsBucketFolder ?? '',
selectedNodes.map((l) => l.value),
selectedRels.map((t) => t.value),
fileItem.googleProjectId,
fileItem.language,
fileItem.accessToken,
additionalInstructions
);
if (apiResponse?.status === 'Failed') {
let errorobj = { error: apiResponse.error, message: apiResponse.message, fileName: apiResponse.file_name };
throw new Error(JSON.stringify(errorobj));
} else if (fileItem.size != undefined && fileItem.size < largeFileSize) {
if (apiResponse.data.message) {
const apiRes = apiResponse.data.message;
showSuccessToast(apiRes);
}
setFilesData((prevfiles) => {
return prevfiles.map((curfile) => {
if (curfile.name == apiResponse?.data?.fileName) {
const apiRes = apiResponse?.data;
return {
...curfile,
processingProgress: apiRes?.processingTime?.toFixed(2),
processingTotalTime: apiRes?.processingTime?.toFixed(2),
status: apiRes?.status,
nodesCount: apiRes?.nodeCount,
relationshipsCount: apiRes?.relationshipCount,
model: apiRes?.model,
};
}
return curfile;
});
});
}
} catch (err: any) {
if (err instanceof Error) {
try {
const error = JSON.parse(err.message);
if (Object.keys(error).includes('fileName')) {
setProcessedCount((prev) => {
if (prev == batchSize) {
return batchSize - 1;
}
return prev + 1;
});
const { message, fileName } = error;
queue.remove(fileName);
const errorMessage = error.message;
showErrorToast(message);
setFilesData((prevfiles) =>
prevfiles.map((curfile) => {
if (curfile.name == fileName) {
return { ...curfile, status: 'Failed', errorMessage };
}
return curfile;
})
);
} else {
console.error('Unexpected error format:', error);
}
} catch (parseError) {
if (axios.isAxiosError(err)) {
const axiosErrorMessage = err.response?.data?.message || err.message;
console.error('Axios error occurred:', axiosErrorMessage);
} else {
console.error('An unexpected error occurred:', err.message);
}
}
} else {
console.error('An unknown error occurred:', err);
}
}
};
const triggerBatchProcessing = (
batch: CustomFile[],
selectedFiles: CustomFile[],
isSelectedFiles: boolean,
newCheck: boolean
) => {
const data = [];
showNormalToast(`Processing ${batch.length} files at a time.`);
for (let i = 0; i < batch.length; i++) {
if (newCheck) {
if (batch[i]?.status === 'New' || batch[i].status === 'Ready to Reprocess') {
data.push(extractData(batch[i].id, isSelectedFiles, selectedFiles as CustomFile[]));
}
} else {
data.push(extractData(batch[i].id, isSelectedFiles, selectedFiles as CustomFile[]));
}
}
return data;
};
const addFilesToQueue = async (remainingFiles: CustomFile[]) => {
if (!remainingFiles.length && postProcessingTasks.length) {
showNormalToast(
<PostProcessingToast
isGdsActive={isGdsActive}
postProcessingTasks={postProcessingTasks}
isSchema={hasSelections}
/>
);
try {
const response = await postProcessing(postProcessingTasks);
if (response.data.status === 'Success') {
const communityfiles = response.data?.data;
if (Array.isArray(communityfiles) && communityfiles.length) {
communityfiles?.forEach((c: any) => {
setFilesData((prev) => {
return prev.map((f) => {
if (f.name === c.filename) {
return {
...f,
chunkNodeCount: c.chunkNodeCount ?? 0,
entityNodeCount: c.entityNodeCount ?? 0,
communityNodeCount: c.communityNodeCount ?? 0,
chunkRelCount: c.chunkRelCount ?? 0,
entityEntityRelCount: c.entityEntityRelCount ?? 0,
communityRelCount: c.communityRelCount ?? 0,
nodesCount: c.nodeCount,
relationshipsCount: c.relationshipCount,
};
}
return f;
});
});
});
}
showSuccessToast('All Q&A functionality is available now.');
} else {
throw new Error(response.data.error);
}
} catch (error) {
if (error instanceof Error) {
showSuccessToast(error.message);
}
}
}
for (let index = 0; index < remainingFiles.length; index++) {
const f = remainingFiles[index];
setFilesData((prev) =>
prev.map((pf) => {
if (pf.id === f.id) {
return {
...pf,
status: 'Waiting',
};
}
return pf;
})
);
queue.enqueue(f);
}
};
const scheduleBatchWiseProcess = (selectedRows: CustomFile[], isSelectedFiles: boolean) => {
let data = [];
if (queue.size() > batchSize) {
const batch = queue.items.slice(0, batchSize);
data = triggerBatchProcessing(batch, selectedRows as CustomFile[], isSelectedFiles, false);
} else {
let mergedfiles = [...selectedRows];
let filesToProcess: CustomFile[] = [];
if (mergedfiles.length > batchSize) {
filesToProcess = mergedfiles.slice(0, batchSize);
const remainingFiles = [...(mergedfiles as CustomFile[])].splice(batchSize);
addFilesToQueue(remainingFiles);
} else {
filesToProcess = mergedfiles;
}
data = triggerBatchProcessing(filesToProcess, selectedRows as CustomFile[], isSelectedFiles, false);
}
return data;
};
/**
* Processes files in batches, respecting a maximum batch size.
*
* This function prioritizes processing files from the queue if it's not empty.
* If the queue is empty, it processes the provided `filesTobeProcessed`:
* - If the number of files exceeds the batch size, it processes a batch and queues the rest.
* - If the number of files is within the batch size, it processes them all.
* - If there are already files being processed, it adjusts the batch size to avoid exceeding the limit.
*
* @param filesTobeProcessed - The files to be processed.
* @param queueFiles - Whether to prioritize processing files from the queue. Defaults to false.
*/
const handleGenerateGraph = (filesTobeProcessed: CustomFile[], queueFiles: boolean = false) => {
let data = [];
const processingFilesCount = filesData.filter((f) => f.status === 'Processing').length;
if (filesTobeProcessed.length && !queueFiles && processingFilesCount < batchSize) {
if (!queue.isEmpty()) {
data = scheduleBatchWiseProcess(filesTobeProcessed as CustomFile[], true);
} else if (filesTobeProcessed.length > batchSize) {
const filesToProcess = filesTobeProcessed?.slice(0, batchSize) as CustomFile[];
data = triggerBatchProcessing(filesToProcess, filesTobeProcessed as CustomFile[], true, false);
const remainingFiles = [...(filesTobeProcessed as CustomFile[])].splice(batchSize);
addFilesToQueue(remainingFiles);
} else {
let filesTobeSchedule: CustomFile[] = filesTobeProcessed;
if (filesTobeProcessed.length + processingFilesCount > batchSize) {
filesTobeSchedule = filesTobeProcessed.slice(
0,
filesTobeProcessed.length + processingFilesCount - batchSize
) as CustomFile[];
const idstoexclude = new Set(filesTobeSchedule.map((f) => f.id));
const remainingFiles = [...(childRef.current?.getSelectedRows() as CustomFile[])].filter(
(f) => !idstoexclude.has(f.id)
);
addFilesToQueue(remainingFiles);
}
data = triggerBatchProcessing(filesTobeSchedule, filesTobeProcessed, true, true);
}
Promise.allSettled(data).then((_) => {
setIsExtractLoading(false);
});
} else if (queueFiles && !queue.isEmpty() && processingFilesCount < batchSize) {
data = scheduleBatchWiseProcess(queue.items, true);
Promise.allSettled(data).then((_) => {
setIsExtractLoading(false);
});
} else {
addFilesToQueue(filesTobeProcessed as CustomFile[]);
}
};
const processWaitingFilesOnRefresh = () => {
let data = [];
const processingFilesCount = filesData.filter((f) => f.status === 'Processing').length;
if (!queue.isEmpty() && processingFilesCount < batchSize) {
if (queue.size() > batchSize) {
const batch = queue.items.slice(0, batchSize);
data = triggerBatchProcessing(batch, queue.items as CustomFile[], true, false);
} else {
data = triggerBatchProcessing(queue.items, queue.items as CustomFile[], true, false);
}
Promise.allSettled(data).then((_) => {
setIsExtractLoading(false);
});
} else {
const selectedNewFiles = childRef.current
?.getSelectedRows()
.filter((f) => f.status === 'New' || f.status == 'Ready to Reprocess');
addFilesToQueue(selectedNewFiles as CustomFile[]);
}
};
const handleOpenGraphClick = () => {
const bloomUrl = process.env.VITE_BLOOM_URL;
const uriCoded = userCredentials?.uri.replace(/:\d+$/, '');
const connectURL = `${uriCoded?.split('//')[0]}//${userCredentials?.userName}@${uriCoded?.split('//')[1]}:${userCredentials?.port ?? '7687'
}`;
const encodedURL = encodeURIComponent(connectURL);
const replacedUrl = bloomUrl?.replace('{CONNECT_URL}', encodedURL);
window.open(replacedUrl, '_blank');
};
const handleGraphView = () => {
setOpenGraphView(true);
setViewPoint('showGraphView');
};
const disconnect = () => {
queue.clear();
const date = new Date();
setProcessedCount(0);
setConnectionStatus(false);
localStorage.removeItem('password');
localStorage.removeItem('selectedModel');
setUserCredentials({ uri: '', password: '', userName: '', database: '', email: '' });
setSelectedNodes([]);
setSelectedRels([]);
localStorage.removeItem('instructions');
setAdditionalInstructions('');
setMessages([
{
datetime: `${date.toLocaleDateString()} ${date.toLocaleTimeString()}`,
id: 2,
modes: {
'graph+vector+fulltext': {
message:
' Welcome to the Neo4j Knowledge Graph Chat. You can ask questions related to documents which have been completely processed.',
},
},
user: 'chatbot',
currentMode: 'graph+vector+fulltext',
},
]);
setchatModes([chatModeLables['graph+vector+fulltext']]);
};
const retryHandler = async (filename: string, retryoption: string) => {
try {
setRetryLoading(true);
const response = await retry(filename, retryoption);
setRetryLoading(false);
if (response.data.status === 'Failure') {
throw new Error(response.data.error);
} else if (
response.data.status === 'Success' &&
response.data?.message != undefined &&
(response.data?.message as string).includes('Chunks are not created')
) {
showNormalToast(response.data.message as string);
retryOnclose();
} else {
const isStartFromBegining = retryoption === RETRY_OPIONS[0] || retryoption === RETRY_OPIONS[1];
setFilesData((prev) => {
return prev.map((f) => {
return f.name === filename
? {
...f,
status: 'Ready to Reprocess',
processingProgress: isStartFromBegining ? 0 : f.processingProgress,
nodesCount: isStartFromBegining ? 0 : f.nodesCount,
relationshipsCount: isStartFromBegining ? 0 : f.relationshipsCount,
}
: f;
});
});
showSuccessToast(response.data.message as string);
retryOnclose();
}
} catch (error) {
setRetryLoading(false);
if (error instanceof Error) {
setAlertStateForRetry({
showAlert: true,
alertMessage: error.message,
alertType: 'danger',
});
}
}
};
const selectedfileslength = useMemo(
() => childRef.current?.getSelectedRows().length,
[childRef.current?.getSelectedRows()]
);
const newFilecheck = useMemo(
() =>
childRef.current?.getSelectedRows().filter((f) => f.status === 'New' || f.status == 'Ready to Reprocess').length,
[childRef.current?.getSelectedRows()]
);
const completedfileNo = useMemo(
() => childRef.current?.getSelectedRows().filter((f) => f.status === 'Completed').length,
[childRef.current?.getSelectedRows()]
);
const dropdowncheck = useMemo(
() => !filesData.some((f) => f.status === 'New' || f.status === 'Waiting' || f.status === 'Ready to Reprocess'),
[filesData]
);
const disableCheck = useMemo(
() => (!selectedfileslength ? dropdowncheck : !newFilecheck),
[selectedfileslength, filesData, newFilecheck]
);
const showGraphCheck = useMemo(
() => (selectedfileslength ? completedfileNo === 0 : true),
[selectedfileslength, completedfileNo]
);
const filesForProcessing = useMemo(() => {
let newstatusfiles: CustomFile[] = [];
const selectedRows = childRef.current?.getSelectedRows();
if (selectedRows?.length) {
for (let index = 0; index < selectedRows.length; index++) {
const parsedFile: CustomFile = selectedRows[index];
if (parsedFile.status === 'New' || parsedFile.status == 'Ready to Reprocess') {
newstatusfiles.push(parsedFile);
}
}
} else if (filesData.length) {
newstatusfiles = filesData.filter((f) => f.status === 'New' || f.status === 'Ready to Reprocess');
}
return newstatusfiles;
}, [filesData, childRef.current?.getSelectedRows()]);
const handleDeleteFiles = async (deleteEntities: boolean) => {
try {
setIsDeleteLoading(true);
const response = await deleteAPI(childRef.current?.getSelectedRows() as CustomFile[], deleteEntities);
queue.clear();
setProcessedCount(0);
setRowSelection({});
setIsDeleteLoading(false);
if (response.data.status == 'Success') {
showSuccessToast(response.data.message);
const filenames = childRef.current?.getSelectedRows().map((str) => str.name);
if (filenames?.length) {
for (let index = 0; index < filenames.length; index++) {
const name = filenames[index];
setFilesData((prev) => prev.filter((f) => f.name != name));
}
}
} else {
let errorobj = { error: response.data.error, message: response.data.message };
throw new Error(JSON.stringify(errorobj));
}
setShowDeletePopUp(false);
} catch (err) {
setIsDeleteLoading(false);
if (err instanceof Error) {
const error = JSON.parse(err.message);
const { message } = error;
showErrorToast(message);
console.log(err);
}
}
setShowDeletePopUp(false);
};
const onClickHandler = () => {
const selectedRows = childRef.current?.getSelectedRows();
if (selectedRows?.length) {
const expiredFilesExists = selectedRows.some(
(c) => isFileReadyToProcess(c, true) && isExpired((c?.createdAt as Date) ?? new Date()));
const largeFileExists = selectedRows.some(
(c) => isFileReadyToProcess(c, true) && typeof c.size === 'number' && c.size > largeFileSize
);
if (expiredFilesExists) {
setShowExpirationModal(true);
} else if (largeFileExists && isGCSActive) {
setShowConfirmationModal(true);
} else {
handleGenerateGraph(selectedRows.filter((f) => isFileReadyToProcess(f, false)));
}
} else if (filesData.length) {
const expiredFileExists = filesData.some((c) => isFileReadyToProcess(c, true) && isExpired(c?.createdAt as Date));
const largeFileExists = filesData.some(
(c) => isFileReadyToProcess(c, true) && typeof c.size === 'number' && c.size > largeFileSize
);
const selectAllNewFiles = filesData.filter((f) => isFileReadyToProcess(f, false));
const stringified = selectAllNewFiles.reduce((accu, f) => {
const key = f.id;
// @ts-ignore
accu[key] = true;
return accu;
}, {});
setRowSelection(stringified);
if (largeFileExists) {
setShowConfirmationModal(true);
} else if (expiredFileExists && isGCSActive) {
setShowExpirationModal(true);
} else {
handleGenerateGraph(filesData.filter((f) => isFileReadyToProcess(f, false)));
}
}
};
const retryOnclose = useCallback(() => {
setRetryFile('');
setAlertStateForRetry({
showAlert: false,
alertMessage: '',
alertType: 'neutral',
});
setRetryLoading(false);
toggleRetryPopup();
}, []);
const onBannerClose = useCallback(() => {
setAlertStateForRetry({
showAlert: false,
alertMessage: '',
alertType: 'neutral',
});
}, []);
return (
<>
<RetryConfirmationDialog
retryLoading={retryLoading}
retryHandler={retryHandler}
fileId={retryFile}
onClose={retryOnclose}
open={showRetryPopup}
onBannerClose={onBannerClose}
alertStatus={alertStateForRetry}
/>
{showConfirmationModal && filesForProcessing.length && (
<Suspense fallback={<FallBackDialog />}>
<ConfirmationDialog
open={showConfirmationModal}
largeFiles={filesForProcessing}
extractHandler={handleGenerateGraph}
onClose={() => setShowConfirmationModal(false)}
loading={extractLoading}
selectedRows={childRef.current?.getSelectedRows() as CustomFile[]}
isLargeDocumentAlert={true}
></ConfirmationDialog>
</Suspense>
)}
{showExpirationModal && filesForProcessing.length && (
<Suspense fallback={<FallBackDialog />}>
<ConfirmationDialog
open={showExpirationModal}
largeFiles={filesForProcessing}
extractHandler={handleGenerateGraph}
onClose={() => setShowExpirationModal(false)}
loading={extractLoading}
selectedRows={childRef.current?.getSelectedRows() as CustomFile[]}
isLargeDocumentAlert={false}
></ConfirmationDialog>
</Suspense>
)}
{showExpirationModal && filesForProcessing.length && (
<Suspense fallback={<FallBackDialog />}>
<ConfirmationDialog
open={showExpirationModal}
largeFiles={filesForProcessing}
extractHandler={handleGenerateGraph}
onClose={() => setShowExpirationModal(false)}
loading={extractLoading}
selectedRows={childRef.current?.getSelectedRows() as CustomFile[]}
isLargeDocumentAlert={false}
></ConfirmationDialog>
</Suspense>
)}
{showExpirationModal && filesForProcessing.length && (
<Suspense fallback={<FallBackDialog />}>
<ConfirmationDialog
open={showExpirationModal}
largeFiles={filesForProcessing}
extractHandler={handleGenerateGraph}
onClose={() => setShowExpirationModal(false)}
loading={extractLoading}
selectedRows={childRef.current?.getSelectedRows() as CustomFile[]}
isLargeDocumentAlert={false}
></ConfirmationDialog>
</Suspense>
)}
{showDeletePopUp && (
<DeletePopUp
open={showDeletePopUp}
no_of_files={selectedfileslength ?? 0}
deleteHandler={(delentities: boolean) => handleDeleteFiles(delentities)}
deleteCloseHandler={() => setShowDeletePopUp(false)}
loading={deleteLoading}
view='contentView'
></DeletePopUp>
)}
{showChunkPopup && (
<ChunkPopUp
chunksLoading={chunksLoading}
onClose={() => toggleChunkPopup()}
showChunkPopup={showChunkPopup}
chunks={textChunks}
incrementPage={incrementPage}
decrementPage={decrementPage}
currentPage={currentPage}
totalPageCount={totalPageCount}
></ChunkPopUp>
)}
{showEnhancementDialog && (
<GraphEnhancementDialog open={showEnhancementDialog} onClose={toggleEnhancementDialog}></GraphEnhancementDialog>
)}
<GraphViewModal
inspectedName={inspectedName}
open={openGraphView}
setGraphViewOpen={setOpenGraphView}
viewPoint={viewPoint}
selectedRows={childRef.current?.getSelectedRows()}
/>
<div className={`n-bg-palette-neutral-bg-default main-content-wrapper`}>
<Flex
className='w-full absolute top-0'
alignItems='center'
justifyContent='space-between'
flexDirection='row'
flexWrap='wrap'
>
<div className='connectionstatus__container'>
<span className='h6 px-1'>Neo4j connection {isReadOnlyUser ? '(Read only Mode)' : ''}</span>
<Typography variant='body-medium'>
<DatabaseStatusIcon
isConnected={connectionStatus}
isGdsActive={isGdsActive}
uri={userCredentials && userCredentials?.uri}
/>
<div className='pt-1 flex gap-1 items-center'>
<div>{!hasSelections ? <StatusIndicator type='danger' /> : <StatusIndicator type='success' />}</div>
<div>
{hasSelections ? (
<span className='n-body-small'>
{hasSelections} Graph Schema configured
{hasSelections ? `(${selectedNodes.length} Labels + ${selectedRels.length} Rel Types)` : ''}
</span>
) : (
<span className='n-body-small'>No Graph Schema configured</span>
)}
</div>
</div>
</Typography>
</div>
<div>
<ButtonWithToolTip
placement='top'
text='Enhance graph quality'
label='Graph Enhancemnet Settings'
className='mr-2.5'
onClick={toggleEnhancementDialog}
disabled={!connectionStatus || isReadOnlyUser}
size={isTablet ? 'small' : 'medium'}
>
Graph Enhancement
</ButtonWithToolTip>
{!connectionStatus ? (
<Button
size={isTablet ? 'small' : 'medium'}
className='mr-2.5'
onClick={() => setOpenConnection((prev) => ({ ...prev, openPopUp: true }))}
>
{buttonCaptions.connectToNeo4j}
</Button>
) : (
showDisconnectButton && (
<Button size={isTablet ? 'small' : 'medium'} className='mr-2.5' onClick={disconnect}>
{buttonCaptions.disconnect}
</Button>
)
)}
</div>
</Flex>
<FileTable
connectionStatus={connectionStatus}
setConnectionStatus={setConnectionStatus}
onInspect={(name) => {
setInspectedName(name);
setOpenGraphView(true);
setViewPoint('tableView');
}}
onRetry={(id) => {
setRetryFile(id);
toggleRetryPopup();
}}
onChunkView={async (name) => {
setDocumentName(name);
if (name != documentName) {
toggleChunkPopup();
if (totalPageCount) {
setTotalPageCount(null);
}
setCurrentPage(1);
await getChunks(name, 1);
}
}}
ref={childRef}
handleGenerateGraph={processWaitingFilesOnRefresh}
></FileTable>
<Flex
className={`p-2.5 mt-1.5 absolute bottom-0 w-full`}
justifyContent='space-between'
flexDirection={isTablet ? 'column' : 'row'}
>
<div>
<DropdownComponent
onSelect={handleDropdownChange}
options={llms ?? ['']}
placeholder='Select LLM Model'
defaultValue={model}
view='ContentView'
isDisabled={false}
/>
</div>
<Flex flexDirection='row' gap='4' className='self-end mb-2.5' flexWrap='wrap'>
<ButtonWithToolTip
text={tooltips.generateGraph}
placement='top'
label='generate graph'
onClick={onClickHandler}
disabled={disableCheck || isReadOnlyUser}
className='mr-0.5'
size={isTablet ? 'small' : 'medium'}
>
{buttonCaptions.generateGraph}{' '}
{selectedfileslength && !disableCheck && newFilecheck ? `(${newFilecheck})` : ''}
</ButtonWithToolTip>
<ButtonWithToolTip
text={tooltips.showGraph}
placement='top'
onClick={handleGraphView}
disabled={showGraphCheck}
className='mr-0.5'
label='show graph'
size={isTablet ? 'small' : 'medium'}
>
{buttonCaptions.showPreviewGraph} {selectedfileslength && completedfileNo ? `(${completedfileNo})` : ''}
</ButtonWithToolTip>
<ButtonWithToolTip
text={tooltips.bloomGraph}
placement='top'
onClick={handleOpenGraphClick}
disabled={!filesData.some((f) => f?.status === 'Completed')}
className='ml-0.5'
label='Open Graph with Bloom'
size={isTablet ? 'small' : 'medium'}
>
{buttonCaptions.exploreGraphWithBloom}
</ButtonWithToolTip>
<ButtonWithToolTip
text={
!selectedfileslength ? tooltips.deleteFile : `${selectedfileslength} ${tooltips.deleteSelectedFiles}`
}
placement='top'
onClick={() => setShowDeletePopUp(true)}
disabled={!selectedfileslength || isReadOnlyUser}
className='ml-0.5'
label='Delete Files'
size={isTablet ? 'small' : 'medium'}