npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

monaco-vue3-editor

v2.3.3

Published

monaco vue3 editor,集成了 monaco-promql,简单易用的代码编辑器。

Downloads

49

Readme

Monaco Editor Vue3

Monaco Editor is the code editor that powers VS Code, now it's available as a Vue3 component

Install

monaco-vue3-editor 依赖

{
  "peerDependencies": {
    "bkui-vue": "^0.0.2-beta.25",
    "monaco-editor": "^0.41.0",
    "vue": "^3.2.37"
  }
}

monaco-promql 根据项目情况添加

npm i monaco-vue3-editor monaco-editor

开启辅助功能

安装monaco-editor-webpack-plugin这个模块。

npm install monaco-editor-webpack-plugin

在webpack.config.js中进行配置,MonacoWebpackPlugin可以接受language和features来配置辅助功能,具体配置参数可以查看npm官网即可。

webpack

const MonacoWebpackPlugin = require('monaco-editor-webpack-plugin');

module.exports = {
    plugins: [
        new MonacoWebpackPlugin()
    ]
}

vue-cli bkui-cli

module.exports = {
    configureWebpack(_webpackConfig) {
        webpackConfig = _webpackConfig;
        webpackConfig.plugins.push(
            new MonacoWebpackPlugin({
                // available options are documented at https://github.com/Microsoft/monaco-editor-webpack-plugin#options
                languages: ['json', 'sql']
            }),
        )
    }
}

Usage

import { defineComponent, ref } from 'vue';
import MonacoEditor from 'monaco-vue3-editor';

export default defineComponent({
  name: 'Demo',
  setup() {
    const formData = ref({
      query_text: 'select * from andy',
    });
    return {
      formData,
    };
  },
  render() {
    return (
            <div class='full-page'>
                <div>title</div>
                <div style='height:400px;'>
                    <MonacoEditor
                        theme='vs-dark'
                        language='sql'
                        v-model={this.formData.query_text}
                    />
                </div>
            </div>
    );
  },

});

Props

| Name | Type | Default | Description | remark | |---------------|---------------|---------|----------------------------------------------------------------------------------------------------------------------------------------------------------| --- | | v-model | string | | default value of the current model | | | language | string | | language of the current model | languages supported by monaco-editor view here | | theme | string | vs-dark | VS code theme | theme of the monaco-editor | monaco.editor.defineTheme(...) | | diffEditor | boolean | false | | theme of the monaco-editor | monaco.editor.defineTheme(...) | | isShowHeader | boolean | true | whether show header | theme of the monaco-editor | monaco.editor.defineTheme(...) | | title | string | `` | title content | theme of the monaco-editor | monaco.editor.defineTheme(...) | | isShowToolbox | boolean | true | whether show Toolbox | theme of the monaco-editor | monaco.editor.defineTheme(...) | | isShowTooltips | boolean | true | whether show Toolbox Tooltips | theme of the monaco-editor | monaco.editor.defineTheme(...) | | currentLang | string | | Toolbox tooltips defualt lang | theme of the monaco-editor | monaco.editor.defineTheme(...) | | tooltips | object | | | | | options | object | {} | IStandaloneEditorConstructionOptions | | | width | number | string | 100% | container width | | | height | number | string | 100% | container height | | | onBeforeMount | (monaco: Monaco, dom:HTMLElement) => void | | execute before the editor instance is created | |

Event

| Name | Type | Default | Description | remark | |-----------------|-------------------------------------------------------------------------------|-----------|----------------------------------------------------------------------------------------------------------------------------------------------------------| --- | | onEditorMounted | (editor: monaco.editor.IStandaloneCodeEditor, monaco: Monaco,dom:HTMLElement) => void | | execute after the editor instance has been created | | | onChange | (value: string) | | | execute when the changed value change | monaco.editor.IModelContentChangedEvent) => void |

slots

| Name | Description |
|------------------|-------------------------| | loading | Before Monaco init show |
| tools | tools |
| title | title |

expose

 expose({
  isFull,
  style,
  editor,
  domRef,
  loading,
  clearMistake,
  formatContext,
  fullScreen,
  resize,
});

tooltips

tools tooltips

| props | value |
|--------|-------------------------| | format | Format |
| fullScreen | Full Screen |
| exitScreen | Exit Full Screen |
| adjustFontSize | Adjusting the font size |

function getTooltips() {
      if (props?.tooltips) {
        return props.tooltips;
      }
      const currentLang = props?.currentLang ?? localStorage.getItem('blueking_language');

      if (currentLang === 'en') {
        return {
          format: 'Format',
          fullScreen: 'Full Screen',
          exitScreen: 'Exit Full Screen',
          adjustFontSize: 'Adjusting the font size',
        };
      }
      return {
        format: '格式化',
        fullScreen: '全屏',
        exitScreen: '退出全屏',
        adjustFontSize: '调整字号大小',
      };
    }