mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-06 01:56:20 +00:00
b7cb1d3391
I was avoiding doing this until after the merge.
53 lines
1.2 KiB
JavaScript
53 lines
1.2 KiB
JavaScript
/*\
|
|
title: $:/core/modules/widgets/edit-text-codemirror.js
|
|
type: application/javascript
|
|
module-type: widget
|
|
|
|
Extend the edit-text widget to use CodeMirror
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
/*jslint node: true, browser: true */
|
|
/*global $tw: false */
|
|
"use strict";
|
|
|
|
if($tw.browser) {
|
|
require("$:/plugins/tiddlywiki/codemirror/codemirror.js");
|
|
}
|
|
|
|
var EditTextWidget = require("$:/core/modules/widgets/edit-text.js")["edit-text"];
|
|
|
|
/*
|
|
The edit-text widget calls this method just after inserting its dom nodes
|
|
*/
|
|
EditTextWidget.prototype.postRender = function() {
|
|
var self = this,
|
|
cm;
|
|
if($tw.browser && window.CodeMirror && this.editTag === "textarea") {
|
|
cm = CodeMirror.fromTextArea(this.domNodes[0],{
|
|
lineWrapping: true,
|
|
lineNumbers: true
|
|
});
|
|
cm.on("change",function() {
|
|
self.saveChanges(cm.getValue());
|
|
});
|
|
} else {
|
|
cm = undefined;
|
|
}
|
|
this.codemirrorInstance = cm;
|
|
};
|
|
|
|
EditTextWidget.prototype.updateEditor = function(text) {
|
|
// Replace the edit value if the tiddler we're editing has changed
|
|
if(this.codemirrorInstance) {
|
|
if(!this.codemirrorInstance.hasFocus()) {
|
|
this.codemirrorInstance.setValue(text);
|
|
}
|
|
} else {
|
|
this.updateEditorDomNode(this.getEditInfo().value);
|
|
}
|
|
};
|
|
|
|
})();
|