-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathoptions.ts
48 lines (40 loc) · 1.57 KB
/
options.ts
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
import * as vscode from 'vscode';
import { AutoCompletes, ClassAccessibilityLevel, IndentationStyle, Options, Replaces, TEMPLATES } from './model';
export function parseOptions(conf: vscode.WorkspaceConfiguration): Options {
return {
autoComplete: parseAutoCompletes(conf),
replaces: parseReplaces(conf)
};
}
function parseAutoCompletes(conf: vscode.WorkspaceConfiguration): AutoCompletes {
const c = conf.get('autoComplete') as AutoCompletes;
const autoCompletes = {} as unknown as AutoCompletes;
TEMPLATES.forEach(template => autoCompletes[template] = c[template] || false);
return autoCompletes;
}
function parseReplaces(conf: vscode.WorkspaceConfiguration): Replaces {
const style = conf.get('style') as IndentationStyle;
const usePrivateKeyword = conf.get('usePrivateKeyword') as boolean;
const classAccessibilityLevelKeyword = conf.get('classAccessibilityLevel') as ClassAccessibilityLevel;
const useSealedClassesKeyword = conf.get('useSealedClasses') as boolean;
const replaces: Replaces = {} as any;
// private keyword
replaces.PRIVATE = usePrivateKeyword ? 'private ' : '';
replaces.CLASS_DECLERATION =
// class accessibility level
(classAccessibilityLevelKeyword === 'none' ? '' : `${classAccessibilityLevelKeyword} `) +
// sealed keyword
(useSealedClassesKeyword ? 'sealed ' : '') +
'class';
// indentation style
if (style === 'allman') {
replaces.LINE_BREAK = '",\n\t\t\t"';
replaces.TAB = '\\t';
} else if (style === 'kr') {
replaces.LINE_BREAK = ' ';
replaces.TAB = '';
} else {
throw new Error(`Invalid style: ${style}`);
}
return replaces;
}