# Coditor **Repository Path**: mirrors/Coditor ## Basic Information - **Project Name**: Coditor - **Description**: Coditor 是一个基于 Vue.js 和 CodeMirror 的多标签页代码编辑器 - **Primary Language**: JavaScript - **License**: Not specified - **Default Branch**: master - **Homepage**: https://www.oschina.net/p/coditor - **GVP Project**: No ## Statistics - **Stars**: 8 - **Forks**: 2 - **Created**: 2018-05-21 - **Last Updated**: 2024-11-22 ## Categories & Tags **Categories**: text-editor **Tags**: None ## README # Coditor [](https://www.npmjs.com/package/coditor) [](http://npm-stat.com/charts.html?package=coditor) [CHANGELOG](https://github.com/davidenq/coditor/blob/master/CHANGELOG.md) 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](https://vuejs.org/) and [codemirror.js](https://codemirror.net/) ## Features - Support a programming language for each tab (see [here](https://codemirror.net/mode/index.html) 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](https://codemirror.net/theme/) 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](https://embed.plnkr.co/cuXFBw/) ## Install 1. Install coditor ```bash npm install coditor --save ``` 2. Install dependencies and dev-dependencies ```bash cd coditor && npm install ``` ## Test in development mode ```bash 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: ```javascript //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](https://codemirror.net/mode/index.html) all modes that support codemirror. For example: - Example 1: Add support for c, c++ and c# s ```javascript import clike from 'codemirror/mode/clike/clike.js' ``` - Example 2: Add support for php ```javascript import php from 'codemirror/mode/php/php.js' ``` 2. Add in window object each mode (into `main.js` inside the `src` folder): ```javascript 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: ```json { "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: ```javscript coditor.http = { url: 'http://localhost:8080/post', type: 'get' } ``` There are others settings for vue-resource (see [here](https://github.com/pagekit/vue-resource/tree/master/docs) 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. ```html