Socket
Socket
Sign inDemoInstall

ace-gremlin-editor-patch

Package Overview
Dependencies
0
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    ace-gremlin-editor-patch

基于 Ace 的 Gremlin 编辑器


Version published
Weekly downloads
3
Maintainers
1
Created
Weekly downloads
 

Readme

Source

Gremlin Editor

基于 Ace 的 React 版本的 Gremlin 编辑器。

用法

import React, { useState } from 'react';
import { GremlinEditor } from '../index';

export default () => {
  const [value, setValue] = useState('');
  const handleClick = (str: string) => {
    setValue(str)
  };
  return (
    <div>
      <h1 className="title">Page index</h1>
      <GremlinEditor
        height={500}
        gremlinId="test"
        initValue=""
        onValueChange={str => handleClick(str)}
      />
      <div>{value}</div>
    </div>
  );
};

配置项

ace-gremlin-editor 提供了以下配置项:

  • height:编辑器高度,默认 150px;
  • gremlinId:编辑器唯一标识,不能重复;
  • initValue:编辑器初始值,可为空;
  • showGutter:是否显示左侧的序号,默认为 true。

API

ace-gremlin-editor 提供了以下两个API:

  • onValueChange(value: string):编辑器内输入的值发生变化的回调函数;
  • onSelectChange(value: string):选择的内容发生变化后的回调函数。

Keywords

FAQs

Last updated on 30 Jun 2021

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc