AykutSarac 3 anni fa
parent
commit
2e733e0d89
1 ha cambiato i file con 6 aggiunte e 4 eliminazioni
  1. 6 4
      src/utils/json-editor-parser.ts

+ 6 - 4
src/utils/json-editor-parser.ts

@@ -7,7 +7,7 @@ const extract = (
       String(++id)
       String(++id)
   )(0)
   )(0)
 ) => {
 ) => {
-  if (!os) return {};
+  if (!os) return [];
   return [os].flat().map((o) => {
   return [os].flat().map((o) => {
     const isObject = o instanceof Object;
     const isObject = o instanceof Object;
 
 
@@ -22,7 +22,9 @@ const extract = (
           ),
           ),
       parent: false,
       parent: false,
       children: Object.entries(o)
       children: Object.entries(o)
-        .filter(([k, v]) => Array.isArray(v) || typeof v === "object")
+        .filter(
+          ([k, v]) => v !== null && (Array.isArray(v) || typeof v === "object")
+        )
         .flatMap(([k, v]) => [
         .flatMap(([k, v]) => [
           {
           {
             id: nextId(),
             id: nextId(),
@@ -57,10 +59,10 @@ export const parser = (input: string | string[]) => {
     const mappedElements = extract(input);
     const mappedElements = extract(input);
     const res = [...flatten(mappedElements), ...relationships(mappedElements)];
     const res = [...flatten(mappedElements), ...relationships(mappedElements)];
 
 
-    console.log(res);
-
     return res;
     return res;
   } catch (error) {
   } catch (error) {
+    console.log(error);
+
     toast.error("An error occured while parsing JSON data!");
     toast.error("An error occured while parsing JSON data!");
     return [];
     return [];
   }
   }