CodeMirror packaged for Meteor. CodeMirror is a versatile text editor implemented in JavaScript for the browser.
Put somewhere in your template:
<template name="EditorPage">
{{> CodeMirror id="some-id" name="someName" options=editorOptions code=editorCode reactiveVar="varName"}}
</template>
Parameters:
-
id
will be set to internal textarea element -
name
will be set to internal textarea element (useful in form submit) -
options
is CodeMirror options object -
code
is code to show in editor -
reactiveVar
optional name of Session variable, which is a reactive source of code
And provide helpers that returns CodeMirror options and content:
Template.EditorPage.helpers({
"editorOptions": function() {
return {
lineNumbers: true,
mode: "javascript"
}
},
"editorCode": function() {
return "Code to show in editor";
}
});
To get value from editor, just read value from the internal textarea:
Template.EditorPage.events({
"some event": function(e, t) {
var code = t.find("#some-id").value;
alert(code);
}
});
Or, if you provided reactiveVar
you can read session variable:
Template.EditorPage.helpers({
"getEditorText": function() {
return Session.get("varName"); // "varName" is variable name you provided to reactiveVar
}
});
Create textarea somewhere in your html template:
<template name="EditorPage">
<textarea id="myTextarea"></textarea>
</template>
Initialize CodeMirror somewhere from your js:
Template.EditorPage.rendered = function() {
var editor = CodeMirror.fromTextArea(this.find("#myTextarea"), {
lineNumbers: true,
mode: "javascript" // set any of supported language modes here
});
}
Deal with textarea as you normaly do with textarea, with exception that you cannot directly style textarea
element - so, wrap it into div
(that's because your textarea will be hidden and replaced by CodeMirror's own markup).
apl
asterisk
clike
clojure
cobol
commonlisp
coffeescript
css
cypher
d
diff
django
dtd
dylan
ecl
eiffel
erlang
fortran
gas
gfm
gherkin
go
groovy
haml
haskell
haxe
htmlembedded
htmlmixed
http
idl
jade
javascript
jinja2
julia
kotlin
livescript
lua
markdown
mirc
mllike
modelica
nginx
ntriples
octave
pascal
pegjs
perl
php
pig
properties
puppet
python
q
r
rpm
rst
ruby
rust
sass
scheme
shell
sieve
slim
smalltalk
smarty
smartymixed
solr
sparql
sql
stex
tcl
textile
tiddlywiki
tiki
toml
tornado
turtle
vb
vbscript
velocity
verilog
xml
xquery
yaml
z80
3024-day
3024-night
ambiance-mobile
ambiance
base16-dark
base16-light
blackboard
cobalt
eclipse
elegant
erlang-dark
lesser-dark
mbo
mdn-like
midnight
monokai
neat
neo
night
paraiso-dark
paraiso-light
pastel-on-dark
rubyblue
solarized
the-matrix
tomorrow-night-eighties
twilight
vibrant-ink
xq-dark
xq-light
emacs
sublime
vim
javascript
json
css
- Included search & replace addon
- Included "active line mode" addon
- Added
/addon/mode/overlay.js
required by gfm mode. Thanks to Keyan Zhang.
reactiveVar
now gets and sets session variable to/from editor text
- Fixed minor bug
- Fixed bug with
reactiveVar
That's it.