Commit 13de23ce authored by rockyl's avatar rockyl

prebuild

parent 9f0d5174
node_modules
dist/
# dist/
import assign from 'nano-assign';
var MonacoEditor = {
name: 'MonacoEditor',
props: {
original: String,
value: {
type: String,
required: true
},
theme: {
type: String,
"default": 'vs'
},
language: String,
options: Object,
amdRequire: {
type: Function
},
diffEditor: {
type: Boolean,
"default": false
}
},
model: {
event: 'change'
},
watch: {
options: {
deep: true,
handler: function handler(options) {
if (this.editor) {
var editor = this.getModifiedEditor();
editor.updateOptions(options);
}
}
},
value: function value(newValue) {
if (this.editor) {
var editor = this.getModifiedEditor();
if (newValue !== editor.getValue()) {
editor.setValue(newValue);
}
}
},
language: function language(newVal) {
if (this.editor) {
var editor = this.getModifiedEditor();
this.monaco.editor.setModelLanguage(editor.getModel(), newVal);
}
},
theme: function theme(newVal) {
if (this.editor) {
this.monaco.editor.setTheme(newVal);
}
}
},
mounted: function mounted() {
var _this = this;
if (this.amdRequire) {
this.amdRequire(['vs/editor/editor.main'], function () {
_this.monaco = window.monaco;
_this.initMonaco(window.monaco);
});
} else {
// ESM format so it can't be resolved by commonjs `require` in eslint
// eslint-disable-next-line import/no-unresolved
var monaco = require('monaco-editor');
this.monaco = monaco;
this.initMonaco(monaco);
}
},
beforeDestroy: function beforeDestroy() {
this.editor && this.editor.dispose();
},
methods: {
initMonaco: function initMonaco(monaco) {
var _this2 = this;
this.$emit('editorWillMount', this.monaco);
var options = assign({
value: this.value,
theme: this.theme,
language: this.language
}, this.options);
if (this.diffEditor) {
this.editor = monaco.editor.createDiffEditor(this.$el, options);
var originalModel = monaco.editor.createModel(this.original, this.language);
var modifiedModel = monaco.editor.createModel(this.value, this.language);
this.editor.setModel({
original: originalModel,
modified: modifiedModel
});
} else {
this.editor = monaco.editor.create(this.$el, options);
} // @event `change`
var editor = this.getModifiedEditor();
editor.onDidChangeModelContent(function (event) {
var value = editor.getValue();
if (_this2.value !== value) {
_this2.$emit('change', value, event);
}
});
this.$emit('editorDidMount', this.editor);
},
/** @deprecated */
getMonaco: function getMonaco() {
return this.editor;
},
getEditor: function getEditor() {
return this.editor;
},
getModifiedEditor: function getModifiedEditor() {
return this.diffEditor ? this.editor.getModifiedEditor() : this.editor;
},
focus: function focus() {
this.editor.focus();
}
},
render: function render(h) {
return h('div');
}
};
if (typeof window !== 'undefined' && window.Vue) {
window.Vue.component(MonacoEditor.name, MonacoEditor);
}
export default MonacoEditor;
(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
typeof define === 'function' && define.amd ? define(factory) :
(global = global || self, global.VueMonaco = factory());
}(this, function () { 'use strict';
/*!
* nano-assign v1.0.1
* (c) 2018-present egoist <0x142857@gmail.com>
* Released under the MIT License.
*/
var index = function(obj) {
var arguments$1 = arguments;
for (var i = 1; i < arguments.length; i++) {
// eslint-disable-next-line guard-for-in, prefer-rest-params
for (var p in arguments[i]) { obj[p] = arguments$1[i][p]; }
}
return obj
};
var nanoAssign_common = index;
var MonacoEditor = {
name: 'MonacoEditor',
props: {
original: String,
value: {
type: String,
required: true
},
theme: {
type: String,
"default": 'vs'
},
language: String,
options: Object,
amdRequire: {
type: Function
},
diffEditor: {
type: Boolean,
"default": false
}
},
model: {
event: 'change'
},
watch: {
options: {
deep: true,
handler: function handler(options) {
if (this.editor) {
var editor = this.getModifiedEditor();
editor.updateOptions(options);
}
}
},
value: function value(newValue) {
if (this.editor) {
var editor = this.getModifiedEditor();
if (newValue !== editor.getValue()) {
editor.setValue(newValue);
}
}
},
language: function language(newVal) {
if (this.editor) {
var editor = this.getModifiedEditor();
this.monaco.editor.setModelLanguage(editor.getModel(), newVal);
}
},
theme: function theme(newVal) {
if (this.editor) {
this.monaco.editor.setTheme(newVal);
}
}
},
mounted: function mounted() {
var _this = this;
if (this.amdRequire) {
this.amdRequire(['vs/editor/editor.main'], function () {
_this.monaco = window.monaco;
_this.initMonaco(window.monaco);
});
} else {
// ESM format so it can't be resolved by commonjs `require` in eslint
// eslint-disable-next-line import/no-unresolved
var monaco = require('monaco-editor');
this.monaco = monaco;
this.initMonaco(monaco);
}
},
beforeDestroy: function beforeDestroy() {
this.editor && this.editor.dispose();
},
methods: {
initMonaco: function initMonaco(monaco) {
var _this2 = this;
this.$emit('editorWillMount', this.monaco);
var options = nanoAssign_common({
value: this.value,
theme: this.theme,
language: this.language
}, this.options);
if (this.diffEditor) {
this.editor = monaco.editor.createDiffEditor(this.$el, options);
var originalModel = monaco.editor.createModel(this.original, this.language);
var modifiedModel = monaco.editor.createModel(this.value, this.language);
this.editor.setModel({
original: originalModel,
modified: modifiedModel
});
} else {
this.editor = monaco.editor.create(this.$el, options);
} // @event `change`
var editor = this.getModifiedEditor();
editor.onDidChangeModelContent(function (event) {
var value = editor.getValue();
if (_this2.value !== value) {
_this2.$emit('change', value, event);
}
});
this.$emit('editorDidMount', this.editor);
},
/** @deprecated */
getMonaco: function getMonaco() {
return this.editor;
},
getEditor: function getEditor() {
return this.editor;
},
getModifiedEditor: function getModifiedEditor() {
return this.diffEditor ? this.editor.getModifiedEditor() : this.editor;
},
focus: function focus() {
this.editor.focus();
}
},
render: function render(h) {
return h('div');
}
};
if (typeof window !== 'undefined' && window.Vue) {
window.Vue.component(MonacoEditor.name, MonacoEditor);
}
return MonacoEditor;
}));
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment