wide/static/js/editors.js

896 lines
34 KiB
JavaScript
Raw Normal View History

2015-01-01 05:06:33 +03:00
/*
2019-05-17 06:28:50 +03:00
* Copyright (c) 2014-present, b3log.org
2015-01-01 05:06:33 +03:00
*
2014-11-12 18:13:14 +03: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
2015-01-01 05:06:33 +03:00
*
2018-03-12 07:28:33 +03:00
* https://www.apache.org/licenses/LICENSE-2.0
2015-01-01 05:06:33 +03:00
*
2014-11-12 18:13:14 +03: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.
*/
2014-11-12 18:13:14 +03:00
/*
2015-12-08 18:48:16 +03:00
* @file editor.js
*
* @author <a href="http://vanessa.b3log.org">Liyuan Li</a>
2015-12-08 18:48:16 +03:00
* @author <a href="http://88250.b3log.org">Liang Ding</a>
* @version 1.1.1.0, Jan 12, 2016
*/
2014-09-25 05:46:24 +04:00
var editors = {
2015-06-14 09:43:09 +03:00
autocompleteMutex: false,
2014-09-25 05:46:24 +04:00
data: [],
tabs: {},
2014-12-11 18:11:10 +03:00
getEditorByPath: function (path) {
for (var i = 0, ii = editors.data.length; i < ii; i++) {
if (editors.data[i].editor.options.path === path) {
return editors.data[i].editor;
}
2014-12-11 19:11:35 +03:00
}
2014-12-11 18:11:10 +03:00
},
close: function () {
$('.edit-panel .tabs > div[data-index="' + $('.edit-panel .frame').data('index') + ']').find('.ico-close').click();
},
closeOther: function () {
var currentIndex = $(".edit-panel .frame").data("index");
// 设置全部关闭标识
var removeData = [];
$(".edit-panel .tabs > div").each(function (i) {
if (currentIndex !== $(this).data("index")) {
removeData.push($(this).data("index"));
}
});
2014-11-06 09:41:46 +03:00
if (removeData.length === 0) {
return false;
}
var firstIndex = removeData.splice(0, 1);
$("#dialogCloseEditor").data("removeData", removeData);
// 开始关闭
$('.edit-panel .tabs > div[data-index="' + firstIndex + '"]').find(".ico-close").click();
},
2014-11-01 16:28:18 +03:00
_removeAllMarker: function () {
var removeData = $("#dialogCloseEditor").data("removeData");
if (removeData && removeData.length > 0) {
2014-11-01 16:49:41 +03:00
var removeIndex = removeData.splice(0, 1);
2014-11-01 16:28:18 +03:00
$("#dialogCloseEditor").data("removeData", removeData);
$('.edit-panel .tabs > div[data-index="' + removeIndex + '"] .ico-close').click();
2014-11-01 16:28:18 +03:00
}
if (wide.curEditor) {
wide.curEditor.focus();
}
2014-11-01 16:28:18 +03:00
},
_initClose: function () {
new ZeroClipboard($("#copyFilePath"));
2014-12-02 10:17:25 +03:00
// 关闭、关闭其他、关闭所有
2015-01-04 06:21:44 +03:00
$(".edit-panel").on("mouseup", '.tabs > div', function (event) {
event.stopPropagation();
if (event.button === 0) { // 左键
$(".edit-panel .frame").hide();
return false;
}
// event.button === 2 右键
var left = event.screenX;
if ($(".side").css("left") === "auto" || $(".side").css("left") === "0px") {
left = event.screenX - $(".side").width();
}
$(".edit-panel .frame").show().css({
"left": left + "px",
"top": "21px"
}).data('index', $(this).data("index"));
2014-12-02 10:17:25 +03:00
$("#copyFilePath").attr('data-clipboard-text', $(this).find("span:eq(0)").attr("title"));
return false;
});
},
2014-09-25 05:46:24 +04:00
init: function () {
2014-11-01 07:05:52 +03:00
$("#dialogCloseEditor").dialog({
"modal": true,
2014-12-05 12:59:42 +03:00
"height": 90,
2014-11-01 07:05:52 +03:00
"width": 260,
"title": config.label.tip,
"hideFooter": true,
2014-11-01 07:36:42 +03:00
"afterOpen": function (fileName) {
2014-11-01 16:28:18 +03:00
$("#dialogCloseEditor > div:eq(0)").html(config.label.file
2014-11-01 07:36:42 +03:00
+ ' <b>' + fileName + '</b>. ' + config.label.confirm_save + '?');
$("#dialogCloseEditor button:eq(0)").focus();
},
2014-11-01 07:05:52 +03:00
"afterInit": function () {
$("#dialogCloseEditor button.save").click(function () {
var i = $("#dialogCloseEditor").data("index");
wide.fmt(editors.data[i].id, editors.data[i].editor);
2014-11-01 07:05:52 +03:00
editors.tabs.del(editors.data[i].id);
$("#dialogCloseEditor").dialog("close");
2014-11-01 16:28:18 +03:00
editors._removeAllMarker();
2014-11-01 07:05:52 +03:00
});
$("#dialogCloseEditor button.discard").click(function () {
2014-12-02 06:09:53 +03:00
var i = $("#dialogCloseEditor").data("index");
editors.tabs.del(editors.data[i].id);
2014-11-01 07:05:52 +03:00
$("#dialogCloseEditor").dialog("close");
2014-11-01 16:28:18 +03:00
editors._removeAllMarker();
2014-11-01 07:05:52 +03:00
});
$("#dialogCloseEditor button.cancel").click(function (event) {
2014-11-01 07:05:52 +03:00
$("#dialogCloseEditor").dialog("close");
2014-11-01 16:28:18 +03:00
editors._removeAllMarker();
2014-11-01 07:05:52 +03:00
});
}
});
2014-09-25 05:46:24 +04:00
editors.tabs = new Tabs({
id: ".edit-panel",
setAfter: function () {
if (wide.curEditor) {
wide.curEditor.focus();
}
},
2014-09-25 05:46:24 +04:00
clickAfter: function (id) {
2014-10-17 10:47:29 +04:00
if (id === 'startPage') {
2015-01-03 11:01:24 +03:00
wide.curEditor = undefined;
$(".footer .cursor").text('');
2015-01-03 11:01:24 +03:00
wide.refreshOutline();
2014-10-17 10:47:29 +04:00
return false;
}
2014-09-25 05:46:24 +04:00
},
2014-11-01 07:05:52 +03:00
removeBefore: function (id) {
2014-10-27 18:02:15 +03:00
if (id === 'startPage') { // 当前关闭的 tab 是起始页
2014-11-01 16:49:41 +03:00
editors._removeAllMarker();
2014-11-01 16:28:18 +03:00
return true;
2014-10-17 10:47:29 +04:00
}
2014-09-25 05:46:24 +04:00
for (var i = 0, ii = editors.data.length; i < ii; i++) {
if (editors.data[i].id === id) {
2014-11-01 07:05:52 +03:00
if (editors.data[i].editor.doc.isClean()) {
2014-11-01 16:49:41 +03:00
editors._removeAllMarker();
2014-11-01 07:05:52 +03:00
return true;
} else {
$("#dialogCloseEditor").dialog("open", $('.edit-panel .tabs > div[data-index="'
+ editors.data[i].id + '"] > span:eq(0)').text());
2014-11-01 07:05:52 +03:00
$("#dialogCloseEditor").data("index", i);
return false;
}
break;
}
}
},
removeAfter: function (id, nextId) {
2014-11-01 16:28:18 +03:00
if ($(".edit-panel .tabs > div").length === 0) {
// 全部 tab 都关闭时才 disables 菜单中“全部关闭”的按钮
menu.disabled(['close-all']);
}
2014-11-01 07:05:52 +03:00
// 移除编辑器
for (var i = 0, ii = editors.data.length; i < ii; i++) {
if (editors.data[i].id === id) {
2014-10-13 13:01:44 +04:00
editors.data.splice(i, 1);
2014-09-25 05:46:24 +04:00
break;
}
}
2014-10-27 18:02:15 +03:00
if (editors.data.length === 0) { // 起始页可能存在,所以用编辑器数据判断
2019-05-20 12:36:16 +03:00
menu.disabled(['save-all', 'build', 'run', 'go-test', 'go-vet', 'go-mod', 'go-install',
2014-12-06 16:56:05 +03:00
'find', 'find-next', 'find-previous', 'replace', 'replace-all',
2014-12-09 11:46:52 +03:00
'format', 'autocomplete', 'jump-to-decl', 'expr-info', 'find-usages', 'toggle-comment',
'edit']);
2015-04-12 03:15:28 +03:00
2015-03-21 15:22:53 +03:00
// remove selected tree node
tree.fileTree.cancelSelectedNode();
wide.curNode = undefined;
wide.curEditor = undefined;
wide.refreshOutline();
$(".footer .cursor").text('');
return false;
2014-10-27 18:02:15 +03:00
}
2014-09-25 05:46:24 +04:00
if (!nextId) {
2015-03-21 15:22:53 +03:00
// 编辑器区域不存在打开的 Tab
2014-09-25 05:46:24 +04:00
// remove selected tree node
tree.fileTree.cancelSelectedNode();
wide.curNode = undefined;
wide.curEditor = undefined;
2015-01-03 11:01:24 +03:00
wide.refreshOutline();
$(".footer .cursor").text('');
2014-09-25 05:46:24 +04:00
return false;
}
if (nextId === editors.tabs.getCurrentId()) {
// 关闭的不是当前编辑器
2014-09-25 05:46:24 +04:00
return false;
}
}
});
2014-10-17 10:47:29 +04:00
this._initCodeMirrorHotKeys();
2014-11-01 07:05:52 +03:00
this.openStartPage();
this._initClose();
2014-10-17 10:47:29 +04:00
},
2014-10-20 13:32:06 +04:00
openStartPage: function () {
2015-01-03 11:01:24 +03:00
wide.curEditor = undefined;
wide.refreshOutline();
$(".footer .cursor").text('');
2015-03-21 15:22:53 +03:00
2014-10-21 12:46:09 +04:00
var dateFormat = function (time, fmt) {
var date = new Date(time);
var dateObj = {
"M+": date.getMonth() + 1, //月份
"d+": date.getDate(), //日
"h+": date.getHours(), //小时
"m+": date.getMinutes(), //分
"s+": date.getSeconds(), //秒
"q+": Math.floor((date.getMonth() + 3) / 3), //季度
"S": date.getMilliseconds() //毫秒
};
if (/(y+)/.test(fmt))
fmt = fmt.replace(RegExp.$1, (date.getFullYear() + "").substr(4 - RegExp.$1.length));
for (var k in dateObj)
if (new RegExp("(" + k + ")").test(fmt)) {
fmt = fmt.replace(RegExp.$1, (RegExp.$1.length === 1)
? (dateObj[k]) : (("00" + dateObj[k]).substr(("" + dateObj[k]).length)));
}
return fmt;
};
2014-10-17 10:47:29 +04:00
editors.tabs.add({
id: "startPage",
2014-12-23 10:40:28 +03:00
title: '<span title="' + config.label.start_page
2014-12-19 10:44:49 +03:00
+ '"><span class="ico-start font-ico"></span> ' + config.label.start_page + '</span>',
2014-10-20 13:32:06 +04:00
content: '<div id="startPage"></div>',
after: function () {
2019-05-17 04:27:22 +03:00
$("#startPage").load('/start?sid=' + config.wideSessionId);
2014-12-15 05:30:42 +03:00
$.ajax({
url: "https://hacpai.com/apis/articles?tags=wide,golang&p=1&size=20",
2014-10-20 13:32:06 +04:00
type: "GET",
dataType: "jsonp",
jsonp: "callback",
success: function (data, textStatus) {
var articles = data.articles;
if (0 === articles.length) {
return;
}
2015-04-02 07:22:19 +03:00
// 按 size = 20 取,但只保留最多 9 篇
2014-10-20 13:32:06 +04:00
var length = articles.length;
2015-04-02 07:22:19 +03:00
if (length > 9) {
length = 9;
2014-10-20 13:32:06 +04:00
}
2017-04-23 19:10:16 +03:00
var listHTML = "<ul><li class='title'>" + config.label.community +
"<a href='https://hacpai.com/article/1437497122181' target='_blank' class='fn-right'>边看边练</li>";
2014-10-20 13:32:06 +04:00
for (var i = 0; i < length; i++) {
var article = articles[i];
2014-10-21 12:46:09 +04:00
listHTML += "<li>"
+ "<a target='_blank' href='"
2014-10-21 12:46:09 +04:00
+ article.articlePermalink + "'>"
+ article.articleTitle + "</a>&nbsp; <span class='date'>"
2015-04-02 07:22:19 +03:00
+ dateFormat(article.articleCreateTime, 'yyyy-MM-dd');
2014-11-01 07:05:52 +03:00
+"</span></li>";
2014-10-20 13:32:06 +04:00
}
2014-10-21 12:46:09 +04:00
$("#startPage .news").html(listHTML + "</ul>");
2014-10-20 13:32:06 +04:00
}
2014-12-15 05:30:42 +03:00
});
2014-10-19 14:41:01 +04:00
}
2014-10-17 10:47:29 +04:00
});
2014-09-25 05:46:24 +04:00
},
2014-09-26 11:39:13 +04:00
getCurrentId: function () {
var ret = editors.tabs.getCurrentId();
if (ret === 'startPage') {
ret = null;
2014-10-17 10:47:29 +04:00
}
return ret;
2014-09-26 11:39:13 +04:00
},
getCurrentPath: function () {
2014-10-17 10:47:29 +04:00
var currentPath = $(".edit-panel .tabs .current span:eq(0)").attr("title");
2014-10-21 18:48:33 +04:00
if (currentPath === config.label.start_page) {
2014-10-17 10:47:29 +04:00
currentPath = null;
}
return currentPath;
2014-09-25 05:46:24 +04:00
},
2014-10-17 10:47:29 +04:00
_initCodeMirrorHotKeys: function () {
2014-09-25 05:46:24 +04:00
CodeMirror.registerHelper("hint", "go", function (editor) {
2015-07-23 11:31:37 +03:00
editor = wide.curEditor; // 使用当前编辑器覆盖实参,因为异步调用的原因,实参不一定正确
2014-09-25 05:46:24 +04:00
var word = /[\w$]+/;
var cur = editor.getCursor(), curLine = editor.getLine(cur.line);
var start = cur.ch, end = start;
while (end < curLine.length && word.test(curLine.charAt(end))) {
++end;
}
while (start && word.test(curLine.charAt(start - 1))) {
--start;
}
var request = newWideRequest();
2014-09-25 12:40:05 +04:00
request.path = $(".edit-panel .tabs .current > span:eq(0)").attr("title");
2014-09-25 05:46:24 +04:00
request.code = editor.getValue();
request.cursorLine = cur.line;
request.cursorCh = cur.ch;
var autocompleteHints = [];
2015-06-14 09:43:09 +03:00
if (editors.autocompleteMutex && editor.state.completionActive) {
return;
}
editors.autocompleteMutex = true;
2014-09-25 05:46:24 +04:00
$.ajax({
async: false, // 同步执行
type: 'POST',
2019-05-17 04:27:22 +03:00
url: '/autocomplete',
2014-09-25 05:46:24 +04:00
data: JSON.stringify(request),
dataType: "json",
success: function (data) {
var autocompleteArray = data[1];
if (autocompleteArray) {
for (var i = 0; i < autocompleteArray.length; i++) {
var displayText = '',
text = autocompleteArray[i].name;
2014-10-10 07:18:52 +04:00
switch (autocompleteArray[i].class) {
case "type":
2015-01-02 18:14:41 +03:00
displayText = '<span class="fn-clear"><span class="ico-type ico"></span>'// + autocompleteArray[i].class
+ '<b>' + autocompleteArray[i].name + '</b> '
+ autocompleteArray[i].type + '</span>';
break;
2014-10-10 07:18:52 +04:00
case "const":
2015-01-02 18:14:41 +03:00
displayText = '<span class="fn-clear"><span class="ico-const ico"></span>'// + autocompleteArray[i].class
+ '<b>' + autocompleteArray[i].name + '</b> '
+ autocompleteArray[i].type + '</span>';
break;
2014-10-10 07:18:52 +04:00
case "var":
2015-01-02 18:14:41 +03:00
displayText = '<span class="fn-clear"><span class="ico-var ico"></span>'// + autocompleteArray[i].class
+ '<b>' + autocompleteArray[i].name + '</b> '
+ autocompleteArray[i].type + '</span>';
break;
2014-10-10 07:18:52 +04:00
case "package":
2015-01-02 18:14:41 +03:00
displayText = '<span class="fn-clear"><span class="ico-package ico"></span>'// + autocompleteArray[i].class
+ '<b>' + autocompleteArray[i].name + '</b> '
2014-10-10 07:18:52 +04:00
+ autocompleteArray[i].type + '</span>';
break;
case "func":
2015-01-02 18:14:41 +03:00
displayText = '<span><span class="ico-func ico"></span>'// + autocompleteArray[i].class
2014-10-10 07:18:52 +04:00
+ '<b>' + autocompleteArray[i].name + '</b>'
+ autocompleteArray[i].type.substring(4) + '</span>';
text += '()';
2014-10-10 07:18:52 +04:00
break;
default:
console.warn("Can't handle autocomplete [" + autocompleteArray[i].class + "]");
break;
2014-10-09 19:04:02 +04:00
}
2014-10-10 07:18:52 +04:00
2014-10-09 13:14:15 +04:00
autocompleteHints[i] = {
2014-10-09 19:04:02 +04:00
displayText: displayText,
text: text
2014-10-09 13:14:15 +04:00
};
2014-09-25 05:46:24 +04:00
}
}
2014-10-31 10:54:54 +03:00
editor.doc.markClean();
2015-07-23 11:31:37 +03:00
$(".edit-panel .tabs .current > span:eq(0)").removeClass("changed");
2014-09-25 05:46:24 +04:00
}
});
setTimeout(function () {
editors.autocompleteMutex = false;
}, 20);
2014-09-25 05:46:24 +04:00
return {list: autocompleteHints, from: CodeMirror.Pos(cur.line, start), to: CodeMirror.Pos(cur.line, end)};
});
CodeMirror.commands.autocompleteAfterDot = function (cm) {
2015-01-21 12:28:57 +03:00
var mode = cm.getMode();
if (mode && "go" !== mode.name) {
return CodeMirror.Pass;
}
2015-03-21 15:22:53 +03:00
2014-11-18 05:29:08 +03:00
var token = cm.getTokenAt(cm.getCursor());
2014-12-30 12:08:15 +03:00
if ("comment" === token.type || "string" === token.type) {
2014-11-19 10:20:01 +03:00
return CodeMirror.Pass;
2014-11-18 05:29:08 +03:00
}
2014-09-25 05:46:24 +04:00
setTimeout(function () {
if (!cm.state.completionActive) {
cm.showHint({hint: CodeMirror.hint.go, completeSingle: false});
}
}, 50);
return CodeMirror.Pass;
};
CodeMirror.commands.autocompleteAnyWord = function (cm) {
cm.showHint({hint: CodeMirror.hint.auto});
};
CodeMirror.commands.gotoLine = function (cm) {
$("#dialogGoLinePrompt").dialog("open");
};
2014-10-10 07:27:17 +04:00
// 用于覆盖 cm 默认绑定的某些快捷键功能.
2014-09-25 05:46:24 +04:00
CodeMirror.commands.doNothing = function (cm) {
};
2014-10-10 14:04:03 +04:00
2014-10-10 07:18:52 +04:00
CodeMirror.commands.exprInfo = function (cm) {
var cur = wide.curEditor.getCursor();
var request = newWideRequest();
request.path = $(".edit-panel .tabs .current > span:eq(0)").attr("title");
request.code = wide.curEditor.getValue();
request.cursorLine = cur.line;
request.cursorCh = cur.ch;
$.ajax({
type: 'POST',
2019-05-17 04:27:22 +03:00
url: '/exprinfo',
2014-10-10 07:18:52 +04:00
data: JSON.stringify(request),
dataType: "json",
2015-11-24 10:42:28 +03:00
success: function (result) {
2019-05-24 16:52:17 +03:00
if (0 != result.code) {
2014-10-10 07:18:52 +04:00
return;
}
2015-11-24 10:42:28 +03:00
2014-10-10 14:04:03 +04:00
var position = wide.curEditor.cursorCoords();
$("body").append('<div style="top:'
+ (position.top + 15) + 'px;left:' + position.left
2015-11-24 10:42:28 +03:00
+ 'px" class="edit-exprinfo">' + result.data + '</div>');
2014-10-10 07:18:52 +04:00
}
});
};
2014-09-25 05:46:24 +04:00
2014-12-09 11:46:52 +03:00
CodeMirror.commands.copyLinesDown = function (cm) {
var content = '',
selectoion = cm.listSelections()[0];
var from = selectoion.anchor,
to = selectoion.head;
if (from.line > to.line) {
from = selectoion.head;
to = selectoion.anchor;
}
for (var i = from.line, max = to.line; i <= max; i++) {
if (to.ch !== 0 || i !== max) { // 下一行选中为0时不应添加内容
content += '\n' + cm.getLine(i);
}
}
// 下一行选中为0时应添加到上一行末
var replaceToLine = to.line;
if (to.ch === 0) {
replaceToLine = to.line - 1;
}
cm.replaceRange(content, CodeMirror.Pos(replaceToLine));
var offset = replaceToLine - from.line + 1;
cm.setSelection(CodeMirror.Pos(from.line + offset, from.ch),
CodeMirror.Pos(to.line + offset, to.ch));
};
CodeMirror.commands.copyLinesUp = function (cm) {
var content = '',
selectoion = cm.listSelections()[0];
var from = selectoion.anchor,
to = selectoion.head;
if (from.line > to.line) {
from = selectoion.head;
to = selectoion.anchor;
}
for (var i = from.line, max = to.line; i <= max; i++) {
if (to.ch !== 0 || i !== max) { // 下一行选中为0时不应添加内容
content += '\n' + cm.getLine(i);
}
}
// 下一行选中为0时应添加到上一行末
var replaceToLine = to.line;
if (to.ch === 0) {
replaceToLine = to.line - 1;
}
cm.replaceRange(content, CodeMirror.Pos(replaceToLine));
cm.setSelection(CodeMirror.Pos(from.line, from.ch),
CodeMirror.Pos(to.line, to.ch));
};
CodeMirror.commands.moveLinesUp = function (cm) {
var selectoion = cm.listSelections()[0];
var from = selectoion.anchor,
to = selectoion.head;
if (from.line > to.line) {
from = selectoion.head;
to = selectoion.anchor;
}
if (from.line === 0) {
return false;
}
// 下一行选中为0时应添加到上一行末
var replaceToLine = to.line;
if (to.ch === 0) {
replaceToLine = to.line - 1;
}
cm.replaceRange('\n' + cm.getLine(from.line - 1), CodeMirror.Pos(replaceToLine));
if (from.line === 1) {
// 移除第一行的换行
cm.replaceRange('', CodeMirror.Pos(0, 0),
CodeMirror.Pos(1, 0));
} else {
cm.replaceRange('', CodeMirror.Pos(from.line - 2, cm.getLine(from.line - 2).length),
CodeMirror.Pos(from.line - 1, cm.getLine(from.line - 1).length));
}
cm.setSelection(CodeMirror.Pos(from.line - 1, from.ch),
CodeMirror.Pos(to.line - 1, to.ch));
};
CodeMirror.commands.moveLinesDown = function (cm) {
var selectoion = cm.listSelections()[0];
var from = selectoion.anchor,
to = selectoion.head;
if (from.line > to.line) {
from = selectoion.head;
to = selectoion.anchor;
}
if (to.line === cm.lastLine()) {
return false;
}
// 下一行选中为0时应添加到上一行末
var replaceToLine = to.line;
if (to.ch === 0) {
replaceToLine = to.line - 1;
}
// 把选中的下一行添加到选中区域的上一行
if (from.line === 0) {
cm.replaceRange(cm.getLine(replaceToLine + 1) + '\n', CodeMirror.Pos(0, 0));
} else {
cm.replaceRange('\n' + cm.getLine(replaceToLine + 1), CodeMirror.Pos(from.line - 1));
}
// 删除选中的下一行
cm.replaceRange('', CodeMirror.Pos(replaceToLine + 1, cm.getLine(replaceToLine + 1).length),
CodeMirror.Pos(replaceToLine + 2, cm.getLine(replaceToLine + 2).length));
cm.setSelection(CodeMirror.Pos(from.line + 1, from.ch),
CodeMirror.Pos(to.line + 1, to.ch));
};
2014-09-25 05:46:24 +04:00
CodeMirror.commands.jumpToDecl = function (cm) {
var cur = wide.curEditor.getCursor();
var request = newWideRequest();
2014-09-25 12:40:05 +04:00
request.path = $(".edit-panel .tabs .current > span:eq(0)").attr("title");
2014-09-25 05:46:24 +04:00
request.code = wide.curEditor.getValue();
request.cursorLine = cur.line;
request.cursorCh = cur.ch;
$.ajax({
type: 'POST',
2019-05-17 04:27:22 +03:00
url: '/find/decl',
2014-09-25 05:46:24 +04:00
data: JSON.stringify(request),
dataType: "json",
2015-11-24 10:42:28 +03:00
success: function (result) {
2019-05-24 16:52:17 +03:00
if (0 != result.code) {
2014-09-25 05:46:24 +04:00
return;
}
2015-11-24 10:42:28 +03:00
var data = result.data;
2014-09-25 05:46:24 +04:00
2014-11-18 05:51:26 +03:00
var tId = tree.getTIdByPath(data.path);
wide.curNode = tree.fileTree.getNodeByTId(tId);
tree.fileTree.selectNode(wide.curNode);
2014-09-25 05:46:24 +04:00
2014-11-18 05:51:26 +03:00
tree.openFile(wide.curNode, CodeMirror.Pos(data.cursorLine - 1, data.cursorCh - 1));
2014-09-25 05:46:24 +04:00
}
});
};
CodeMirror.commands.findUsages = function (cm) {
var cur = wide.curEditor.getCursor();
var request = newWideRequest();
2014-10-10 07:18:52 +04:00
request.path = $(".edit-panel .tabs .current > span:eq(0)").attr("title");
2014-09-25 05:46:24 +04:00
request.code = wide.curEditor.getValue();
request.cursorLine = cur.line;
request.cursorCh = cur.ch;
$.ajax({
type: 'POST',
2019-05-17 04:27:22 +03:00
url: '/find/usages',
2014-09-25 05:46:24 +04:00
data: JSON.stringify(request),
dataType: "json",
2015-11-24 10:42:28 +03:00
success: function (result) {
2019-05-24 16:52:17 +03:00
if (0 != result.code) {
2014-09-25 05:46:24 +04:00
return;
}
2015-11-24 10:42:28 +03:00
editors.appendSearch(result.data, 'usages', '');
2014-09-25 05:46:24 +04:00
}
});
};
2014-12-11 19:11:35 +03:00
CodeMirror.commands.selectIdentifier = function (cm) {
var cur = cm.getCursor();
var word = cm.findWordAt(cur);
cm.extendSelection(word.anchor, word.head);
};
2014-09-25 05:46:24 +04:00
},
2014-10-12 18:00:26 +04:00
appendSearch: function (data, type, key) {
2014-12-23 10:40:28 +03:00
var searcHTML = '<ul class="list">',
key = key.toLowerCase();
2014-10-12 18:00:26 +04:00
for (var i = 0, ii = data.length; i < ii; i++) {
2014-12-23 10:40:28 +03:00
var contents = '',
lowerCaseContents = data[i].contents[0].toLowerCase(),
matches = lowerCaseContents.split(key),
startIndex = 0,
endIndex = 0;
for (var j = 0, max = matches.length; j < max; j++) {
startIndex = endIndex + matches[j].length;
endIndex = startIndex + key.length;
var keyWord = data[i].contents[0].substring(startIndex, endIndex);
if (keyWord !== '') {
keyWord = '<b>' + keyWord + '</b>';
}
2015-01-04 11:37:13 +03:00
contents += data[i].contents[0].substring(startIndex - matches[j].length, startIndex) + keyWord;
2014-12-23 10:40:28 +03:00
}
2014-10-12 18:00:26 +04:00
searcHTML += '<li title="' + data[i].path + '">'
2014-11-17 12:35:35 +03:00
+ contents + "&nbsp;&nbsp;&nbsp;&nbsp;<span class='ft-small'>" + data[i].path
2014-10-12 18:00:26 +04:00
+ '<i class="position" data-line="'
+ data[i].line + '" data-ch="' + data[i].ch + '"> (' + data[i].line + ':'
+ data[i].ch + ')</i></span></li>';
}
2014-12-30 11:51:19 +03:00
2014-12-23 12:25:07 +03:00
if (data.length === 0) {
searcHTML += '<li>' + config.label.search_no_match + '</li>';
}
2014-10-12 18:00:26 +04:00
searcHTML += '</ul>';
var $search = $('.bottom-window-group .search'),
2014-10-23 06:05:05 +04:00
title = config.label.find_usages;
2014-10-12 18:00:26 +04:00
if (type === "founds") {
title = config.label.search_text;
}
if ($search.find("ul").length === 0) {
2014-11-06 06:58:55 +03:00
bottomGroup.searchTab = new Tabs({
2014-10-12 09:40:07 +04:00
id: ".bottom-window-group .search",
removeAfter: function (id, prevId) {
2014-10-12 18:00:26 +04:00
if ($search.find("ul").length === 1) {
$search.find(".tabs").hide();
2014-10-12 09:40:07 +04:00
}
}
});
2014-10-12 18:00:26 +04:00
$search.on("click", "li", function () {
$search.find("li").removeClass("selected");
$(this).addClass("selected");
});
$search.on("dblclick", "li", function () {
var $it = $(this),
tId = tree.getTIdByPath($it.attr("title"));
tree.openFile(tree.fileTree.getNodeByTId(tId));
tree.fileTree.selectNode(wide.curNode);
2014-11-05 08:49:11 +03:00
var line = $it.find(".position").data("line") - 1;
var cursor = CodeMirror.Pos(line, $it.find(".position").data("ch") - 1);
2014-11-05 08:49:11 +03:00
var editor = wide.curEditor;
editor.setCursor(cursor);
var half = Math.floor(editor.getScrollInfo().clientHeight / editor.defaultTextHeight() / 2);
var cursorCoords = editor.cursorCoords({line: cursor.line - half, ch: 0}, "local");
editor.scrollTo(0, cursorCoords.top);
2014-11-05 08:49:11 +03:00
2014-10-12 18:00:26 +04:00
wide.curEditor.focus();
});
$search.find(".tabs-panel > div").append(searcHTML);
$search.find(".tabs .first").text(title);
} else {
$search.find(".tabs").show();
2014-11-06 06:58:55 +03:00
bottomGroup.searchTab.add({
2014-10-12 18:00:26 +04:00
"id": "search" + (new Date()).getTime(),
"title": title,
"content": searcHTML
2014-10-12 09:40:07 +04:00
});
}
// focus
2014-11-06 06:58:55 +03:00
bottomGroup.tabs.setCurrent("search");
2014-10-12 09:40:07 +04:00
windows.flowBottom();
$(".bottom-window-group .search").focus();
},
2014-09-25 05:46:24 +04:00
// 新建一个编辑器 Tab如果已经存在 Tab 则切换到该 Tab.
2014-11-18 05:51:26 +03:00
newEditor: function (data, cursor) {
2015-04-27 09:36:35 +03:00
var id = wide.curNode.id;
2015-08-15 06:34:18 +03:00
2014-09-25 05:46:24 +04:00
editors.tabs.add({
id: id,
title: '<span title="' + wide.curNode.path + '"><span class="'
+ wide.curNode.iconSkin + 'ico"></span>' + wide.curNode.name + '</span>',
content: '<textarea id="editor' + id + '"></textarea>'
});
2014-10-17 10:47:29 +04:00
2019-05-20 12:36:16 +03:00
menu.undisabled(['save-all', 'close-all', 'build', 'run', 'go-test', 'go-vet', 'go-mod', 'go-install',
2014-12-06 16:56:05 +03:00
'find', 'find-next', 'find-previous', 'replace', 'replace-all',
2014-12-09 11:46:52 +03:00
'format', 'autocomplete', 'jump-to-decl', 'expr-info', 'find-usages', 'toggle-comment',
'edit']);
2014-09-25 05:46:24 +04:00
2014-10-27 09:42:33 +03:00
var textArea = document.getElementById("editor" + id);
2014-12-01 09:49:16 +03:00
textArea.value = data.content;
2014-10-27 09:42:33 +03:00
var editor = CodeMirror.fromTextArea(textArea, {
2014-09-25 05:46:24 +04:00
lineNumbers: true,
autofocus: true,
autoCloseBrackets: true,
matchBrackets: true,
highlightSelectionMatches: {showToken: /\w/},
2014-11-18 05:29:08 +03:00
rulers: [{color: "#ccc", column: 120, lineStyle: "dashed"}],
2014-09-25 05:46:24 +04:00
styleActiveLine: true,
2014-11-30 05:18:17 +03:00
theme: config.editorTheme,
2014-12-01 09:49:16 +03:00
tabSize: config.editorTabSize,
2014-09-25 05:46:24 +04:00
indentUnit: 4,
2015-09-17 16:43:49 +03:00
indentWithTabs: true,
2014-09-25 05:46:24 +04:00
foldGutter: true,
cursorHeight: 1,
2014-11-02 18:04:43 +03:00
path: data.path,
2015-07-23 11:31:37 +03:00
readOnly: wide.curNode.isGOAPI,
2015-03-18 17:04:51 +03:00
profile: 'xhtml', // define Emmet output profile
2014-09-25 05:46:24 +04:00
extraKeys: {
"Ctrl-\\": "autocompleteAnyWord",
".": "autocompleteAfterDot",
2014-12-06 16:56:05 +03:00
"Ctrl-/": 'toggleComment',
2014-10-10 07:18:52 +04:00
"Ctrl-I": "exprInfo",
2014-10-23 06:05:05 +04:00
"Ctrl-L": "gotoLine",
2014-09-25 05:46:24 +04:00
"Ctrl-E": "deleteLine",
"Ctrl-D": "doNothing", // 取消默认的 deleteLine
"Ctrl-B": "jumpToDecl",
"Ctrl-S": function () {
wide.saveFile();
},
"Shift-Ctrl-S": function () {
2014-11-18 05:03:08 +03:00
menu.saveAllFiles();
2014-09-25 05:46:24 +04:00
},
"Shift-Alt-F": function () {
2014-10-17 10:47:29 +04:00
var currentPath = editors.getCurrentPath();
if (!currentPath) {
return false;
}
wide.fmt(currentPath, wide.curEditor);
2014-09-25 05:46:24 +04:00
},
2014-10-22 09:38:52 +04:00
"Alt-F7": "findUsages",
"Shift-Alt-Enter": function () {
if (windows.isMaxEditor) {
windows.restoreEditor();
} else {
windows.maxEditor();
}
2014-11-05 06:36:13 +03:00
},
2014-12-09 11:46:52 +03:00
"Shift-Ctrl-Up": "copyLinesUp",
"Shift-Ctrl-Down": "copyLinesDown",
"Shift-Alt-Up": "moveLinesUp",
2014-12-11 19:11:35 +03:00
"Shift-Alt-Down": "moveLinesDown",
"Shift-Alt-J": "selectIdentifier"
2014-09-25 05:46:24 +04:00
}
});
2015-03-21 15:22:53 +03:00
2015-03-18 17:04:51 +03:00
if ("text/html" === data.mode) {
2015-03-21 15:22:53 +03:00
emmetCodeMirror(editor);
2015-03-18 17:04:51 +03:00
}
2014-09-25 05:46:24 +04:00
editor.on('cursorActivity', function (cm) {
2014-10-10 14:04:03 +04:00
$(".edit-exprinfo").remove();
2014-09-25 05:46:24 +04:00
var cursor = cm.getCursor();
2014-09-25 12:03:14 +04:00
$(".footer .cursor").text('| ' + (cursor.line + 1) + ':' + (cursor.ch + 1) + ' |');
2014-09-25 05:46:24 +04:00
});
2014-10-10 14:04:03 +04:00
editor.on('blur', function (cm) {
$(".edit-exprinfo").remove();
});
2014-10-31 10:54:54 +03:00
editor.on('changes', function (cm) {
2015-05-11 10:46:17 +03:00
if (cm.doc.isClean()) { // no modification
2014-11-02 18:04:43 +03:00
$(".edit-panel .tabs > div").each(function () {
var $span = $(this).find("span:eq(0)");
if ($span.attr("title") === cm.options.path) {
$span.removeClass("changed");
}
});
2015-06-14 09:43:09 +03:00
return;
}
// changed
$(".edit-panel .tabs > div").each(function () {
var $span = $(this).find("span:eq(0)");
if ($span.attr("title") === cm.options.path) {
$span.addClass("changed");
}
});
2015-08-15 06:34:18 +03:00
});
2015-06-14 09:43:09 +03:00
2015-08-15 06:34:18 +03:00
editor.on('keydown', function (cm, evt) {
if (evt.altKey || evt.ctrlKey || evt.shiftKey) {
return;
}
var k = evt.which;
if (k < 48) {
return;
}
2015-08-15 06:34:18 +03:00
// hit [0-9]
if (k > 57 && k < 65) {
return;
}
// hit [a-z]
if (k > 90) {
return;
}
if (config.autocomplete) {
if (0.5 <= Math.random()) {
2015-06-14 09:43:09 +03:00
CodeMirror.commands.autocompleteAfterDot(cm);
}
2014-10-31 10:54:54 +03:00
}
});
2014-09-25 11:56:26 +04:00
editor.setSize('100%', $(".edit-panel").height() - $(".edit-panel .tabs").height());
2014-10-10 14:04:03 +04:00
editor.setOption("mode", data.mode);
2014-09-25 05:46:24 +04:00
editor.setOption("gutters", ["CodeMirror-lint-markers", "CodeMirror-foldgutter"]);
2015-05-11 10:46:17 +03:00
if ("wide" !== config.keymap) {
editor.setOption("keyMap", config.keymap);
}
2014-09-25 05:46:24 +04:00
if ("text/x-go" === data.mode || "application/json" === data.mode) {
editor.setOption("lint", true);
}
if ("application/xml" === data.mode || "text/html" === data.mode) {
editor.setOption("autoCloseTags", true);
}
2014-10-10 14:04:03 +04:00
2014-09-25 05:46:24 +04:00
wide.curEditor = editor;
editors.data.push({
"editor": editor,
"id": id
});
2014-11-18 05:29:08 +03:00
$(".footer .cursor").text('| ' + (cursor.line + 1) + ':' + (cursor.ch + 1) + ' |');
2014-11-18 05:51:26 +03:00
var half = Math.floor(wide.curEditor.getScrollInfo().clientHeight / wide.curEditor.defaultTextHeight() / 2);
var cursorCoords = wide.curEditor.cursorCoords({line: cursor.line - half, ch: 0}, "local");
wide.curEditor.scrollTo(0, cursorCoords.top);
2014-11-18 05:29:08 +03:00
editor.setCursor(cursor);
editor.focus();
2014-09-25 05:46:24 +04:00
}
2014-09-26 11:39:13 +04:00
};