Skip to content

Commit f5cfdd9

Browse files
authored
Merge pull request acidonper#11 from acidonper/develop
Develop
2 parents 58357b9 + 11c22d2 commit f5cfdd9

File tree

9 files changed

+51
-38
lines changed

9 files changed

+51
-38
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
/node_modules
55
/.pnp
66
.pnp.js
7+
.env
78

89
# testing
910
/coverage

public/quarkus.png

58.3 KB
Loading

src/domain/AppService.spec.ts

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import { AppService } from './AppService';
2+
3+
describe('AppService Interface', () => {
4+
it('should instantiate a AppService Object', () => {
5+
const appService: AppService = {
6+
id: '1',
7+
jump: '/jump_path',
8+
name: '/last_path',
9+
img: 'jump1'
10+
};
11+
12+
expect(appService).toBeTruthy();
13+
});
14+
});

src/domain/AppService.ts

+6
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
export interface AppService {
2+
id: string;
3+
jump: string;
4+
name: string;
5+
img: string;
6+
}

src/infrastructure/postJump.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,13 @@ export const sentJump = async (
66
url: string,
77
data: Jump
88
): Promise<ResponseBack> => {
9+
10+
const unix_date = new Date().getTime()
911
// Define options with headers
1012
const options = {
1113
headers: {
1214
'Content-Type': 'application/json',
13-
'React-modifier': 'true',
15+
'React-modifier': unix_date,
1416
},
1517
};
1618

src/ui/header/Header.spec.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ describe('Test React Multi Component Header', () => {
1313

1414
expect(logoDiv).toBeTruthy();
1515
expect(imgName).toBe('Jump Logo');
16-
expect(h1[0]).toHaveTextContent('Jump App v2.0 DEV');
16+
expect(h1[0]).toHaveTextContent('Jump App v2.');
1717
});
1818
});

src/ui/header/Header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ export const Header: React.FunctionComponent<Props> = () => {
1414
<a href='/'>
1515
<Logo size='xxl'></Logo>
1616
</a>
17-
<h1>Jump App v2.0 DEV</h1>
17+
<h1>Jump App v2.1 DEV</h1>
1818
</div>
1919
</>
2020
);

src/ui/home/Home.module.css

+1-2
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
display: flex;
1818
flex-direction: row;
1919
padding-top: var(--m);
20-
padding-left: var(--l);
2120
}
2221

2322
.jumps-buttons-images-item {
@@ -61,7 +60,7 @@
6160
background-image: var(--secondary-color);
6261
color: var(--on-secondary-color);
6362
padding: var(--l);
64-
margin-left: var(--xl);
63+
margin-left: var(--l);
6564
display: flex;
6665
min-width: 25vh;
6766
flex-direction: column;

src/ui/home/Home.tsx

+24-33
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ import { bind } from '../../utils/bind';
33
import styles from './Home.module.css';
44
import { sentJump } from '../../infrastructure/postJump';
55
import { ResponseBack } from '../../domain/ResponseBack';
6+
import { AppService } from '../../domain/AppService';
67
import { JumpLog } from '../../domain/JumpLog';
78
import { DragDropContext, Droppable, Draggable } from 'react-beautiful-dnd';
89
import { Jump } from '../../domain/Jump';
@@ -17,25 +18,32 @@ export const Home: React.FunctionComponent<Props> = () => {
1718
const appSpringboot =
1819
process.env.REACT_APP_SPRINGBOOT || 'http://springboot:8443';
1920
const appPython = process.env.REACT_APP_PYTHON || 'http://python:8444';
21+
const appQuarkus = process.env.REACT_APP_QUARKUS || 'http://quarkus:8080';
2022

21-
const golang = {
23+
const golang: AppService = {
2224
id: '1',
2325
jump: appGolang,
2426
name: 'Golang',
2527
img: './golang.png'
2628
};
27-
const springboot = {
29+
const springboot: AppService = {
2830
id: '2',
2931
jump: appSpringboot,
3032
name: 'Springboot',
3133
img: './springboot.png'
3234
};
33-
const python = {
35+
const python: AppService = {
3436
id: '3',
3537
jump: appPython,
3638
name: 'Python',
3739
img: './python.png'
3840
};
41+
const quarkus: AppService = {
42+
id: '4',
43+
jump: appQuarkus,
44+
name: 'Quarkus',
45+
img: './quarkus.png'
46+
};
3947

4048
const jumps = [golang, springboot, python];
4149
const jumpLogTest = {
@@ -87,33 +95,8 @@ export const Home: React.FunctionComponent<Props> = () => {
8795
setCallLogs({ ...item });
8896
}
8997
};
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 };
117100
if (data.length > 0) {
118101
const newid = parseInt(data[data.length - 1].id) + 1;
119102
item.id = newid.toString();
@@ -140,28 +123,36 @@ export const Home: React.FunctionComponent<Props> = () => {
140123
<div className={cx('jumps-buttons-images')}>
141124
<div className={cx('jumps-buttons-images-item')}>
142125
<img
143-
onClick={addSpJump}
126+
onClick={() => addJump(springboot)}
144127
src={springboot.img}
145128
alt={springboot.name}
146129
className={cx('jumps-buttons-button-img')}
147130
/>
148131
</div>
149132
<div className={cx('jumps-buttons-images-item')}>
150133
<img
151-
onClick={addGoJump}
134+
onClick={() => addJump(golang)}
152135
src={golang.img}
153136
alt={golang.name}
154137
className={cx('jumps-buttons-button-img')}
155138
/>
156139
</div>
157140
<div className={cx('jumps-buttons-images-item')}>
158141
<img
159-
onClick={addPyJump}
142+
onClick={() => addJump(python)}
160143
src={python.img}
161144
alt={python.name}
162145
className={cx('jumps-buttons-button-img')}
163146
/>
164147
</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>
165156
</div>
166157
</div>
167158
<div>

0 commit comments

Comments
 (0)