mirror of https://github.com/status-im/consul.git
34 lines
802 B
JavaScript
34 lines
802 B
JavaScript
|
import Service, { inject as service } from '@ember/service';
|
||
|
import { get } from '@ember/object';
|
||
|
import lint from 'consul-ui/utils/editor/lint';
|
||
|
const MODES = [
|
||
|
{
|
||
|
name: 'JSON',
|
||
|
mime: 'application/json',
|
||
|
mode: 'javascript',
|
||
|
ext: ['json', 'map'],
|
||
|
alias: ['json5'],
|
||
|
},
|
||
|
{
|
||
|
name: 'HCL',
|
||
|
mime: 'text/x-ruby',
|
||
|
mode: 'ruby',
|
||
|
ext: ['rb'],
|
||
|
alias: ['jruby', 'macruby', 'rake', 'rb', 'rbx'],
|
||
|
},
|
||
|
{ name: 'YAML', mime: 'text/x-yaml', mode: 'yaml', ext: ['yaml', 'yml'], alias: ['yml'] },
|
||
|
];
|
||
|
|
||
|
export default Service.extend({
|
||
|
dom: service('dom'),
|
||
|
modes: function() {
|
||
|
return MODES;
|
||
|
},
|
||
|
lint: function() {
|
||
|
return lint(...arguments);
|
||
|
},
|
||
|
getEditor: function(element) {
|
||
|
return get(this, 'dom').element('textarea + div', element).CodeMirror;
|
||
|
},
|
||
|
});
|