Wochenuebersicht kommentiert und getestet
This commit is contained in:
parent
1073423b16
commit
c5a179a0d2
@ -7,8 +7,9 @@
|
|||||||
<option value="$PROJECT_DIR$/pom.xml" />
|
<option value="$PROJECT_DIR$/pom.xml" />
|
||||||
</list>
|
</list>
|
||||||
</option>
|
</option>
|
||||||
|
<option name="workspaceImportForciblyTurnedOn" value="true" />
|
||||||
</component>
|
</component>
|
||||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_X" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
|
<component name="ProjectRootManager" version="2" languageLevel="JDK_21" default="true" project-jdk-name="21" project-jdk-type="JavaSDK">
|
||||||
<output url="file://$PROJECT_DIR$/out" />
|
<output url="file://$PROJECT_DIR$/out" />
|
||||||
</component>
|
</component>
|
||||||
</project>
|
</project>
|
@ -58,7 +58,7 @@ public class EssensverwaltungMitarbeiterView {
|
|||||||
|
|
||||||
public void initialize(){
|
public void initialize(){
|
||||||
|
|
||||||
/*
|
/*
|
||||||
(obs,oldValue,newValue) -> {
|
(obs,oldValue,newValue) -> {
|
||||||
final int zeile = 1;
|
final int zeile = 1;
|
||||||
for (Node n : tagesplan.getChildren()){
|
for (Node n : tagesplan.getChildren()){
|
||||||
@ -88,7 +88,7 @@ public class EssensverwaltungMitarbeiterView {
|
|||||||
cc.setFillWidth(true);
|
cc.setFillWidth(true);
|
||||||
tagesplan.getColumnConstraints().add(cc);
|
tagesplan.getColumnConstraints().add(cc);
|
||||||
}
|
}
|
||||||
|
/*
|
||||||
tagesplan.heightProperty().addListener((obs,oldValue,newValue) -> {
|
tagesplan.heightProperty().addListener((obs,oldValue,newValue) -> {
|
||||||
final int zeile = 1;
|
final int zeile = 1;
|
||||||
for (Node n : tagesplan.getChildren()){
|
for (Node n : tagesplan.getChildren()){
|
||||||
@ -97,7 +97,7 @@ public class EssensverwaltungMitarbeiterView {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
*/
|
||||||
VerwaltungApplication.responsiveBreiteGrid(tagesplan);
|
VerwaltungApplication.responsiveBreiteGrid(tagesplan);
|
||||||
|
|
||||||
|
|
||||||
@ -181,10 +181,11 @@ public class EssensverwaltungMitarbeiterView {
|
|||||||
tagesplan.add(label, 0, 0);
|
tagesplan.add(label, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
for (Node n : tagesplan.getChildren()) {
|
||||||
|
if (n instanceof Control) {
|
||||||
|
((Control) n).setPrefWidth(tagesplan.getWidth() / tagesplan.getColumnCount());
|
||||||
|
}
|
||||||
|
}
|
||||||
tagesplan.getStyleClass().add("essensuebersicht_gridlines");
|
tagesplan.getStyleClass().add("essensuebersicht_gridlines");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,9 +1,66 @@
|
|||||||
package de.subway_surfers.vpr_app;
|
package de.subway_surfers.vpr_app;
|
||||||
|
|
||||||
|
import Logik.Tagesplan;
|
||||||
|
import RestAPISchnittstelle.RestApiClient;
|
||||||
import javafx.event.ActionEvent;
|
import javafx.event.ActionEvent;
|
||||||
|
import javafx.fxml.FXML;
|
||||||
|
import javafx.geometry.Pos;
|
||||||
|
import javafx.scene.control.Label;
|
||||||
|
import javafx.scene.layout.GridPane;
|
||||||
|
import javafx.scene.text.TextAlignment;
|
||||||
|
|
||||||
|
import java.text.DateFormat;
|
||||||
|
import java.util.Date;
|
||||||
|
|
||||||
public class HauptmenueMitarbeiterView {
|
public class HauptmenueMitarbeiterView {
|
||||||
|
@FXML
|
||||||
|
private GridPane wochenplan;
|
||||||
|
private String date;
|
||||||
|
private String day;
|
||||||
|
private String month;
|
||||||
|
private String year;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Ruft die Methode zum Befüllen der Ansicht auf
|
||||||
|
* @author Max Heer
|
||||||
|
*/
|
||||||
|
public void initialize(){
|
||||||
|
wochenuebersichtFuellen();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Methode zum initialisieren und befüllen der Tabelle im Hauptmenü
|
||||||
|
* @author Max Heer
|
||||||
|
*/
|
||||||
|
public void wochenuebersichtFuellen(){
|
||||||
|
String dateanzeige;
|
||||||
|
DateFormat dateFormat = DateFormat.getDateInstance();
|
||||||
|
date = dateFormat.format(new Date());
|
||||||
|
date = date.replace('.', '-');
|
||||||
|
day = date.split("-")[0];
|
||||||
|
month = date.split("-")[1];
|
||||||
|
year = date.split("-")[2];
|
||||||
|
date = String.format("%s-%s-%s", year, month, day);
|
||||||
|
dateanzeige = String.format("%s.%s.%s",day,month,year);
|
||||||
|
Tagesplan t = new RestApiClient().getGerichteOnTag(date);
|
||||||
|
for(int i=0;i<5;i++){
|
||||||
|
Label tag = new Label();
|
||||||
|
wochenplan.add(tag, i, 0);
|
||||||
|
tag.setText(dateanzeige);
|
||||||
|
for(int j=0; j<t.getGerichte().size();j++){
|
||||||
|
Label name = new Label();
|
||||||
|
name.setWrapText(true);
|
||||||
|
wochenplan.add(name, i, j+1);
|
||||||
|
name.setText(t.getGerichte().get(j).getName());
|
||||||
|
name.setPrefHeight(75);
|
||||||
|
name.setTextAlignment(TextAlignment.CENTER);
|
||||||
|
}
|
||||||
|
day = String.valueOf(Integer.parseInt(day)+1);
|
||||||
|
date = String.format("%s-%s-%s", year, month, day);
|
||||||
|
dateanzeige = String.format("%s.%s.%s",day,month,year);
|
||||||
|
t = new RestApiClient().getGerichteOnTag(date);
|
||||||
|
}
|
||||||
|
}
|
||||||
public void onAbmelden(ActionEvent actionEvent) {
|
public void onAbmelden(ActionEvent actionEvent) {
|
||||||
//VerwaltungApplication.abmelden();
|
//VerwaltungApplication.abmelden();
|
||||||
}
|
}
|
||||||
|
@ -31,14 +31,8 @@
|
|||||||
</VBox>
|
</VBox>
|
||||||
</left>
|
</left>
|
||||||
<right>
|
<right>
|
||||||
<GridPane styleClass="hauptmenue_wochenuebersicht">
|
<GridPane fx:id="wochenplan" styleClass="hauptmenue_wochenuebersicht">
|
||||||
<Label text="Montag" GridPane.columnIndex="0" GridPane.rowIndex="0"/>
|
|
||||||
<Label text="Dienstag" GridPane.columnIndex="1" GridPane.rowIndex="0"/>
|
|
||||||
<Label text="Mittwoch" GridPane.columnIndex="2" GridPane.rowIndex="0"/>
|
|
||||||
<Label text="Donnerstag" GridPane.columnIndex="3" GridPane.rowIndex="0"/>
|
|
||||||
<Label text="Freitag" GridPane.columnIndex="4" GridPane.rowIndex="0"/>
|
|
||||||
|
|
||||||
<Label text="Gericht1" styleClass="hauptmenue_gericht" GridPane.columnIndex="0" GridPane.rowIndex="1"/>
|
|
||||||
</GridPane>
|
</GridPane>
|
||||||
</right>
|
</right>
|
||||||
</BorderPane>
|
</BorderPane>
|
||||||
|
Loading…
Reference in New Issue
Block a user