2011-12-04 16:33:56 +01:00
|
|
|
/**
|
|
|
|
* This code is mostly from the old Etherpad. Please help us to comment this code.
|
|
|
|
* This helps other people to understand this code better and helps them to improve it.
|
|
|
|
* TL;DR COMMENTS ON THIS FILE ARE HIGHLY APPRECIATED
|
|
|
|
*/
|
|
|
|
|
2011-03-26 14:10:41 +01:00
|
|
|
/**
|
|
|
|
* Copyright 2009 Google Inc.
|
2011-07-07 19:59:34 +02:00
|
|
|
*
|
2011-03-26 14:10:41 +01:00
|
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
* you may not use this file except in compliance with the License.
|
|
|
|
* You may obtain a copy of the License at
|
2011-07-07 19:59:34 +02:00
|
|
|
*
|
2011-03-26 14:10:41 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2011-07-07 19:59:34 +02:00
|
|
|
*
|
2011-03-26 14:10:41 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS-IS" BASIS,
|
|
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
* See the License for the specific language governing permissions and
|
|
|
|
* limitations under the License.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// requires: top
|
|
|
|
// requires: plugins
|
|
|
|
// requires: undefined
|
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
Ace2Editor.registry = {
|
|
|
|
nextId: 1
|
|
|
|
};
|
2011-03-26 14:10:41 +01:00
|
|
|
|
2012-03-11 00:08:09 +01:00
|
|
|
var hooks = require('./pluginfw/hooks');
|
2012-03-17 13:36:42 +01:00
|
|
|
var _ = require('./underscore');
|
2012-01-16 06:52:03 +01:00
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
function Ace2Editor()
|
|
|
|
{
|
2011-03-26 14:10:41 +01:00
|
|
|
var ace2 = Ace2Editor;
|
|
|
|
|
|
|
|
var editor = {};
|
2011-07-07 19:59:34 +02:00
|
|
|
var info = {
|
|
|
|
editor: editor,
|
|
|
|
id: (ace2.registry.nextId++)
|
|
|
|
};
|
2011-03-26 14:10:41 +01:00
|
|
|
var loaded = false;
|
|
|
|
|
|
|
|
var actionsPendingInit = [];
|
2011-07-07 19:59:34 +02:00
|
|
|
|
|
|
|
function pendingInit(func, optDoNow)
|
|
|
|
{
|
|
|
|
return function()
|
|
|
|
{
|
2011-03-26 14:10:41 +01:00
|
|
|
var that = this;
|
|
|
|
var args = arguments;
|
2012-02-19 03:16:42 +01:00
|
|
|
var action = function()
|
2011-07-07 19:59:34 +02:00
|
|
|
{
|
|
|
|
func.apply(that, args);
|
2011-03-26 14:10:41 +01:00
|
|
|
}
|
2011-07-07 19:59:34 +02:00
|
|
|
if (optDoNow)
|
|
|
|
{
|
|
|
|
optDoNow.apply(that, args);
|
2011-03-26 14:10:41 +01:00
|
|
|
}
|
2011-07-07 19:59:34 +02:00
|
|
|
if (loaded)
|
|
|
|
{
|
|
|
|
action();
|
2011-03-26 14:10:41 +01:00
|
|
|
}
|
2011-07-07 19:59:34 +02:00
|
|
|
else
|
|
|
|
{
|
|
|
|
actionsPendingInit.push(action);
|
2011-03-26 14:10:41 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
}
|
2011-07-07 19:59:34 +02:00
|
|
|
|
|
|
|
function doActionsPendingInit()
|
|
|
|
{
|
2012-03-17 13:36:42 +01:00
|
|
|
_.each(actionsPendingInit, function(fn,i){
|
2012-02-19 03:16:42 +01:00
|
|
|
fn()
|
|
|
|
});
|
2011-03-26 14:10:41 +01:00
|
|
|
actionsPendingInit = [];
|
|
|
|
}
|
2012-02-19 03:16:42 +01:00
|
|
|
|
2011-03-26 14:10:41 +01:00
|
|
|
ace2.registry[info.id] = info;
|
|
|
|
|
2012-02-19 03:16:42 +01:00
|
|
|
// The following functions (prefixed by 'ace_') are exposed by editor, but
|
|
|
|
// execution is delayed until init is complete
|
|
|
|
var aceFunctionsPendingInit = ['importText', 'importAText', 'focus',
|
|
|
|
'setEditable', 'getFormattedCode', 'setOnKeyPress', 'setOnKeyDown',
|
|
|
|
'setNotifyDirty', 'setProperty', 'setBaseText', 'setBaseAttributedText',
|
|
|
|
'applyChangesToBase', 'applyPreparedChangesetToBase',
|
|
|
|
'setUserChangeNotificationCallback', 'setAuthorInfo',
|
|
|
|
'setAuthorSelectionRange', 'callWithAce', 'execCommand', 'replaceRange'];
|
|
|
|
|
2012-03-17 13:36:42 +01:00
|
|
|
_.each(aceFunctionsPendingInit, function(fnName,i){
|
2012-02-19 03:16:42 +01:00
|
|
|
var prefix = 'ace_';
|
|
|
|
var name = prefix + fnName;
|
|
|
|
editor[fnName] = pendingInit(function(){
|
|
|
|
info[prefix + fnName].apply(this, arguments);
|
|
|
|
});
|
2011-07-07 19:59:34 +02:00
|
|
|
});
|
2012-02-19 03:16:42 +01:00
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
editor.exportText = function()
|
|
|
|
{
|
|
|
|
if (!loaded) return "(awaiting init)\n";
|
2011-03-26 14:10:41 +01:00
|
|
|
return info.ace_exportText();
|
|
|
|
};
|
2012-02-19 03:16:42 +01:00
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
editor.getFrame = function()
|
|
|
|
{
|
|
|
|
return info.frame || null;
|
|
|
|
};
|
2012-02-19 03:16:42 +01:00
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
editor.getDebugProperty = function(prop)
|
|
|
|
{
|
|
|
|
return info.ace_getDebugProperty(prop);
|
|
|
|
};
|
|
|
|
|
2011-03-26 14:10:41 +01:00
|
|
|
// prepareUserChangeset:
|
|
|
|
// Returns null if no new changes or ACE not ready. Otherwise, bundles up all user changes
|
|
|
|
// to the latest base text into a Changeset, which is returned (as a string if encodeAsString).
|
|
|
|
// If this method returns a truthy value, then applyPreparedChangesetToBase can be called
|
|
|
|
// at some later point to consider these changes part of the base, after which prepareUserChangeset
|
|
|
|
// must be called again before applyPreparedChangesetToBase. Multiple consecutive calls
|
|
|
|
// to prepareUserChangeset will return an updated changeset that takes into account the
|
|
|
|
// latest user changes, and modify the changeset to be applied by applyPreparedChangesetToBase
|
|
|
|
// accordingly.
|
2011-07-07 19:59:34 +02:00
|
|
|
editor.prepareUserChangeset = function()
|
|
|
|
{
|
|
|
|
if (!loaded) return null;
|
2011-03-26 14:10:41 +01:00
|
|
|
return info.ace_prepareUserChangeset();
|
|
|
|
};
|
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
editor.getUnhandledErrors = function()
|
|
|
|
{
|
|
|
|
if (!loaded) return [];
|
2011-03-26 14:10:41 +01:00
|
|
|
// returns array of {error: <browser Error object>, time: +new Date()}
|
|
|
|
return info.ace_getUnhandledErrors();
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
2012-01-15 09:05:26 +01:00
|
|
|
function sortFilesByEmbeded(files) {
|
|
|
|
var embededFiles = [];
|
|
|
|
var remoteFiles = [];
|
|
|
|
|
|
|
|
if (Ace2Editor.EMBEDED) {
|
|
|
|
for (var i = 0, ii = files.length; i < ii; i++) {
|
|
|
|
var file = files[i];
|
|
|
|
if (Object.prototype.hasOwnProperty.call(Ace2Editor.EMBEDED, file)) {
|
|
|
|
embededFiles.push(file);
|
|
|
|
} else {
|
|
|
|
remoteFiles.push(file);
|
|
|
|
}
|
|
|
|
}
|
2012-01-15 06:42:47 +01:00
|
|
|
} else {
|
2012-01-15 09:05:26 +01:00
|
|
|
remoteFiles = files;
|
2012-01-15 06:42:47 +01:00
|
|
|
}
|
2012-01-15 09:05:26 +01:00
|
|
|
|
|
|
|
return {embeded: embededFiles, remote: remoteFiles};
|
2012-01-15 06:42:47 +01:00
|
|
|
}
|
2012-01-16 07:07:45 +01:00
|
|
|
function pushRequireScriptTo(buffer) {
|
|
|
|
var KERNEL_SOURCE = '../static/js/require-kernel.js';
|
2012-03-10 23:52:19 +01:00
|
|
|
var KERNEL_BOOT = '\
|
|
|
|
require.setRootURI("../javascripts/src");\n\
|
|
|
|
require.setLibraryURI("../javascripts/lib");\n\
|
|
|
|
require.setGlobalKeyPath("require");\n\
|
|
|
|
';
|
2012-01-16 07:07:45 +01:00
|
|
|
if (Ace2Editor.EMBEDED && Ace2Editor.EMBEDED[KERNEL_SOURCE]) {
|
|
|
|
buffer.push('<script type="text/javascript">');
|
|
|
|
buffer.push(Ace2Editor.EMBEDED[KERNEL_SOURCE]);
|
2012-01-31 06:49:04 +01:00
|
|
|
buffer.push(KERNEL_BOOT);
|
2012-01-16 07:07:45 +01:00
|
|
|
buffer.push('<\/script>');
|
2012-04-18 23:44:25 +02:00
|
|
|
} else {
|
|
|
|
file = KERNEL_SOURCE;
|
|
|
|
buffer.push('<script type="application/javascript" src="' + KERNEL_SOURCE + '"><\/script>');
|
|
|
|
buffer.push('<script type="text/javascript">');
|
|
|
|
buffer.push(KERNEL_BOOT);
|
|
|
|
buffer.push('<\/script>');
|
|
|
|
}
|
2012-01-16 07:07:45 +01:00
|
|
|
}
|
2012-01-31 09:12:10 +01:00
|
|
|
function pushScriptsTo(buffer) {
|
|
|
|
/* Folling is for packaging regular expression. */
|
2012-03-10 23:13:08 +01:00
|
|
|
/* $$INCLUDE_JS("../javascripts/src/ace2_inner.js?callback=require.define"); */
|
|
|
|
var ACE_SOURCE = '../javascripts/src/ace2_inner.js?callback=require.define';
|
2012-01-31 09:12:10 +01:00
|
|
|
if (Ace2Editor.EMBEDED && Ace2Editor.EMBEDED[ACE_SOURCE]) {
|
|
|
|
buffer.push('<script type="text/javascript">');
|
|
|
|
buffer.push(Ace2Editor.EMBEDED[ACE_SOURCE]);
|
2012-02-26 17:48:17 +01:00
|
|
|
buffer.push('require("ep_etherpad-lite/static/js/ace2_inner");');
|
2012-01-31 09:12:10 +01:00
|
|
|
buffer.push('<\/script>');
|
|
|
|
} else {
|
|
|
|
file = ACE_SOURCE;
|
2012-02-14 22:14:22 +01:00
|
|
|
buffer.push('<script type="application/javascript" src="' + ACE_SOURCE + '"><\/script>');
|
2012-01-31 09:12:10 +01:00
|
|
|
buffer.push('<script type="text/javascript">');
|
2012-02-26 17:48:17 +01:00
|
|
|
buffer.push('require("ep_etherpad-lite/static/js/ace2_inner");');
|
2012-01-31 09:12:10 +01:00
|
|
|
buffer.push('<\/script>');
|
2012-01-15 09:05:26 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
function pushStyleTagsFor(buffer, files) {
|
|
|
|
var sorted = sortFilesByEmbeded(files);
|
|
|
|
var embededFiles = sorted.embeded;
|
|
|
|
var remoteFiles = sorted.remote;
|
|
|
|
|
|
|
|
if (embededFiles.length > 0) {
|
|
|
|
buffer.push('<style type="text/css">');
|
|
|
|
for (var i = 0, ii = embededFiles.length; i < ii; i++) {
|
|
|
|
var file = embededFiles[i];
|
|
|
|
buffer.push(Ace2Editor.EMBEDED[file].replace(/<\//g, '<\\/'));
|
|
|
|
}
|
|
|
|
buffer.push('<\/style>');
|
|
|
|
}
|
|
|
|
for (var i = 0, ii = remoteFiles.length; i < ii; i++) {
|
|
|
|
var file = remoteFiles[i];
|
|
|
|
buffer.push('<link rel="stylesheet" type="text/css" href="' + file + '"\/>');
|
|
|
|
}
|
2012-01-15 06:42:47 +01:00
|
|
|
}
|
2011-03-26 14:10:41 +01:00
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
editor.destroy = pendingInit(function()
|
|
|
|
{
|
2011-03-26 14:10:41 +01:00
|
|
|
info.ace_dispose();
|
|
|
|
info.frame.parentNode.removeChild(info.frame);
|
|
|
|
delete ace2.registry[info.id];
|
|
|
|
info = null; // prevent IE 6 closure memory leaks
|
|
|
|
});
|
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
editor.init = function(containerId, initialCode, doneFunc)
|
|
|
|
{
|
2011-03-26 14:10:41 +01:00
|
|
|
|
|
|
|
editor.importText(initialCode);
|
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
info.onEditorReady = function()
|
|
|
|
{
|
2011-03-26 14:10:41 +01:00
|
|
|
loaded = true;
|
|
|
|
doActionsPendingInit();
|
|
|
|
doneFunc();
|
|
|
|
};
|
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
(function()
|
|
|
|
{
|
2011-05-28 19:09:17 +02:00
|
|
|
var doctype = "<!doctype html>";
|
2011-03-26 14:10:41 +01:00
|
|
|
|
2012-01-15 08:31:23 +01:00
|
|
|
var iframeHTML = [];
|
2011-07-07 19:59:34 +02:00
|
|
|
|
2012-01-15 08:31:23 +01:00
|
|
|
iframeHTML.push(doctype);
|
|
|
|
iframeHTML.push("<html><head>");
|
2012-03-27 22:24:36 +02:00
|
|
|
iframeHTML.push('<script type="text/javascript" src="../static/js/jquery.js"></script>');
|
2012-01-15 08:31:23 +01:00
|
|
|
|
2012-03-21 19:27:43 +01:00
|
|
|
hooks.callAll("aceInitInnerdocbodyHead", {
|
|
|
|
iframeHTML: iframeHTML
|
|
|
|
});
|
|
|
|
|
2012-01-15 08:31:23 +01:00
|
|
|
// For compatability's sake transform in and out.
|
|
|
|
for (var i = 0, ii = iframeHTML.length; i < ii; i++) {
|
|
|
|
iframeHTML[i] = JSON.stringify(iframeHTML[i]);
|
|
|
|
}
|
|
|
|
for (var i = 0, ii = iframeHTML.length; i < ii; i++) {
|
|
|
|
iframeHTML[i] = JSON.parse(iframeHTML[i]);
|
|
|
|
}
|
2011-07-07 19:59:34 +02:00
|
|
|
|
2012-01-15 09:05:26 +01:00
|
|
|
// calls to these functions ($$INCLUDE_...) are replaced when this file is processed
|
|
|
|
// and compressed, putting the compressed code from the named file directly into the
|
|
|
|
// source here.
|
2011-05-28 19:09:17 +02:00
|
|
|
// these lines must conform to a specific format because they are passed by the build script:
|
2012-01-15 09:05:26 +01:00
|
|
|
var includedCSS = [];
|
|
|
|
var $$INCLUDE_CSS = function(filename) {includedCSS.push(filename)};
|
|
|
|
$$INCLUDE_CSS("../static/css/iframe_editor.css");
|
|
|
|
$$INCLUDE_CSS("../static/css/pad.css");
|
|
|
|
$$INCLUDE_CSS("../static/custom/pad.css");
|
2012-04-07 01:40:13 +02:00
|
|
|
|
|
|
|
var additionalCSS = _(hooks.callAll("aceEditorCSS")).map(function(path){ return '../static/plugins/' + path });
|
|
|
|
includedCSS = includedCSS.concat(additionalCSS);
|
|
|
|
|
2012-01-15 09:05:26 +01:00
|
|
|
pushStyleTagsFor(iframeHTML, includedCSS);
|
|
|
|
|
|
|
|
var includedJS = [];
|
|
|
|
var $$INCLUDE_JS = function(filename) {includedJS.push(filename)};
|
2012-01-16 07:07:45 +01:00
|
|
|
pushRequireScriptTo(iframeHTML);
|
2012-02-05 20:13:43 +01:00
|
|
|
// Inject my plugins into my child.
|
|
|
|
iframeHTML.push('\
|
|
|
|
<script type="text/javascript">\
|
2012-03-14 11:45:25 +01:00
|
|
|
parent_req = require("./pluginfw/parent_require.js");\
|
|
|
|
parent_req.getRequirementFromParent(require, "ep_etherpad-lite/static/js/pluginfw/hooks");\
|
|
|
|
parent_req.getRequirementFromParent(require, "ep_etherpad-lite/static/js/pluginfw/plugins");\
|
|
|
|
parent_req.getRequirementFromParent(require, "./pluginfw/hooks");\
|
|
|
|
parent_req.getRequirementFromParent(require, "./pluginfw/plugins");\
|
2012-02-05 20:13:43 +01:00
|
|
|
require.define("/plugins", null);\n\
|
|
|
|
require.define("/plugins.js", function (require, exports, module) {\
|
2012-02-28 21:14:31 +01:00
|
|
|
module.exports = require("ep_etherpad-lite/static/js/plugins");\
|
2012-02-05 20:13:43 +01:00
|
|
|
});\
|
|
|
|
</script>\
|
|
|
|
');
|
2012-01-31 09:12:10 +01:00
|
|
|
pushScriptsTo(iframeHTML);
|
2011-07-07 19:59:34 +02:00
|
|
|
|
2012-01-15 08:31:23 +01:00
|
|
|
iframeHTML.push('<style type="text/css" title="dynamicsyntax"></style>');
|
|
|
|
iframeHTML.push('</head><body id="innerdocbody" class="syntax" spellcheck="false"> </body></html>');
|
2011-03-26 14:10:41 +01:00
|
|
|
|
2012-01-16 09:31:28 +01:00
|
|
|
// Expose myself to global for my child frame.
|
|
|
|
var thisFunctionsName = "ChildAccessibleAce2Editor";
|
|
|
|
(function () {return this}())[thisFunctionsName] = Ace2Editor;
|
|
|
|
|
2012-02-28 17:52:30 +01:00
|
|
|
var outerScript = 'editorId = "' + info.id + '"; editorInfo = parent.' + thisFunctionsName + '.registry[editorId]; ' + 'window.onload = function() ' + '{ window.onload = null; setTimeout' + '(function() ' + '{ var iframe = document.createElement("IFRAME"); iframe.name = "ace_inner";' + 'iframe.scrolling = "no"; var outerdocbody = document.getElementById("outerdocbody"); ' + 'iframe.frameBorder = 0; iframe.allowTransparency = true; ' + // for IE
|
2012-01-15 08:31:23 +01:00
|
|
|
'outerdocbody.insertBefore(iframe, outerdocbody.firstChild); ' + 'iframe.ace_outerWin = window; ' + 'readyFunc = function() { editorInfo.onEditorReady(); readyFunc = null; editorInfo = null; }; ' + 'var doc = iframe.contentWindow.document; doc.open(); var text = (' + JSON.stringify(iframeHTML.join('\n')) + ');doc.write(text); doc.close(); ' + '}, 0); }';
|
2011-07-07 19:59:34 +02:00
|
|
|
|
2012-01-15 09:05:26 +01:00
|
|
|
var outerHTML = [doctype, '<html><head>']
|
|
|
|
|
|
|
|
var includedCSS = [];
|
|
|
|
var $$INCLUDE_CSS = function(filename) {includedCSS.push(filename)};
|
|
|
|
$$INCLUDE_CSS("../static/css/iframe_editor.css");
|
|
|
|
$$INCLUDE_CSS("../static/css/pad.css");
|
|
|
|
$$INCLUDE_CSS("../static/custom/pad.css");
|
2012-04-07 01:40:13 +02:00
|
|
|
|
|
|
|
|
|
|
|
var additionalCSS = _(hooks.callAll("aceEditorCSS")).map(function(path){ return '../static/plugins/' + path });
|
|
|
|
includedCSS = includedCSS.concat(additionalCSS);
|
|
|
|
|
2012-01-15 09:05:26 +01:00
|
|
|
pushStyleTagsFor(outerHTML, includedCSS);
|
|
|
|
|
2011-07-07 19:59:34 +02:00
|
|
|
// bizarrely, in FF2, a file with no "external" dependencies won't finish loading properly
|
|
|
|
// (throbs busy while typing)
|
2012-01-15 09:05:26 +01:00
|
|
|
outerHTML.push('<link rel="stylesheet" type="text/css" href="data:text/css,"/>', '\x3cscript>\n', outerScript.replace(/<\//g, '<\\/'), '\n\x3c/script>', '</head><body id="outerdocbody"><div id="sidediv"><!-- --></div><div id="linemetricsdiv">x</div><div id="overlaysdiv"><!-- --></div></body></html>');
|
2011-07-07 19:59:34 +02:00
|
|
|
|
2011-03-26 14:10:41 +01:00
|
|
|
var outerFrame = document.createElement("IFRAME");
|
2012-02-28 17:52:30 +01:00
|
|
|
outerFrame.name = "ace_outer";
|
2011-03-26 14:10:41 +01:00
|
|
|
outerFrame.frameBorder = 0; // for IE
|
|
|
|
info.frame = outerFrame;
|
|
|
|
document.getElementById(containerId).appendChild(outerFrame);
|
|
|
|
|
|
|
|
var editorDocument = outerFrame.contentWindow.document;
|
|
|
|
|
|
|
|
editorDocument.open();
|
|
|
|
editorDocument.write(outerHTML.join(''));
|
|
|
|
editorDocument.close();
|
|
|
|
})();
|
|
|
|
};
|
|
|
|
|
|
|
|
return editor;
|
|
|
|
}
|
2012-01-16 02:23:48 +01:00
|
|
|
|
|
|
|
exports.Ace2Editor = Ace2Editor;
|