mbeditor 0.8.1 → 0.10.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +85 -0
- data/README.md +31 -0
- data/app/assets/javascripts/mbeditor/application.js +3 -0
- data/app/assets/javascripts/mbeditor/components/EditorPanel.js +281 -60
- data/app/assets/javascripts/mbeditor/components/LogPanel.js +50 -1
- data/app/assets/javascripts/mbeditor/components/MbeditorApp.js +91 -16
- data/app/assets/javascripts/mbeditor/components/ProblemsPanel.js +217 -0
- data/app/assets/javascripts/mbeditor/components/QuickOpenDialog.js +34 -3
- data/app/assets/javascripts/mbeditor/editor_plugins.js +112 -52
- data/app/assets/javascripts/mbeditor/git_service.js +8 -0
- data/app/assets/javascripts/mbeditor/js_outline.js +110 -0
- data/app/assets/javascripts/mbeditor/ruby_outline.js +427 -0
- data/app/assets/stylesheets/mbeditor/editor.css +224 -5
- data/app/assets/stylesheets/mbeditor/themes.css +35 -0
- data/app/controllers/mbeditor/application_controller.rb +5 -11
- data/app/controllers/mbeditor/editors_controller.rb +34 -5
- data/app/controllers/mbeditor/git_controller.rb +11 -0
- data/app/services/mbeditor/exclusion_matcher.rb +105 -3
- data/app/services/mbeditor/file_tree_service.rb +1 -1
- data/app/services/mbeditor/git_line_diff_service.rb +99 -0
- data/app/services/mbeditor/git_service.rb +3 -10
- data/app/services/mbeditor/ruby_definition_service.rb +1 -1
- data/app/services/mbeditor/safe_path.rb +57 -0
- data/app/services/mbeditor/search_replace_service.rb +2 -2
- data/lib/mbeditor/configuration.rb +2 -1
- data/lib/mbeditor/engine.rb +3 -0
- data/lib/mbeditor/file_watcher.rb +136 -0
- data/lib/mbeditor/route_map.rb +1 -0
- data/lib/mbeditor/version.rb +1 -1
- metadata +8 -2
|
@@ -714,21 +714,11 @@
|
|
|
714
714
|
monaco.languages.typescript.javascriptDefaults.setDiagnosticsOptions({
|
|
715
715
|
noSemanticValidation: false,
|
|
716
716
|
noSyntaxValidation: false,
|
|
717
|
-
noSuggestionDiagnostics: false
|
|
718
|
-
//
|
|
719
|
-
//
|
|
720
|
-
//
|
|
721
|
-
//
|
|
722
|
-
// "did you mean" variant, 7053 dynamic index access). Suppress that
|
|
723
|
-
// false-positive family while keeping genuinely useful checks such as
|
|
724
|
-
// 2304 "Cannot find name" (undefined variables/typos).
|
|
725
|
-
//
|
|
726
|
-
// A plain-JS component that reads `props.foo` gives TS no way to know
|
|
727
|
-
// `foo` is optional, so it infers every referenced prop as REQUIRED and
|
|
728
|
-
// flags call sites that omit it (2741 "Property X is missing … but
|
|
729
|
-
// required", 2739 its multi-property form). Since optional props can't
|
|
730
|
-
// be expressed without JSDoc/TS, suppress that family too.
|
|
731
|
-
diagnosticCodesToIgnore: [2339, 2551, 7053, 2739, 2741]
|
|
717
|
+
noSuggestionDiagnostics: false
|
|
718
|
+
// No diagnosticCodesToIgnore here on purpose: JS/JSX markers are
|
|
719
|
+
// filtered by category in the marker patcher below (see JS_KEEP_CODES),
|
|
720
|
+
// which is a closed rule rather than a list that grows by one code
|
|
721
|
+
// every time a new false positive turns up.
|
|
732
722
|
});
|
|
733
723
|
monaco.languages.typescript.javascriptDefaults.setCompilerOptions({
|
|
734
724
|
target: monaco.languages.typescript.ScriptTarget.ES2020,
|
|
@@ -875,28 +865,49 @@
|
|
|
875
865
|
loadWorkspaceGlobals(monaco);
|
|
876
866
|
});
|
|
877
867
|
|
|
878
|
-
//
|
|
879
|
-
// TypeScript has no built-in way to emit these as warnings, so we intercept
|
|
880
|
-
// the marker set after the worker fires and re-apply with lower severity.
|
|
868
|
+
// Patch the TypeScript worker's markers after it fires.
|
|
881
869
|
//
|
|
882
|
-
//
|
|
883
|
-
//
|
|
884
|
-
//
|
|
885
|
-
//
|
|
886
|
-
//
|
|
887
|
-
//
|
|
888
|
-
//
|
|
889
|
-
//
|
|
890
|
-
//
|
|
891
|
-
//
|
|
892
|
-
//
|
|
893
|
-
//
|
|
894
|
-
//
|
|
895
|
-
//
|
|
896
|
-
//
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
870
|
+
// ── JS/JSX: keep only the diagnostics that are sound without types ──────
|
|
871
|
+
// Plain JS/JSX is untyped, so every *type* diagnostic TypeScript emits is
|
|
872
|
+
// an inference guess, and which way it guesses is arbitrary: state seeded
|
|
873
|
+
// with `useState({})` infers `{}` and errors on every key, while the same
|
|
874
|
+
// object from `JSON.parse` infers `any` and stays silent. Identical code,
|
|
875
|
+
// opposite verdicts. Denylisting each false-positive code as it turned up
|
|
876
|
+
// never converged — it reached eight codes and still leaked (2322 on a
|
|
877
|
+
// spread with an extra prop), because the tail is every code TypeScript
|
|
878
|
+
// has. So invert it: keep the categories below and drop the rest.
|
|
879
|
+
//
|
|
880
|
+
// • syntax errors — always real. Their codes are 1xxx (and 17xxx for
|
|
881
|
+
// the JSX-specific ones, e.g. 17008 "no corresponding closing tag"),
|
|
882
|
+
// which is why the ranges rather than a code list are matched.
|
|
883
|
+
// • 2304 "Cannot find name" — scope resolution, not type checking.
|
|
884
|
+
// Downgraded to Warning below and auto-resolved against the workspace,
|
|
885
|
+
// since host-app globals are invisible to the language service.
|
|
886
|
+
// • 6133 "declared but never read" — a lint. Downgraded to Warning.
|
|
887
|
+
// • anything below Error severity — hints and suggestions render faint
|
|
888
|
+
// and cost nothing, so they pass through untouched.
|
|
889
|
+
//
|
|
890
|
+
// Deliberately dropped along with the type errors: 2300 "Duplicate
|
|
891
|
+
// identifier" and 2403 "Subsequent variable declarations…", which are
|
|
892
|
+
// structural false positives in the Sprockets model — every open file
|
|
893
|
+
// shares one global script context, so a component in file_a.jsx looks
|
|
894
|
+
// like a redeclaration once file_b.jsx is open, and the ambient
|
|
895
|
+
// `declare var Foo: any` from workspace-globals.d.ts collides with the
|
|
896
|
+
// real `function Foo()` when its defining file is open.
|
|
897
|
+
//
|
|
898
|
+
// .ts/.tsx keeps full checking: there the types are hand-written, so a
|
|
899
|
+
// type error is a statement about code the author actually wrote.
|
|
900
|
+
var JS_KEEP_CODES = { '2304': true, '6133': true };
|
|
901
|
+
var JS_SYNTAX_CODE = /^(?:1\d{3}|17\d{3})$/;
|
|
902
|
+
var JS_WARN_CODES = { '2304': true, '6133': true };
|
|
903
|
+
var TS_WARN_CODES = { '6133': true };
|
|
904
|
+
|
|
905
|
+
function keepJsMarker(marker) {
|
|
906
|
+
if (marker.severity !== monaco.MarkerSeverity.Error) return true;
|
|
907
|
+
var code = String(marker.code == null ? '' : marker.code);
|
|
908
|
+
return JS_KEEP_CODES[code] === true || JS_SYNTAX_CODE.test(code);
|
|
909
|
+
}
|
|
910
|
+
|
|
900
911
|
var _severityPatchActive = false;
|
|
901
912
|
monaco.editor.onDidChangeMarkers(function(uris) {
|
|
902
913
|
if (_severityPatchActive) return;
|
|
@@ -906,22 +917,23 @@
|
|
|
906
917
|
var model = monaco.editor.getModel(uri);
|
|
907
918
|
if (!model) return;
|
|
908
919
|
[
|
|
909
|
-
{ owner: 'javascript',
|
|
910
|
-
{ owner: 'typescript',
|
|
920
|
+
{ owner: 'javascript', keep: keepJsMarker, warn: JS_WARN_CODES },
|
|
921
|
+
{ owner: 'typescript', keep: null, warn: TS_WARN_CODES }
|
|
911
922
|
].forEach(function(entry) {
|
|
912
923
|
var markers = monaco.editor.getModelMarkers({ resource: uri, owner: entry.owner });
|
|
913
|
-
var
|
|
914
|
-
|
|
915
|
-
return (m.severity === monaco.MarkerSeverity.Error && (entry.suppress[code] || entry.warn[code]));
|
|
916
|
-
});
|
|
917
|
-
if (!needsPatch) return;
|
|
918
|
-
monaco.editor.setModelMarkers(model, entry.owner, markers.filter(function(m) {
|
|
919
|
-
return !entry.suppress[String(m.code)];
|
|
924
|
+
var patched = markers.filter(function(m) {
|
|
925
|
+
return entry.keep ? entry.keep(m) : true;
|
|
920
926
|
}).map(function(m) {
|
|
921
927
|
return (m.severity === monaco.MarkerSeverity.Error && entry.warn[String(m.code)])
|
|
922
928
|
? Object.assign({}, m, { severity: monaco.MarkerSeverity.Warning })
|
|
923
929
|
: m;
|
|
924
|
-
})
|
|
930
|
+
});
|
|
931
|
+
// Re-applying an unchanged set would re-enter this handler
|
|
932
|
+
// forever, so only write when the patch actually changed something.
|
|
933
|
+
var changed = patched.length !== markers.length || patched.some(function(m, i) {
|
|
934
|
+
return m.severity !== markers[i].severity;
|
|
935
|
+
});
|
|
936
|
+
if (changed) monaco.editor.setModelMarkers(model, entry.owner, patched);
|
|
925
937
|
});
|
|
926
938
|
});
|
|
927
939
|
} finally {
|
|
@@ -1028,6 +1040,12 @@
|
|
|
1028
1040
|
[/(\bmodule\b)(\s+)([A-Z][\w:]*)/, ['keyword.control.module', '', 'entity.name.class']],
|
|
1029
1041
|
[/\bmodule\b/, 'keyword.control.module'],
|
|
1030
1042
|
|
|
1043
|
+
// Test DSL suites, runnable examples, hooks, and helpers
|
|
1044
|
+
[/\b(describe|context|feature)(?![a-zA-Z0-9_!?=])/, 'keyword.control.test'],
|
|
1045
|
+
[/\b(test|it|specify|example|scenario)(?![a-zA-Z0-9_!?=])/, 'entity.name.function.test'],
|
|
1046
|
+
[/\b(setup|teardown|before|after|around|subject)(?![a-zA-Z0-9_!?=])/, 'support.function.test'],
|
|
1047
|
+
[/\blet!?(?=\s|\()/, 'support.function.test'],
|
|
1048
|
+
|
|
1031
1049
|
// Language literals
|
|
1032
1050
|
[/\b(nil|true|false)\b/, 'constant.language'],
|
|
1033
1051
|
[/\b(self|super)\b/, 'variable.language'],
|
|
@@ -1364,12 +1382,51 @@
|
|
|
1364
1382
|
}).catch(function() {});
|
|
1365
1383
|
});
|
|
1366
1384
|
|
|
1385
|
+
// Target of the command links the backend rewrites ruby-lsp's file://
|
|
1386
|
+
// "Definitions" links into (see EditorsController#rewrite_lsp_hover_links).
|
|
1387
|
+
monaco.editor.registerCommand('mbeditor.openDefinition', function(_accessor, path, line) {
|
|
1388
|
+
if (!path) return;
|
|
1389
|
+
if (typeof TabManager === 'undefined' || !TabManager.openTab) return;
|
|
1390
|
+
TabManager.openTab(path, String(path).split('/').pop(), line || 1);
|
|
1391
|
+
});
|
|
1392
|
+
|
|
1367
1393
|
// Ruby method definition hover provider.
|
|
1368
1394
|
// Calls the backend /definition endpoint (Ripper-based) and renders
|
|
1369
1395
|
// the method signature and any preceding # comments as hover markdown.
|
|
1370
1396
|
// Results are cached client-side for 60 s to make re-hovers instantaneous.
|
|
1371
1397
|
var hoverCache = {};
|
|
1372
1398
|
var HOVER_CACHE_TTL_MS = 60000;
|
|
1399
|
+
var HOVER_MEMBER_LIMIT = 20;
|
|
1400
|
+
|
|
1401
|
+
// ruby-lsp's hover for a constant is a title, a Definitions link and any
|
|
1402
|
+
// doc comments — it never lists what the class/module defines. Keep the
|
|
1403
|
+
// /module_members breakdown that the legacy hover showed, appended below.
|
|
1404
|
+
// Resolves to '' (never rejects) for anything that isn't a constant.
|
|
1405
|
+
function moduleMembersMarkdown(word) {
|
|
1406
|
+
if (!/^[A-Z]/.test(word)) return Promise.resolve('');
|
|
1407
|
+
if (typeof FileService === 'undefined' || !FileService.getModuleMembers) return Promise.resolve('');
|
|
1408
|
+
|
|
1409
|
+
var key = '__members__' + word;
|
|
1410
|
+
var cached = hoverCache[key];
|
|
1411
|
+
if (cached && (Date.now() - cached.ts) < HOVER_CACHE_TTL_MS) return Promise.resolve(cached.markdown);
|
|
1412
|
+
|
|
1413
|
+
return FileService.getModuleMembers(word, {}).then(function(data) {
|
|
1414
|
+
var methods = (data && data.methods) || [];
|
|
1415
|
+
var markdown = '';
|
|
1416
|
+
if (methods.length > 0) {
|
|
1417
|
+
var lines = ['', '---', '**Methods**', ''];
|
|
1418
|
+
methods.slice(0, HOVER_MEMBER_LIMIT).forEach(function(m) {
|
|
1419
|
+
lines.push('- `' + (m.signature || m.name) + '`');
|
|
1420
|
+
});
|
|
1421
|
+
if (methods.length > HOVER_MEMBER_LIMIT) {
|
|
1422
|
+
lines.push('- _' + (methods.length - HOVER_MEMBER_LIMIT) + ' more_');
|
|
1423
|
+
}
|
|
1424
|
+
markdown = '\n\n' + lines.join('\n');
|
|
1425
|
+
}
|
|
1426
|
+
hoverCache[key] = { ts: Date.now(), markdown: markdown };
|
|
1427
|
+
return markdown;
|
|
1428
|
+
}).catch(function() { return ''; });
|
|
1429
|
+
}
|
|
1373
1430
|
|
|
1374
1431
|
// Registered for 'erb' as well as 'ruby'. In ERB the provider only fires
|
|
1375
1432
|
// inside <% %> and always uses the workspace (grep/Ripper) services:
|
|
@@ -1403,12 +1460,15 @@
|
|
|
1403
1460
|
return tryRubyLsp('hover', model, position).then(function (lsp) {
|
|
1404
1461
|
if (token && token.isCancellationRequested) return null;
|
|
1405
1462
|
if (lsp && lsp.markdown) {
|
|
1406
|
-
|
|
1407
|
-
|
|
1408
|
-
|
|
1409
|
-
|
|
1410
|
-
|
|
1411
|
-
|
|
1463
|
+
return moduleMembersMarkdown(word).then(function (members) {
|
|
1464
|
+
if (token && token.isCancellationRequested) return null;
|
|
1465
|
+
var lspResult = {
|
|
1466
|
+
range: new monaco.Range(position.lineNumber, wordInfo.startColumn, position.lineNumber, wordInfo.endColumn),
|
|
1467
|
+
contents: [{ value: lsp.markdown + members, isTrusted: true }]
|
|
1468
|
+
};
|
|
1469
|
+
hoverCache[lspKey] = { ts: Date.now(), result: lspResult };
|
|
1470
|
+
return lspResult;
|
|
1471
|
+
});
|
|
1412
1472
|
}
|
|
1413
1473
|
hoverCache[lspKey] = { ts: Date.now(), result: null };
|
|
1414
1474
|
return legacyRubyHover(model, position, token, wordInfo);
|
|
@@ -114,6 +114,13 @@ var GitService = (function () {
|
|
|
114
114
|
});
|
|
115
115
|
}
|
|
116
116
|
|
|
117
|
+
// Per-line add/modify/delete ranges for one file, used to tint line numbers.
|
|
118
|
+
function fetchLineDiff(path) {
|
|
119
|
+
return axios.get(window.mbeditorBasePath() + '/git/line_diff?file=' + encodeURIComponent(path)).then(function(res) {
|
|
120
|
+
return res.data;
|
|
121
|
+
});
|
|
122
|
+
}
|
|
123
|
+
|
|
117
124
|
function fetchFileHistory(path) {
|
|
118
125
|
return axios.get(window.mbeditorBasePath() + '/git/file_history?file=' + encodeURIComponent(path)).then(function(res) {
|
|
119
126
|
return res.data;
|
|
@@ -138,6 +145,7 @@ var GitService = (function () {
|
|
|
138
145
|
fetchInfo: fetchInfo,
|
|
139
146
|
fetchDiff: fetchDiff,
|
|
140
147
|
fetchBlame: fetchBlame,
|
|
148
|
+
fetchLineDiff: fetchLineDiff,
|
|
141
149
|
fetchFileHistory: fetchFileHistory,
|
|
142
150
|
fetchCommitGraph: fetchCommitGraph,
|
|
143
151
|
fetchCommitDetail: fetchCommitDetail
|
|
@@ -0,0 +1,110 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
// Outline entries for JS/JSX/TS from TypeScript's own navigation tree.
|
|
4
|
+
//
|
|
5
|
+
// Monaco's TypeScript worker already parses these files for diagnostics and
|
|
6
|
+
// completion, and `getNavigationTree` hands back the symbol tree it built —
|
|
7
|
+
// so unlike the Ruby outline there is no lexer here, only a translation of
|
|
8
|
+
// that tree into the entry shape the dropdown renders.
|
|
9
|
+
//
|
|
10
|
+
// The raw tree needs three fixes before it is useful as an outline:
|
|
11
|
+
// • children arrive alphabetised, not in source order
|
|
12
|
+
// • it includes every local, object-literal key and anonymous callback
|
|
13
|
+
// • an arrow function assigned to a variable is labelled 'const', exactly
|
|
14
|
+
// like `const total = 5`
|
|
15
|
+
var JsOutline = (function () {
|
|
16
|
+
var MAX_ENTRIES = 5000;
|
|
17
|
+
|
|
18
|
+
var CONTAINER_KINDS = {
|
|
19
|
+
'class': true, 'local class': true, 'interface': true,
|
|
20
|
+
'enum': true, 'module': true, 'type': true
|
|
21
|
+
};
|
|
22
|
+
var CALLABLE_KINDS = {
|
|
23
|
+
'function': true, 'local function': true, 'method': true,
|
|
24
|
+
'constructor': true, 'getter': true, 'setter': true
|
|
25
|
+
};
|
|
26
|
+
var VARIABLE_KINDS = { 'const': true, 'let': true, 'var': true };
|
|
27
|
+
|
|
28
|
+
// `= function`, `= async () =>`, `= x =>`, `= async function*`. Anchored on
|
|
29
|
+
// the assignment so a call like `const rows = build(() => 1)` stays out.
|
|
30
|
+
var FUNCTION_INITIALIZER =
|
|
31
|
+
/=\s*(?:async\s+)?(?:function\b|\(\s*[^)]*\)\s*=>|[A-Za-z_$][\w$]*\s*=>)/;
|
|
32
|
+
|
|
33
|
+
// TypeScript names anonymous callbacks after their caller: "then() callback",
|
|
34
|
+
// "React.useEffect() callback". They have no nameSpan, and neither does
|
|
35
|
+
// `export default Foo`. A constructor has no nameSpan either but is worth
|
|
36
|
+
// listing, so it is admitted by kind rather than by name.
|
|
37
|
+
function isAnonymous(item) {
|
|
38
|
+
return !item.nameSpan && item.kind !== 'constructor';
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
// 'constructor' is a TypeScript kind and also an Object.prototype key, so a
|
|
42
|
+
// bare `MAP[kind]` lookup answers truthy for it against every map.
|
|
43
|
+
function listed(map, kind) {
|
|
44
|
+
return Object.prototype.hasOwnProperty.call(map, kind);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
function entryKind(item, declarationText) {
|
|
48
|
+
if (listed(CONTAINER_KINDS, item.kind)) return 'suite';
|
|
49
|
+
if (listed(CALLABLE_KINDS, item.kind)) return 'method';
|
|
50
|
+
if (listed(VARIABLE_KINDS, item.kind) && FUNCTION_INITIALIZER.test(declarationText)) return 'method';
|
|
51
|
+
return null;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
function spanStart(item) {
|
|
55
|
+
var span = item && item.spans && item.spans[0];
|
|
56
|
+
return span ? span.start : 0;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
function inSourceOrder(items) {
|
|
60
|
+
return items.slice().sort(function (a, b) { return spanStart(a) - spanStart(b); });
|
|
61
|
+
}
|
|
62
|
+
|
|
63
|
+
// ctx.lineAt(offset) -> 1-based line number
|
|
64
|
+
// ctx.textAt(offset, length) -> source text for a span
|
|
65
|
+
function collect(items, depth, ctx, entries) {
|
|
66
|
+
var ordered = inSourceOrder(items || []);
|
|
67
|
+
|
|
68
|
+
for (var i = 0; i < ordered.length; i++) {
|
|
69
|
+
var item = ordered[i];
|
|
70
|
+
var span = item.spans && item.spans[0];
|
|
71
|
+
if (!span) continue;
|
|
72
|
+
|
|
73
|
+
// Only the declaration's own head is needed to spot an initializer, and
|
|
74
|
+
// a multi-line arrow body can be arbitrarily long.
|
|
75
|
+
var kind = isAnonymous(item) ? null : entryKind(item, ctx.textAt(span.start, Math.min(span.length, 200)));
|
|
76
|
+
|
|
77
|
+
// A skipped node still contributes its children — a component assigned
|
|
78
|
+
// to an unrecognised wrapper shouldn't take its methods down with it.
|
|
79
|
+
if (!kind) {
|
|
80
|
+
if (!collect(item.childItems, depth, ctx, entries)) return false;
|
|
81
|
+
continue;
|
|
82
|
+
}
|
|
83
|
+
|
|
84
|
+
if (entries.length >= MAX_ENTRIES) return false;
|
|
85
|
+
entries.push({
|
|
86
|
+
line: ctx.lineAt(span.start),
|
|
87
|
+
name: item.text,
|
|
88
|
+
kind: kind,
|
|
89
|
+
depth: depth,
|
|
90
|
+
visibility: null
|
|
91
|
+
});
|
|
92
|
+
|
|
93
|
+
if (!collect(item.childItems, depth + 1, ctx, entries)) return false;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
return true;
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
// The root is the file itself ('<global>' for a script, the module name for
|
|
100
|
+
// a module), so only its children are outlined.
|
|
101
|
+
function fromNavigationTree(root, ctx) {
|
|
102
|
+
var entries = [];
|
|
103
|
+
var completed = root ? collect(root.childItems, 0, ctx, entries) : true;
|
|
104
|
+
return { entries: entries, truncated: !completed };
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
return { fromNavigationTree: fromNavigationTree, MAX_ENTRIES: MAX_ENTRIES };
|
|
108
|
+
})();
|
|
109
|
+
|
|
110
|
+
window.JsOutline = JsOutline;
|