Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@tokens-studio/graph-editor

Package Overview
Dependencies
Maintainers
0
Versions
38
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@tokens-studio/graph-editor

UI for the graph engine

  • 4.3.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
0
Created
Source

@tokens-studio/graph-editor

Version License

Description

Graph editor component

Installation

To use the @tokens-studio/graph-editor package in your project, you can install it via npm:

npm install @tokens-studio/graph-editor

Basic Usage

To use the exported editor component, make sure to import the global styles as well:

import React from 'react';
import { Editor } from '@tokens-studio/graph-editor';
//Load the required styles
import '@tokens-studio/graph-editor/dist/index.css';

function App() {
  return (
    <div>
      <Editor />
    </div>
  );
}

export default App;

API

The Editor component allows you to build and manage token resolver graphs in your application. Below is an example of how to use the Editor component along with its API.

import React, { useRef } from 'react';
import { Editor } from '@tokens-studio/graph-editor';
import '@tokens-studio/graph-editor/index.css'; // Make sure to import the global styles

function MyGraphEditor() {
  const editorRef = useRef(null);

  // Function to handle saving the graph
  const handleSave = () => {
    const editorState = editorRef.current.save();
    // Use the editorState containing nodes, edges, and node states as needed
    console.log(editorState);
  };

  // Function to handle loading the graph
  const handleLoad = () => {
    const data = /* Fetch your graph data */;
    editorRef.current.load(data);
  };

  return (
    <div>
      <Editor ref={editorRef} />

      {/* Buttons to trigger the save and load functions */}
      <button onClick={handleSave}>Save Graph</button>
      <button onClick={handleLoad}>Load Graph</button>
    </div>
  );
}

In the example above, we use the useRef hook to create a reference to the Editor component. This allows us to interact with the editor imperatively using the save() and load() functions.

save(): The save() function is called on the Editor component's ref, and it returns the current state of the editor. The state includes information about nodes, edges, and node states.

load(): The load(data) function allows you to load a specific graph data into the editor. You can fetch the data from an external source or use data from a previously saved state.

Development

We need to force the cypress react selector to use a version of resq that supports 18.2.0. This is done through resolutions and by manually adding it as a dev dependency

FAQs

Package last updated on 07 Nov 2024

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc