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

vue-ace-xq

v0.0.2

Published

A Vue component for integrating ace editor using brace

Downloads

2

Readme

Vue2-Brace-Editor

A Vue components for Ace / Brace

Install

npm install vue2-brace-editor

Basic Usage


<template>
  // Full editor component
  <AceEditor
    :fontSize="14"
    :showPrintMargin="true"
    :showGutter="true"
    :highlightActiveLine="true"
    mode="javascript"
    theme="monokai"
    :onChange="onChange"
    name="editor"
    :editorProps="{$blockScrolling: true}"
  />

  // Split editor component
   <SplitEditor
    mode="javascript"
    theme="monokai"
    :splits="2"
    orientation="beside"
    name="editor"
    :editorProps="{$blockScrolling: true}"
  />
</template>

<script>
  import Vue from 'vue';
  import brace from 'brace';
  import { Ace as AceEditor, Split as SplitEditor } from 'vue2-brace-editor';

  import 'brace/mode/javascript';
  import 'brace/theme/monokai';

  export default {
    components: {
      AceEditor,
      SplitEditor,
    },
    $el: 'root',
    methods: {
      onChange(newValue) {
        console.log('change',newValue);
      }
    }
  }
</script>

Ace Editor - Full

This is the main component of Vue2-brace. It creates an instance of the Ace Editor.

Available Props

|Prop|Default|Type|Description| |-----|------|-----|-----| |name| 'brace-editor'| String |Unique Id to be used for the editor| |mode| ''| String |Language for parsing and code highlighting| |theme| ''| String |theme to use| |value | ''| String | value you want to populate in the code highlighter| |defaultValue | ''| String |Default value of the editor| |height| '500px'| String |CSS value for height| |width| '500px'| String |CSS value for width| |className| | String |custom className| |fontSize| 12| Number |pixel value for font-size| |showGutter| true| Boolean | show gutter | |showPrintMargin| true| Boolean| show print margin | |highlightActiveLine| true| Boolean| highlight active line| |focus| false| Boolean| whether to focus |cursorStart| 1| Number| the location of the cursor |wrapEnabled| false| Boolean | Wrapping lines| |readOnly| false| Boolean| make the editor read only | |minLines| | Number |Minimum number of lines to be displayed| |maxLines| | Number |Maximum number of lines to be displayed| |enableBasicAutocompletion| false| Boolean | Enable basic autocompletion| |enableLiveAutocompletion| false| Boolean | Enable live autocompletion| |tabSize| 4| Number| tabSize| |debounceChangePeriod| null| Number| A debounce delay period for the onChange event| |onLoad| | Function | called on editor load. The first argument is the instance of the editor | |onBeforeLoad| | Function | called before editor load. the first argument is an instance of ace| |onChange| | Function | occurs on document change it has 2 arguments the value and the event.| |onCopy| | Function | triggered by editor copy event, and passes text as argument| |onPaste| | Function | Triggered by editor paste event, and passes text as argument| |onSelectionChange| | Function | triggered by editor selectionChange event, and passes a Selection as it's first argument and the event as the second| |onCursorChange| | Function | triggered by editor changeCursor event, and passes a Selection as it's first argument and the event as the second| |onFocus| | Function | triggered by editor focus event| |onBlur| | Function | triggered by editor blur event.It has two arguments event and editor| |onInput| | Function | triggered by editor input event| |onScroll| | Function | triggered by editor scroll event| |onValidate| | Function | triggered, when annotations are changed| |editorProps| | Object | properties to apply directly to the Ace editor instance| |setOptions| | Object | options to apply directly to the Ace editor instance| |keyboardHandler| | String | corresponding to the keybinding mode to set (such as vim or emacs)| |commands| | Array | new commands to add to the editor |annotations| | Array | annotations to show in the editor i.e. [{ row: 0, column: 2, type: 'error', text: 'Some error.'}], displayed in the gutter| |markers| | Array | markers to show in the editor, i.e. [{ startRow: 0, startCol: 2, endRow: 1, endCol: 20, className: 'error-marker', type: 'background' }]| |style| | Object | camelCased properties |

Split Editor

This allows for a split editor which can create multiple linked instances of the Ace editor. Each instance shares a theme and other properties while having their own value.

Available Props

|Prop|Default|Type|Description| |-----|------|-----|-----| |name| 'brace-editor'| String |Unique Id to be used for the editor| |mode| ''| String |Language for parsing and code highlighting| |splits| 2 | Number | Number of views to have | |orientation| 'beside' | String | The orientation of the splits either beside or below | |theme| ''| String |theme to use| |value | ''| Array of Strings | value you want to populate in each code editor| |defaultValue | ''| Array of Strings |Default value for each editor| |height| '500px'| String |CSS value for height| |width| '500px'| String |CSS value for width| |className| | String |custom className| |fontSize| 12| Number |pixel value for font-size| |showGutter| true| Boolean | show gutter | |showPrintMargin| true| Boolean| show print margin | |highlightActiveLine| true| Boolean| highlight active line| |focus| false| Boolean| whether to focus |cursorStart| 1| Number| the location of the cursor |wrapEnabled| false| Boolean | Wrapping lines| |readOnly| false| Boolean| make the editor read only | |minLines| | Number |Minimum number of lines to be displayed| |maxLines| | Number |Maximum number of lines to be displayed| |enableBasicAutocompletion| false| Boolean | Enable basic autocompletion| |enableLiveAutocompletion| false| Boolean | Enable live autocompletion| |tabSize| 4| Number| tabSize| |onLoad| | Function | called on editor load. The first argument is the instance of the editor | |onBeforeLoad| | Function | called before editor load. the first argument is an instance of ace| |onChange| | Function | occurs on document change it has 2 arguments the value of each editor and the event.| |onCopy| | Function | triggered by editor copy event, and passes text as argument| |onPaste| | Function | Triggered by editor paste event, and passes text as argument| |onSelectionChange| | Function | triggered by editor selectionChange event, and passes a Selection as it's first argument and the event as the second| |onCursorChange| | Function | triggered by editor changeCursor event, and passes a Selection as it's first argument and the event as the second| |onFocus| | Function | triggered by editor focus event| |onBlur| | Function | triggered by editor blur event| |onInput| | Function | triggered by editor input event| |onScroll| | Function | triggered by editor scroll event| |editorProps| | Object | properties to apply directly to the Ace editor instance| |setOptions| | Object | options to apply directly to the Ace editor instance| |keyboardHandler| | String | corresponding to the keybinding mode to set (such as vim or emacs)| |commands| | Array | new commands to add to the editor |annotations| | Array of Arrays | annotations to show in the editor i.e. [{ row: 0, column: 2, type: 'error', text: 'Some error.'}], displayed in the gutter| |markers| | Array of Arrays | markers to show in the editor, i.e. [{ startRow: 0, startCol: 2, endRow: 1, endCol: 20, className: 'error-marker', type: 'background' }]| |style| | Object | camelCased properties |

How to contribute

To contribute, fork this repo to your private repository and create a pull request based on the feature you want to add. However ensure to follow the AirBnB coding style guide.

Disclaimer

This app and its functions are limited by time constraint and is in no way at its best.

FAQ

  • Can I fork this repository?
    • Yes you can.
  • Can I contribute to the project?
    • Yes you can, however it is advised you follow the AirBnB style guide for your PR to be considered being merged to the project
  • Can I modify the project, for usage?
    • This project is an open source project, so you can.

Dependencies

  • brace - browserify compatible version of the ace editor.

Authors

Hector Johnson - github.com/hector101

License

(The MIT License)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.