Socket
Book a DemoInstallSign in
Socket

@baic/code-editor

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@baic/code-editor

各种代码编辑器

1.0.25
latest
Source
npmnpm
Version published
Maintainers
1
Created
Source

@baic/code-editor

基于 monaco-editor 的代码编辑器

安装

pnpm add @baic/code-editor

需要 webpack 插件配合

// 以 umi 为例
import { CodeEditorWebpackPlugin } from '@baic/code-editor';
export default {
  chainWebpack: (memo) => {
    memo
      .plugin('code-editor-webpack-plugin')
      .use(new CodeEditorWebpackPlugin());
  },
};

配置上下文

// 以 umi 为例
import type { ReactNode } from 'react';
/**
 * 因为编辑器比较重,上下文的引用最好直接引用原地址,index的export引用会造成内存过大
 */
import Provider as CodeEditorProvider from '@baic/code-editor/es/provider';

export const rootContainer = (container: ReactNode) => {
  return <CodeEditorProvider monacoEditorOptions={{}}>
    {container}
  <CodeEditorProvider>
}

基本使用

import { JSONEditor } from '@baic/code-editor';
export default () => (
  <div
    style={{
      height: 500,
    }}
  >
    <JSONEditor />
  </div>
);

新增提示词

import { Kind, SQLEditor } from '@baic/code-editor';
const hintData = {
  databases: [
    {
      content: 'bigdata',
      kind: Kind.Struct,
      tables: [
        {
          content: 'auth',
          fields: [
            {
              content: 'id',
              kind: Kind.Field,
            },
          ],
          kind: Kind.Folder,
        },
        {
          content: 'role',
          fields: [
            {
              content: 'id',
              kind: Kind.Field,
            },
          ],
          kind: Kind.Folder,
        },
      ],
    },
  ],
  keywords: [
    {
      content: 'SELECT',
      kind: Kind.Keyword,
    },
    {
      content: 'INSERT',
      kind: Kind.Keyword,
    },
    {
      content: 'UPDATE',
      kind: Kind.Keyword,
    },
  ],
};
export default () => (
  <div
    style={{
      height: 500,
    }}
  >
    <SQLEditor hintData={hintData} />
  </div>
);

Diff 使用

import { JSONEditor } from '@baic/code-editor';
export default () => (
  <div
    style={{
      height: 500,
    }}
  >
    <JSONEditor mode="diff" value="{}" original="{}" />
  </div>
);

FAQs

Package last updated on 11 Apr 2025

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.