@@ -3,6 +3,7 @@ import { bind } from '../../utils/bind';
3
3
import styles from './Home.module.css' ;
4
4
import { sentJump } from '../../infrastructure/postJump' ;
5
5
import { ResponseBack } from '../../domain/ResponseBack' ;
6
+ import { AppService } from '../../domain/AppService' ;
6
7
import { JumpLog } from '../../domain/JumpLog' ;
7
8
import { DragDropContext , Droppable , Draggable } from 'react-beautiful-dnd' ;
8
9
import { Jump } from '../../domain/Jump' ;
@@ -17,25 +18,32 @@ export const Home: React.FunctionComponent<Props> = () => {
17
18
const appSpringboot =
18
19
process . env . REACT_APP_SPRINGBOOT || 'http://springboot:8443' ;
19
20
const appPython = process . env . REACT_APP_PYTHON || 'http://python:8444' ;
21
+ const appQuarkus = process . env . REACT_APP_QUARKUS || 'http://quarkus:8080' ;
20
22
21
- const golang = {
23
+ const golang : AppService = {
22
24
id : '1' ,
23
25
jump : appGolang ,
24
26
name : 'Golang' ,
25
27
img : './golang.png'
26
28
} ;
27
- const springboot = {
29
+ const springboot : AppService = {
28
30
id : '2' ,
29
31
jump : appSpringboot ,
30
32
name : 'Springboot' ,
31
33
img : './springboot.png'
32
34
} ;
33
- const python = {
35
+ const python : AppService = {
34
36
id : '3' ,
35
37
jump : appPython ,
36
38
name : 'Python' ,
37
39
img : './python.png'
38
40
} ;
41
+ const quarkus : AppService = {
42
+ id : '4' ,
43
+ jump : appQuarkus ,
44
+ name : 'Quarkus' ,
45
+ img : './quarkus.png'
46
+ } ;
39
47
40
48
const jumps = [ golang , springboot , python ] ;
41
49
const jumpLogTest = {
@@ -87,33 +95,8 @@ export const Home: React.FunctionComponent<Props> = () => {
87
95
setCallLogs ( { ...item } ) ;
88
96
}
89
97
} ;
90
-
91
- const addGoJump = ( ) => {
92
- const item = { ...golang } ;
93
- if ( data . length > 0 ) {
94
- const newid = parseInt ( data [ data . length - 1 ] . id ) + 1 ;
95
- item . id = newid . toString ( ) ;
96
- console . log ( item ) ;
97
- setData ( [ ...data , item ] ) ;
98
- } else {
99
- item . id = '1' ;
100
- setData ( [ item ] ) ;
101
- }
102
- } ;
103
- const addSpJump = ( ) => {
104
- const item = { ...springboot } ;
105
- if ( data . length > 0 ) {
106
- const newid = parseInt ( data [ data . length - 1 ] . id ) + 1 ;
107
- item . id = newid . toString ( ) ;
108
- console . log ( item ) ;
109
- setData ( [ ...data , item ] ) ;
110
- } else {
111
- item . id = '1' ;
112
- setData ( [ item ] ) ;
113
- }
114
- } ;
115
- const addPyJump = ( ) => {
116
- const item = { ...python } ;
98
+ const addJump = ( obj : AppService ) => {
99
+ const item = { ...obj } ;
117
100
if ( data . length > 0 ) {
118
101
const newid = parseInt ( data [ data . length - 1 ] . id ) + 1 ;
119
102
item . id = newid . toString ( ) ;
@@ -140,28 +123,36 @@ export const Home: React.FunctionComponent<Props> = () => {
140
123
< div className = { cx ( 'jumps-buttons-images' ) } >
141
124
< div className = { cx ( 'jumps-buttons-images-item' ) } >
142
125
< img
143
- onClick = { addSpJump }
126
+ onClick = { ( ) => addJump ( springboot ) }
144
127
src = { springboot . img }
145
128
alt = { springboot . name }
146
129
className = { cx ( 'jumps-buttons-button-img' ) }
147
130
/>
148
131
</ div >
149
132
< div className = { cx ( 'jumps-buttons-images-item' ) } >
150
133
< img
151
- onClick = { addGoJump }
134
+ onClick = { ( ) => addJump ( golang ) }
152
135
src = { golang . img }
153
136
alt = { golang . name }
154
137
className = { cx ( 'jumps-buttons-button-img' ) }
155
138
/>
156
139
</ div >
157
140
< div className = { cx ( 'jumps-buttons-images-item' ) } >
158
141
< img
159
- onClick = { addPyJump }
142
+ onClick = { ( ) => addJump ( python ) }
160
143
src = { python . img }
161
144
alt = { python . name }
162
145
className = { cx ( 'jumps-buttons-button-img' ) }
163
146
/>
164
147
</ div >
148
+ < div className = { cx ( 'jumps-buttons-images-item' ) } >
149
+ < img
150
+ onClick = { ( ) => addJump ( quarkus ) }
151
+ src = { quarkus . img }
152
+ alt = { quarkus . name }
153
+ className = { cx ( 'jumps-buttons-button-img' ) }
154
+ />
155
+ </ div >
165
156
</ div >
166
157
</ div >
167
158
< div >
0 commit comments