3 Star 8 Fork 2

Gitee 极速下载 / Coditor

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
此仓库是为了提升国内下载速度的镜像仓库,每日同步一次。 原始仓库: https://github.com/davidenq/coditor
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README

Coditor

NPM Downloads

CHANGELOG to see more about recently changes.

Important

If you are interested in the old version, select coditor-old branch in this repo. if there is something that you think needs to be add on coditor, open an issue to have a discussion about that.

Introduction

Coditor is a multi-tab code editor as a component with extra features, now based on vue.js and codemirror.js

Features

  • Support a programming language for each tab (see here a list supported by codemirror)
  • Optional, you can make web request and handle response using vue-resource
  • Select a theme via setting for each tab or a single theme via a global setting for all tabs. (see here a list of themes for codemirror). Coditor has its own theme called with the same name. By default is set this theme, but you can customize this theme or select other theme.
  • Hack this webcomponent and customized with its own features.
  • Now you can work in mode development or generate assets for production. This is possible thanks to vue-template that contain several developement environments (test, build, dev)

Try online

click here

Install

  1. Install coditor
npm install coditor --save
  1. Install dependencies and dev-dependencies
cd coditor && npm install

Test in development mode

npm run dev

Your browser will be automatically launch into http://localhost:8080. By default is set javascript language, but if you need to add a new language, you need to add some line codes in main.js. See how to customize coditor.

Customize coditor for building assets

You need to customize your own preferences for coditor. This include:

  • switch to another theme if you want (by default coditor theme) (optional).
  • add a new themes for each tabs (optional).
  • add libraries for each programing languages that will be supported to your specific requirements.

Switch to another theme (for all tabs)

  1. Import theme into main.js inside the src folder.
    • all themes are inside node_modules/codemirror/theme/ So, you must import like any other js module. For example:
    //import monokai theme
    import monokai from 'codemirror/theme/monokai.css'
  2. Change the value of theme into config.json inside the src folder to the new value (monokai).

Add a new theme (for each tabs)

  1. See literal 1 to switch to another theme. You must import each themes that you want to use.

  2. You must specify for each props the theme that you want to use. (see props for coditor)

Add libraries for each programming languages

  1. Into main.js inside the src folder you must import each library that coditor should be support. See here all modes that support codemirror. For example:
  • Example 1: Add support for c, c++ and c# s
import clike from 'codemirror/mode/clike/clike.js'
  • Example 2: Add support for php
import php from 'codemirror/mode/php/php.js'
  1. Add in window object each mode (into main.js inside the src folder):
internals.loadCodeMirror = (() => {
  window.CodeMirror = Codemirror
  window.modejs = modejs
  window.clike = clike
  window.php = php
  // add support to a new programming language
})()

Now, you can specify in props what programming language will be use for each tab.

How to use request handle with ajax using vue-resource (optional)

Into config.json you must specify a type request (get, post, etc) and url.

For example:

{
  "theme": "coditor",
  "lineNumbers": true,
  "http": {
    "url": "",
    "type": "",
    "options": {
      "emulateHTTP": true,
      "emulateJSON": true
      }
  },
  "init": {
    "name": "tab init",
    "mode": "javascript",
    "value": "function helloWorld () {\n  console.log('Coditor');\n}"
  }
}

Or via props you must speficy a type request (get, post, etc) and url. For example:

coditor.http = {
  url: 'http://localhost:8080/post',
  type: 'get'
}

There are others settings for vue-resource (see here for more settings and type of request)

In development mode you can test this option. When you click get the current editor information button you will be receive a response from the server and it will be show in console. (only for methods get and post)

Build assets

Use npm run build to build the project minified version. Inside the dist folder will you have minified assets.

How to use coditor in your app

If you already built assets, continue with the tutorial. If you haven't already done so, please see how to customize coditor.

  1. Into your html page of their app should add the coditor tag on the html body and assets that was generated.
<!DOCTYPE html>
<html>

  <head>
    <meta charset="utf-8">
    <title>coditor</title>
    <link href=/static/css/app.bcbf3089697ef644d789a2bd1d4034b1.css rel=stylesheet>
  </head>

<body>
    <coditor></coditor>
    <script type=text/javascript src=/static/js/manifest.dc23b23c8948b8e3b634.js></script>
    <script type=text/javascript src=/static/js/vendor.23969caa477a638a5a0a.js></script>
    <script type=text/javascript src=/static/js/app.9219903ee545d47d5660.js></script>
</body>

Now, you can execute your application and by default you will see only one tab with the options that you configured into config.json or via props.

minimum props

type key value
[string] name a name whatever
[string] mode language programming

If you want init with a piece of code, you must specify a third key:value in settings:

type key value
string value piece of code

See below the basic and advanced settings.

Basic setting for each tab

To a basic configuration for each tab, you must specify minimum two values. (name and mode)

  • Create a script tag and into window object add new javascript object called coditor and on coditor object add a new value type array that contain settings for each tab. Example:
<script>
  window.coditor = {}
  coditor.cfg = [{
    name: 'Tab 1',
    mode: 'javascript'
  }, {
    name: 'Tab 2',
    mode: 'text/x-java'
  }];
</script>

Advanced setting for each tab

To have more control over the each tab, see here all configuration options for codemirror. (By default, theme is set with coditor theme and lineNumbers is true, but if you want, you can change this values)

Example advanced setting:

<script>
  window.coditor = {}
  coditor.cfg = [{
      name: 'Tab 1',
      value: 'function holaMundo () {\n  var name = "Coditor";\n  console.log(name);\n  console.log("at has been replaced");\n}',
      mode: 'text/javascript',
      lineNumbers: false
    }, {
      name: 'Tab 2',
      mode: 'text/x-java',
      theme: 'monokai'
    }];
</script>

window.coditor object

window.coditor object contain two values:

  • cfg: [array] contain props
  • value: [object] contain data about the information that was captured when clicked button (get the current editor information)

whether you specified http config or not, also will be have the value information that was captured when clicked button get the current editor information.

Screenshots

image1 image2 image3

Contributing

You are welcome to contribute to this repo with anything you think is useful. fixes are more than welcome.

Support

If you need help using coditor, or have found a bug, please create an issue on the GitHub repo

License

MIT Licence

空文件

简介

Coditor 是一个基于 Vue.js 和 CodeMirror 的多标签页代码编辑器 展开 收起
JavaScript 等 3 种语言
取消

发行版

暂无发行版

贡献者

全部

近期动态

加载更多
不能加载更多了
JavaScript
1
https://gitee.com/mirrors/Coditor.git
git@gitee.com:mirrors/Coditor.git
mirrors
Coditor
Coditor
master

搜索帮助