Skip to content

Commit b808ca8

Browse files
committed
2 parents e612653 + 33d8a56 commit b808ca8

25 files changed

+144
-153
lines changed

README.md

Lines changed: 20 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -601,18 +601,37 @@ Y ya estaría desplegada la aplicación en Heroku y estará accesible a traves d
601601
- **Silvia Ventura:**
602602

603603
- Descripción de tareas:
604+
Me he encargado de hacer la gráfica de las derrotas y vistorias del usuario y del karma a lo largo del tiempo. También me he encargado de hacer los diagramas que se necesitan para esta iteración
604605

605606

606607

607608

608609
- Commits más significativos:
609610

611+
https://github.com/CodeURJC-DAW-2021-22/webapp6/commit/12c5bd794d0b31def1f3848aeb348b80d299f802
612+
613+
https://github.com/CodeURJC-DAW-2021-22/webapp6/commit/dee397e92159a0446c17cfb13fa60201a9f1cd08
614+
615+
https://github.com/CodeURJC-DAW-2021-22/webapp6/commit/fa5ba30d59157d764ff48b5071c45b620642f826
616+
617+
https://github.com/CodeURJC-DAW-2021-22/webapp6/commit/19b585be3a3d97c0ae21ca9b6a4a66337b391c70
618+
619+
https://github.com/CodeURJC-DAW-2021-22/webapp6/commit/27f95aaa975cafe61085ddac60ecc5b194380a06
620+
610621
611622

612623

613624
- Ficheros más relevantes:
614625

615-
626+
https://github.com/CodeURJC-DAW-2021-22/webapp6/tree/main/frontend/src/app/components/doughnutchart
627+
628+
https://github.com/CodeURJC-DAW-2021-22/webapp6/tree/main/frontend/src/app/components/linechart
629+
630+
https://github.com/CodeURJC-DAW-2021-22/webapp6/blob/main/frontend/src/app/models/team.model.ts
631+
632+
https://github.com/CodeURJC-DAW-2021-22/webapp6/blob/main/frontend/src/app/models/match.model.ts
633+
634+
https://github.com/CodeURJC-DAW-2021-22/webapp6/blob/main/frontend/src/app/appconfig.ts
616635
## Vídeo
617636

618637
<link del video en YT>

backend/docker/create_image.sh

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,12 @@
22

33
cd ../../frontend
44

5-
npm install
5+
# npm install
66

77
ng build --prod --base-href="/new/"
88

9+
rm -r ../backend/src/main/resources/public/new/*
10+
911
cp -r dist/frontend/* ../backend/src/main/resources/public/new/
1012

1113
cd ../backend/docker

backend/src/main/java/es/webapp6/padelante/ExamplesGenerator.java

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -81,16 +81,21 @@ public void init() throws IOException,URISyntaxException{
8181
User user18 = new User("Almudena", passwordEncoder.encode("pass"), "[email protected]", "Almudena Arias", "USER");
8282

8383
ArrayList<Integer> array = user1.getHistoricalKarma();
84-
array.add(600);
85-
array.add(400);
86-
array.add(525);
87-
array.add(369);
84+
array.add(550);
85+
array.add(450);
86+
array.add(500);
87+
array.add(375);
8888
array.add(400);
8989
array.add(450);
9090
array.add(500);
91-
array.add(523);
92-
array.add(560);
91+
array.add(525);
92+
array.add(540);
9393
user1.setHistoricalKarma(array);
94+
user1.setNumMatchesPlayed(9);
95+
user1.setNumWins(7);
96+
user1.setNumLoses(2);
97+
user1.setLocation("Madrid");
98+
user1.setCountry("España");
9499

95100
userRepository.save(userNone);
96101
userRepository.save(user1);

backend/src/main/resources/public/new/index.html

Lines changed: 4 additions & 4 deletions
Large diffs are not rendered by default.

backend/src/main/resources/public/new/main.21b05d1ae8953ccf.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/src/main/resources/public/new/main.7bafc258ee226a6c.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/src/main/resources/public/new/main.8b525f4aa798a348.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/src/main/resources/public/new/main.99dc72018ec0334d.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

backend/src/main/resources/public/new/main.a7a3c27dc5399545.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

backend/src/main/resources/public/new/main.f905f3e442c72289.js

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)