Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@giraud/rescript-react-diagram
Advanced tools
Easy to use automatic diagram layout component in react
Easy to use automatic diagram layout component in react.
I'm just playing with react-reconciler (as a learning exercise) and an automatic diagram layout algo (currently using dagre, it might change later since it is deprecated).
clone this project, then:
npm install
npm run build
npm run dev
Simple application demo can be found in the example
folder.
@react.component
let make = () =>
<Diagram width="300px" height="300px">
<Diagram.Node key="n1" nodeId="n1"> {"Node 1"->React.string} </Diagram.Node>
<Diagram.Node key="n2" nodeId="n2"> {"Node 2"->React.string} </Diagram.Node>
<Diagram.Edge key="n1-n2" source="n1" target="n2" label="edge" />
</Diagram>
Note: you need to provide your own css styling.
A more complex code sample that uses dynamic items:
let sample = "1|2|3||1-2|1-3"
let parse = instructions => {
instructions
->Js.String2.split("|")
->Belt.Array.keep(line => line->Js.String2.length > 0)
->Belt.Array.reduce(([], []), ((nodes, edges) as acc, line) => {
switch line->Js.String2.split("-") {
| [node] => (nodes->Belt.Array.concat([node]), edges)
| [source, target] => (nodes, edges->Belt.Array.concat([(source, target)]))
| _ => acc
}
})
}
let renderArray = (a, fn) => a->Belt.Array.map(fn)->React.array
module App = {
@react.component
let make = () => {
let (nodes, edges) = parse(sample)
<Diagram className="diagram" width="300px" height="300px">
{nodes->renderArray(nodeId =>
<Diagram.Node key={nodeId} nodeId={nodeId}>
{("Node " ++ nodeId)->React.string}
</Diagram.Node>
)}
{edges->renderArray(((source, target)) =>
<Diagram.Edge key={source ++ "-" ++ target} source target label="edge" />
)}
</Diagram>
}
}
FAQs
Easy to use automatic diagram layout component in react
The npm package @giraud/rescript-react-diagram receives a total of 0 weekly downloads. As such, @giraud/rescript-react-diagram popularity was classified as not popular.
We found that @giraud/rescript-react-diagram demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.