1
1
import * as React from 'react' ;
2
2
import { useEffect , useState } from 'react' ;
3
- import {
4
- Card ,
5
- CardBody ,
6
- CardTitle ,
7
- Text ,
8
- TextContent ,
9
- Tooltip
10
- } from '@patternfly/react-core' ;
3
+ import { Card , CardBody , CardTitle , Text , TextContent , Tooltip } from '@patternfly/react-core' ;
11
4
import { Application } from '../types' ;
12
- import { extractEnvironmentVariables , extractMountedConfigMaps , extractMountedSecrets } from '../utils' ;
5
+ import {
6
+ extractEnvironmentVariables ,
7
+ extractMountedConfigMaps ,
8
+ extractMountedSecrets ,
9
+ } from '../utils' ;
13
10
import { ResourceLink } from '@openshift-console/dynamic-plugin-sdk' ;
14
11
15
- const ApplicationConfigurationCard : React . FC < { application : Application } > = ( { application } ) => {
16
-
12
+ const ApplicationConfigurationCard : React . FC < { application : Application } > = ( { application } ) => {
17
13
type Description = {
18
- [ key : string ] : string
14
+ [ key : string ] : string ;
19
15
} ;
20
16
21
17
const [ envVars , setEnvVars ] = useState ( { } ) ;
@@ -27,9 +23,9 @@ const ApplicationConfigurationCard: React.FC<{application: Application }> = ({ a
27
23
useEffect ( ( ) => {
28
24
Object . entries ( envVars ) . forEach ( ( [ key , _ ] ) => {
29
25
fetchCamelConfigInfo ( envVarToProperty ( key ) ) . then ( ( description ) => {
30
- setDescriptions ( prevDescriptions => ( {
26
+ setDescriptions ( ( prevDescriptions ) => ( {
31
27
...prevDescriptions ,
32
- [ key ] : description
28
+ [ key ] : description ,
33
29
} ) ) ;
34
30
} ) ;
35
31
} ) ;
@@ -43,7 +39,6 @@ const ApplicationConfigurationCard: React.FC<{application: Application }> = ({ a
43
39
}
44
40
} , [ application ] ) ;
45
41
46
-
47
42
function descriptionSafe ( key : string ) : string {
48
43
return descriptions && descriptions [ key ] ? descriptions [ key ] : key ;
49
44
}
@@ -58,10 +53,9 @@ const ApplicationConfigurationCard: React.FC<{application: Application }> = ({ a
58
53
}
59
54
*/
60
55
61
-
62
56
async function fetchCamelConfigInfo ( propertyName : string ) : Promise < string > {
63
57
// Split the property to find the last segment which is usually the actual property name
64
- // const envVarName = propertyToEnvVar(propertyName);
58
+ // const envVarName = propertyToEnvVar(propertyName);
65
59
66
60
// Fetch the Camel configuration guide page
67
61
const response = await fetch ( 'https://quarkus.io/guides/all-config' ) ;
@@ -88,13 +82,14 @@ const ApplicationConfigurationCard: React.FC<{application: Application }> = ({ a
88
82
89
83
if ( keyCell && descriptionCell && keyCell . textContent . includes ( propertyName ) ) {
90
84
// If the config key matches the property name, get the description
91
- info = descriptionCell . textContent . split ( '\n' )
85
+ info =
86
+ descriptionCell . textContent
87
+ . split ( '\n' )
92
88
. filter ( ( line ) => ! line . startsWith ( propertyName ) )
93
89
. filter ( ( line ) => ! line . startsWith ( 'Environment Variable' ) )
94
90
. filter ( ( line ) => ! line . startsWith ( 'Show more' ) )
95
- . join ( '\n' ) + ' \n'
96
- 'Defaults to (' + typeCell . textContent . trim ( ) + '): ' + defaultCell . textContent . trim ( ) ;
97
-
91
+ . join ( '\n' ) + ' \n' ;
92
+ 'Defaults to (' + typeCell . textContent . trim ( ) + '): ' + defaultCell . textContent . trim ( ) ;
98
93
}
99
94
} ) ;
100
95
} ) ;
@@ -105,22 +100,20 @@ const ApplicationConfigurationCard: React.FC<{application: Application }> = ({ a
105
100
< Card >
106
101
< CardTitle > Configuration</ CardTitle >
107
102
< CardBody >
108
- { application &&
103
+ { application && (
109
104
< TextContent >
110
105
< Text component = "p" > Name: { application . metadata . name } </ Text >
111
106
< Text component = "p" > Environment Variables:</ Text >
112
107
< ul >
113
- { Object . entries ( envVars ) . map (
114
- ( [ key , value ] ) => (
115
- < li key = { key } >
116
- < Tooltip content = { descriptionSafe ( key ) } >
117
- < >
108
+ { Object . entries ( envVars ) . map ( ( [ key , value ] ) => (
109
+ < li key = { key } >
110
+ < Tooltip content = { descriptionSafe ( key ) } >
111
+ < >
118
112
< strong > { key } :</ strong > { value }
119
- </ >
120
- </ Tooltip >
121
- </ li >
122
- )
123
- ) }
113
+ </ >
114
+ </ Tooltip >
115
+ </ li >
116
+ ) ) }
124
117
</ ul >
125
118
< Text component = "p" > Secrets:</ Text >
126
119
< ul >
@@ -131,7 +124,8 @@ const ApplicationConfigurationCard: React.FC<{application: Application }> = ({ a
131
124
kind = "Secret"
132
125
name = { secret }
133
126
namespace = { application . metadata . namespace }
134
- linkTo = { true } />
127
+ linkTo = { true }
128
+ />
135
129
</ li >
136
130
) ) }
137
131
</ ul >
@@ -144,16 +138,16 @@ const ApplicationConfigurationCard: React.FC<{application: Application }> = ({ a
144
138
kind = "ConfigMap"
145
139
name = { configMap }
146
140
namespace = { application . metadata . namespace }
147
- linkTo = { true } />
141
+ linkTo = { true }
142
+ />
148
143
</ li >
149
144
) ) }
150
145
</ ul >
151
146
</ TextContent >
152
- }
147
+ ) }
153
148
</ CardBody >
154
149
</ Card >
155
150
) ;
156
151
} ;
157
152
158
153
export default ApplicationConfigurationCard ;
159
-
0 commit comments