forked from rubyide/vscode-ruby
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFormatter.ts
More file actions
75 lines (69 loc) · 1.78 KB
/
Copy pathFormatter.ts
File metadata and controls
75 lines (69 loc) · 1.78 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import path from 'path';
import { Range, TextDocument, TextDocumentIdentifier, TextEdit } from 'vscode-languageserver';
import { RubyEnvironment } from 'vscode-ruby-common';
import {
documentConfigurationCache,
workspaceRubyEnvironmentCache,
RubyConfiguration,
} from './SettingsCache';
import { documents } from './DocumentManager';
import { URI } from 'vscode-uri';
import { from, Observable } from 'rxjs';
import { mergeMap } from 'rxjs/operators';
import {
IFormatter,
FormatterConfig,
NullFormatter,
RuboCop,
Standard,
Rufo,
RubyFMT,
Prettier,
} from './formatters';
const FORMATTER_MAP = {
rubocop: RuboCop,
standard: Standard,
rufo: Rufo,
rubyfmt: RubyFMT,
prettier: Prettier,
};
function getFormatter(
document: TextDocument,
env: RubyEnvironment,
config: RubyConfiguration,
range?: Range
): IFormatter {
// Only format if we have a formatter to use and an execution root
if (typeof config.format === 'string' && config.workspaceFolderUri) {
const executionRoot = path.dirname(URI.parse(document.uri).fsPath);
const formatterConfig: FormatterConfig = {
env,
executionRoot,
config: {
command: config.format,
useBundler: config.useBundler,
},
};
if (range) {
formatterConfig.range = range;
}
return new FORMATTER_MAP[config.format](document, formatterConfig);
} else {
return new NullFormatter();
}
}
const Formatter = {
format(ident: TextDocumentIdentifier, range?: Range): Observable<TextEdit[]> {
const document = documents.get(ident.uri);
return from(documentConfigurationCache.get(ident.uri)).pipe(
mergeMap(config =>
from(workspaceRubyEnvironmentCache.get(config.workspaceFolderUri)).pipe(
mergeMap(env => {
return getFormatter(document, env, config, range).format();
})
)
)
);
},
};
export default Formatter;