-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Neo4J schema to contain info about vulnerable components * Update Neo4J schema to contain info about vulnerable components * FIltering works * New gitignore * WIP: Better import * remove file * Add CORS support * Iproved import flow * ImportForm - define name and version * WIP: Better import remove file Add CORS support Iproved import flow ImportForm - define name and version * Fix import API endpoint * WIP: Merge with filtering * Exclude local .env files * WIP: - upload shows progress bar - more resiliant upload form - upload gets its own snug id - project can be selected by URL - minor visual changes * Create DB contstraints * Introduce ProjectVersion type in DB * Update types * WIP: rewrite DBDataHelper * WIP: Rewrite import * Update types * WIP: continue with rewrite * WIP: Fix some bugs with submission * WIP: Can create components * WIP: probably broken * Working * Working import + vulnerabilities * WIP: working upload + visualization * Graph cleanup * FInalize import - progress bar * Colors improvement * Vulnerability detail improvement * Link Improvement * Different endpoint for FE /BE --------- Co-authored-by: Matej Groman <[email protected]>
- Loading branch information
Showing
47 changed files
with
2,269 additions
and
905 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import Link from 'next/link'; | ||
import { Container } from 'react-bootstrap'; | ||
|
||
export default function NoProjectFoundError(props) { | ||
return ( | ||
<Container className="mx-auto my-5 text-center"> | ||
<p className="fs-4 fw-bold">No project found!</p> | ||
<Link href="/upload">Upload SBOM</Link> | ||
</Container> | ||
); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
export type GraphConfig = { | ||
zoomLevel: number | ||
color: string | Function, | ||
label: string | Function, | ||
linkDirectionalArrowLength: number, | ||
linkDirectionalRelPos: number | ||
nodeVal: number | Function | ||
linkLength: number | ||
} | ||
zoomLevel: number; | ||
color: string | Function; | ||
label: string | Function; | ||
linkDirectionalArrowLength: number; | ||
linkDirectionalRelPos: number; | ||
nodeVal: number | Function; | ||
linkLength: number; | ||
showOnlyVulnerable: Boolean; | ||
}; |
Oops, something went wrong.