Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@graspologic/react
Advanced tools
Contains the react bindings for the graspologic-js renderer.
import React from 'react'
import { GraphView, Edges } from '@graspologic/react'
// Simple graph dataset
const GRAPH_DATA = {
nodes: [
{
id: 'A',
x: -10,
y: 10,
z: 0,
radius: 5,
// Format 0xBBGGRR
color: 0x00ff00,
},
{
id: 'B',
x: 10,
y: 10,
z: 0,
radius: 5,
// Format 0xBBGGRR
color: 0xff0000,
},
],
edges: [
{
source: 'A',
target: 'B',
weight: 1,
},
],
}
export default () => {
return (
<GraphView style={{ width: 200, height: 200 }} data={GRAPH_DATA}>
{/* Not necessary, but allows you to customize how edges are laid out */}
<Edges minWidth={5} maxWidth={5} alpha={1} />
</GraphView>
)
}
import React, { useState, useCallback, useMemo } from 'react'
import {
Axes,
GraphView,
Camera,
HighlightHoveredNode,
HandleNodeClicks,
NodeSetHighlight,
Edges,
Nodes,
} from '@graspologic/react'
import {
SettingsPane,
DisplaySettings,
EdgeSettings,
NodeSettings,
} from '@graspologic/render-controls-react'
export default () => {
const data = useMemo(() => getMyGraphData(), [])
// A function which takes a "group" property from a node and returns a color
const categoricalColorizer = useMemo(() => createColorizer(), [])
const [nodeIds, setNodeIds] = useState<string[]>([])
const handleVertexClick = useCallback(
(id: string | undefined) => {
console.log('click', id)
if (id) {
if (nodeIds.indexOf(id) === -1) {
setNodeIds([...nodeIds, id])
} else {
setNodeIds(nodeIds.filter(v => v !== id))
}
}
},
[nodeIds, setNodeIds],
)
return (
<GraphView style={{ width: 600, height: 300 }} data={data} colorizer={categoricalColorizer}>
{ /* Displays a set of Axes on the graph */}
<Axes />
{ /* Enables controlling of certain aspects of the camera */}
<Camera interactive />
{ /* Enables highlighting of the node that is being hovered over */}
<HighlightHoveredNode />
{ /* Enables handling of node click events */}
<HandleNodeClicks onClick={handleVertexClick} />
{/* Highlights the given set of node ids */}
<NodeSetHighlight vertexIds={nodeIds} />
{ /* Controls rendering of edges */ }
<Edges minWidth={5} maxWidth={5} alpha={1}/>
{ /* Controls rendering of nodes */ }
<Nodes minRadius={5} maxRadius={5} />
{/* Adds a settings pane that allows the user to configure the graph renderer on the fly */}
<SettingsPane>
{/* Adds a display settings section to the settings pane */}
<DisplaySettings />
{/* Adds a node settings section to the settings pane */}
<NodeSettings />
{/* Adds a edge settings section to the settings pane */}
<EdgeSettings />
</SettingsPane>
</GraphView>
)
}
See the API documentation or examples for additional examples.
FAQs
Graph Dataviz for React
The npm package @graspologic/react receives a total of 12 weekly downloads. As such, @graspologic/react popularity was classified as not popular.
We found that @graspologic/react demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.