@@ -25,19 +25,19 @@ export class Config {
25
25
public get dgmlGraphLayout ( ) : string { return this . getSetting < string > ( 'dgmlGraph.graphLayout' , 'Sugiyama' ) ; }
26
26
public get dgmlGraphDirection ( ) : string { return this . getSetting < string > ( 'dgmlGraph.graphDirection' , 'LeftToRight' ) ; }
27
27
public readonly dgmlZoomLevel = '-1' ;
28
-
28
+
29
29
// DependencyInjectionGraph
30
30
public get dependencyInjectionPngFilename ( ) : string { return this . getSetting < string > ( 'dependencyInjectionGraph.pngGraphFilename' , 'DependencyInjectionGraph.png' ) ; }
31
31
public get dependencyInjectionDgmlGraphFilename ( ) : string { return this . getSetting < string > ( 'dependencyInjectionGraph.dgmlGraphFilename' , 'DependencyInjectionGraph.dgml' ) ; }
32
32
public get dependencyInjectionDotGraphFilename ( ) : string { return this . getSetting < string > ( 'dependencyInjectionGraph.dotGraphFilename' , 'DependencyInjectionGraph.dot' ) ; }
33
33
public get dependencyInjectionEdgeArrowToType ( ) : string { return this . getSetting < string > ( 'dependencyInjectionGraph.edgeArrowToType' , 'triangle' ) ; }
34
-
34
+
35
35
// ShowComponentHierarchy
36
36
public get componentHierarchyPngFilename ( ) : string { return this . getSetting < string > ( 'showComponentHierarchy.componentHierarchyPngFilename' , 'ComponentHierarchy.png' ) ; }
37
37
public get componentHierarchyDgmlGraphFilename ( ) : string { return this . getSetting < string > ( 'showComponentHierarchy.componentHierarchyDgmlGraphFilename' , 'ComponentHierarchy.dgml' ) ; }
38
38
public get componentHierarchyDotGraphFilename ( ) : string { return this . getSetting < string > ( 'showComponentHierarchy.componentHierarchyDotGraphFilename' , 'ComponentHierarchy.dot' ) ; }
39
39
public get componentHierarchyEdgeArrowToType ( ) : string { return this . getSetting < string > ( 'showComponentHierarchy.edgeArrowToType' , 'triangle' ) ; }
40
-
40
+
41
41
// ShowModuleHierarchy
42
42
public get moduleHierarchyPngFilename ( ) : string { return this . getSetting < string > ( 'showModuleHierarchy.moduleHierarchyPngFilename' , 'ModuleHierarchy.png' ) ; }
43
43
public get moduleHierarchyDgmlGraphFilename ( ) : string { return this . getSetting < string > ( 'showModuleHierarchy.moduleHierarchyDgmlGraphFilename' , 'ModuleHierarchy.dgml' ) ; }
@@ -49,27 +49,28 @@ export class Config {
49
49
public get graphSelectionGuidelineWidth ( ) : number { return this . getSetting < number > ( 'graphSelection.graphSelectionGuidelineWidth' , 1 ) ; }
50
50
public get graphSelectionColor ( ) : string { return this . getSetting < string > ( 'graphSelection.graphSelectionColor' , '#e53935' ) ; }
51
51
public get graphSelectionWidth ( ) : number { return this . getSetting < number > ( 'graphSelection.graphSelectionWidth' , 2 ) ; }
52
-
52
+
53
53
// GraphNodes
54
54
public get rootNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.rootNodeBackgroundColor' , '#3abc3f' ) ; }
55
55
public get rootNodeShape ( ) : string { return this . getSetting < string > ( 'graphNodes.rootNodeShape' , 'box' ) ; }
56
- public get componentNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.componentNodeBackgroundColor' , '#0288d1' ) ; }
56
+ public get componentNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.componentNodeBackgroundColor' , '#0288d1' ) ; }
57
57
public get componentNodeShape ( ) : string { return this . getSetting < string > ( 'graphNodes.componentNodeShape' , 'box' ) ; }
58
- public get moduleNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.moduleNodeBackgroundColor' , '#e53935' ) ; }
58
+ public get moduleNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.moduleNodeBackgroundColor' , '#e53935' ) ; }
59
59
public get moduleNodeShape ( ) : string { return this . getSetting < string > ( 'graphNodes.moduleNodeShape' , 'box' ) ; }
60
- public get pipeNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.pipeNodeBackgroundColor' , '#00897b' ) ; }
60
+ public get pipeNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.pipeNodeBackgroundColor' , '#00897b' ) ; }
61
61
public get pipeNodeShape ( ) : string { return this . getSetting < string > ( 'graphNodes.pipeNodeShape' , 'box' ) ; }
62
- public get directiveNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.directiveNodeBackgroundColor' , '#ffc107' ) ; }
62
+ public get directiveNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.directiveNodeBackgroundColor' , '#ffc107' ) ; }
63
63
public get directiveNodeShape ( ) : string { return this . getSetting < string > ( 'graphNodes.directiveNodeShape' , 'box' ) ; }
64
64
public get injectableNodeBackgroundColor ( ) : string { return this . getSetting < string > ( 'graphNodes.injectableNodeBackgroundColor' , '#97c2fc' ) ; }
65
65
public get injectableNodeShape ( ) : string { return this . getSetting < string > ( 'graphNodes.injectableNodeShape' , 'box' ) ; }
66
66
public get maximumNodeLabelLength ( ) : number { return this . getSetting < number > ( 'graphNodes.maximumNodeLabelLength' , - 1 ) ; }
67
-
67
+
68
68
// Edges
69
69
public get importEdgeColor ( ) : string { return this . getSetting < string > ( 'edges.importEdgeColor' , '#43a047' ) ; }
70
70
public get exportEdgeColor ( ) : string { return this . getSetting < string > ( 'edges.exportEdgeColor' , '#0288d1' ) ; }
71
71
public get injectableEdgeColor ( ) : string { return this . getSetting < string > ( 'edges.exportEdgeColor' , '#0288d1' ) ; }
72
72
public get usesEdgeColor ( ) : string { return this . getSetting < string > ( 'edges.exportEdgeColor' , '#0288d1' ) ; }
73
+ public get routeEdgeColor ( ) : string { return this . getSetting < string > ( 'edges.routeEdgeColor' , '#0288d1' ) ; }
73
74
74
75
// Popups
75
76
public get showPopupsOverNodesAndEdges ( ) : boolean { return this . getSetting < boolean > ( 'showPopupsOverNodesAndEdges' , true ) ; }
@@ -84,5 +85,5 @@ export class Config {
84
85
public get componentHierarchyMarkdownFilename ( ) : string { return this . getSetting < string > ( 'componentHierarchyMarkdownFilename' , 'ComponentHierarchy.md' ) ; }
85
86
86
87
// ModulesMarkdown
87
- public get modulesToMarkdownFilename ( ) : string { return this . getSetting < string > ( 'modulesToMarkdownFilename' , 'Modules.md' ) ; }
88
+ public get modulesToMarkdownFilename ( ) : string { return this . getSetting < string > ( 'modulesToMarkdownFilename' , 'Modules.md' ) ; }
88
89
}
0 commit comments