cloudcmd/lib/client/edit.js
2013-11-12 10:21:39 +00:00

226 lines
7.7 KiB
JavaScript

var CloudCmd, Util, DOM, CloudFunc, ace, DiffProto, diff_match_patch;
(function(CloudCmd, Util, DOM, CloudFunc) {
'use strict';
CloudCmd.Edit = new EditProto(CloudCmd, Util, DOM, CloudFunc);
function EditProto(CloudCmd, Util, DOM, CloudFunc) {
var Name = 'Edit',
Loading = false,
DIR = CloudCmd.LIBDIRCLIENT + 'edit/',
LIBDIR = CloudCmd.LIBDIR,
Value,
Edit = this,
Diff,
Ace,
Msg,
Key = CloudCmd.Key,
Images = DOM.Images,
Element;
this.init = function(pCallBack) {
var lFunc, lIsFunc = Util.isFunction(CloudCmd.View);
Loading = true;
if (lIsFunc)
lFunc = CloudCmd.View;
else
lFunc = Util.exec;
Util.loadOnLoad([
Edit.show,
load,
lFunc
]);
DOM.Events.addKey(listener);
DOM.setButtonKey('f4', Edit.show);
delete Edit.init;
};
this.show = function(pValue) {
var lName = DOM.getCurrentName(),
lExt = Util.getExtension(lName),
lUseWorker = Util.strCmp(lExt, ['.js', '.json']);
if (!Loading) {
Images.showLoad();
if (!Element) {
Element = DOM.anyload({
name : 'div',
style :
'width : 100%;' +
'height : 100%;' +
'font : 16px "Droid Sans Mono";' +
'position: absolute;',
not_append : true
});
initAce();
}
Ace.session.setOption('useWorker', lUseWorker);
if (Util.isString(pValue)) {
Ace.setValue(pValue);
CloudCmd.View.show(Element, focus);
Key.unsetBind();
} else {
DOM.getCurrentData({
success : function(pData) {
var lValue = '';
if (pData)
lValue = pData.data;
Value = lValue;
Ace.setValue(lValue);
CloudCmd.View.show(Element, focus);
}
});
}
}
};
this.hide = function() {
CloudCmd.View.hide();
};
function focus() {
Ace.focus();
Ace.clearSelection();
Ace.moveCursorTo(0, 0);
}
function initAce() {
var lSession;
Ace = ace.edit(Element);
lSession = Ace.getSession();
Ace.setTheme('ace/theme/tomorrow_night_blue');
lSession.setMode('ace/mode/javascript');
Ace.setShowPrintMargin(false);
Ace.setShowInvisibles(true);
lSession.setUseSoftTabs(true);
Ace.commands.addCommand({
name : 'hide',
bindKey : { win: 'Esc', mac: 'Esc' },
exec : function () {
Edit.hide();
}
});
Ace.commands.addCommand({
name : 'save',
bindKey : { win: 'Ctrl-S', mac: 'Command-S' },
exec : function (pEditor) {
var lPath = DOM.getCurrentPath(),
lValue = Ace.getValue();
CloudCmd.getConfig(function(config) {
var isDiff = config.diff;
Util.ifExec(!isDiff, function(patch) {
var query;
if (Util.isString(patch)) {
lValue = patch;
query = '?patch';
}
DOM.RESTful.save(lPath, lValue, Edit.showMessage, query);
}, function(callback) {
diff(lValue, function(diff) {
Util.exec(callback, diff);
});
});
});
}
});
}
function diff(pNewValue, pCallBack) {
var libs = [
LIBDIR + 'diff.js',
LIBDIR + 'diff/diff-match-patch.js'
];
DOM.anyLoadInParallel(libs, function() {
var patch;
if (!Diff)
Diff = new DiffProto(diff_match_patch);
patch = Diff.createPatch(Value, pNewValue);
Util.exec(pCallBack, patch);
});
}
function load(pCallBack) {
Util.time(Name + ' load');
var lFiles = [
DIR + 'theme-tomorrow_night_blue.js',
DIR + 'ace.js',
];
DOM.anyLoadOnLoad(lFiles, function() {
Util.timeEnd(Name + ' load');
Loading = false;
Util.exec(pCallBack);
});
}
function listener(pEvent) {
var lF4, lKey, lIsBind = Key.isBind();
if (lIsBind) {
lF4 = Key.F4,
lKey = pEvent.keyCode;
if(lKey === lF4)
Edit.show();
}
}
this.showMessage = function(text) {
var parent,
TWO_SECONDS = 2000;
if (!Msg) {
DOM.cssSet({
id : 'msg-css',
inner : '#view .msg {' +
'z-index' + ': 1;' +
'background-color' + ': #7285B7;' +
'color' + ': #D1F1A9;' +
'position' + ': fixed;' +
'left' + ': 40%;' +
'top' + ': 25px;' +
'padding' + ': 5px;' +
'opacity' + ': 0.9;' +
'transition' + ': ease 0.5s;' +
'}'
});
parent = Element;
Msg = DOM.anyload({
name : 'div',
className : 'msg',
parent : parent
});
}
Msg.innerHTML = text;
DOM.show(Msg);
setTimeout(Util.retExec(DOM.hide, Msg), 2000);
};
}
})(CloudCmd, Util, DOM, CloudFunc);