Edit Tour/Log Bugfixes

This commit is contained in:
Georg Reisinger 2021-04-13 14:52:36 +02:00
parent 100da38493
commit 2265014db3
2 changed files with 60 additions and 27 deletions

View File

@ -116,10 +116,12 @@ public class AlertHelper {
* @return Null bei keiner eingabe * @return Null bei keiner eingabe
*/ */
public static String inputText(String title, String header, String msg, String content) { public static String inputText(String title, String header, String msg, String content) {
String returnStr = ""; String returnStr = null;
while (returnStr.isEmpty()) { while (returnStr == null) {
Optional<String> result = inputHelper(title, header, msg, content); Optional<String> result = inputHelper(title, header, msg, content);
AtomicReference<String> returnText = new AtomicReference<>(""); AtomicReference<String> returnText = new AtomicReference<>("");
if(result.isPresent()) {
result.ifPresent(returnText::set); result.ifPresent(returnText::set);
returnStr = returnText.get(); returnStr = returnText.get();
if (returnStr.isEmpty()) { if (returnStr.isEmpty()) {
@ -127,6 +129,9 @@ public class AlertHelper {
ConfigHelper.getLangIniString("achtung"), ConfigHelper.getLangIniString("achtung"),
ConfigHelper.getLangIniString("keintextimfeld")); ConfigHelper.getLangIniString("keintextimfeld"));
} }
}else{
return "";
}
} }
return returnStr; return returnStr;
} }

View File

@ -31,6 +31,7 @@ public class ViewModel {
/** /**
* Bearbeitet eine bereits bestehende Tour * Bearbeitet eine bereits bestehende Tour
* prüft ob eine tour ausgewählt ist
*/ */
public void editTour(){ public void editTour(){
if (this.selectedTour == null){ if (this.selectedTour == null){
@ -47,35 +48,49 @@ public class ViewModel {
} }
}); });
if(aktIndex.intValue() != -1){ if(aktIndex.intValue() != -1){
Tour tourToEdit = this.tourData.get(aktIndex.intValue());
if(tourNameInputDuplicatCheck(this.selectedTour.getName(), false)) {
if (tourStartInput(this.selectedTour.getStart())) {
if (tourZielInput(this.selectedTour.getZiel())) {
this.tourData.removeIf(tour -> tour.getName().equals(this.selectedTour.getName())); this.tourData.removeIf(tour -> tour.getName().equals(this.selectedTour.getName()));
this.tourNamen.removeIf(tour -> tour.equals(this.selectedTour.getName())); this.tourNamen.removeIf(tour -> tour.equals(this.selectedTour.getName()));
System.out.println(tourToEdit.getLogs());
tourNameInput(this.selectedTour.getName());
tourToEdit.setName(this.neueTourName);
tourStartInput(this.selectedTour.getStart());
tourToEdit.setStart(this.neueTourStart);
tourZielInput(this.selectedTour.getZiel());
tourToEdit.setZiel(this.neueTourZiel);
System.out.println(tourToEdit.getName());
this.tourData.add(new Tour(this.neueTourName, "TBD", "TBD", 0, this.neueTourStart, this.neueTourZiel)); this.tourData.add(new Tour(this.neueTourName, "TBD", "TBD", 0, this.neueTourStart, this.neueTourZiel));
this.tourNamen.add(this.neueTourName); this.tourNamen.add(this.neueTourName);
// this.tourData.add(tourToEdit); }
}
}
this.neueTourName = null;
this.neueTourStart = null;
this.neueTourZiel = null;
} }
} }
} }
/**
* Input mit duplications check des Namens und ohne content im input feld
*/
private void tourNameInput(){
tourNameInputDuplicatCheck("", true);
}
/** /**
* Input des Tour Namen wird so lange durchgeführt, bis er korrekt ist. Das heißt: * Input des Tour Namen wird so lange durchgeführt, bis er korrekt ist. Das heißt:
* er darf nicht schon vorhanden sein und er darf nicht Null sein * er darf nicht schon vorhanden sein und er darf nicht Null sein
* @param checkDuplicate Prüft ob name bereits vorhanden ist
* @param content inhalt des Input fields
* @return false beim schließen des input dialogs
*/ */
private void tourNameInput(String content){ private boolean tourNameInputDuplicatCheck(String content, boolean checkDuplicate){
while(this.neueTourName == null) { while(this.neueTourName == null) {
this.neueTourName = AlertHelper.inputText(ConfigHelper.getLangIniString("tournametitle"), this.neueTourName = AlertHelper.inputText(ConfigHelper.getLangIniString("tournametitle"),
ConfigHelper.getLangIniString("tournameheader"), ConfigHelper.getLangIniString("tournameheader"),
ConfigHelper.getLangIniString("tournamemsg"), content); ConfigHelper.getLangIniString("tournamemsg"), content);
if (getTour(this.neueTourName) != null) { System.out.println(this.neueTourName);
if(this.neueTourName.isEmpty()){
return false;
}
if (getTour(this.neueTourName) != null && checkDuplicate) {
AlertHelper.warn(ConfigHelper.getLangIniString("achtung"), AlertHelper.warn(ConfigHelper.getLangIniString("achtung"),
ConfigHelper.getLangIniString("namevergebenheader"), ConfigHelper.getLangIniString("namevergebenheader"),
ConfigHelper.getLangIniString("namevergebenmsg1") ConfigHelper.getLangIniString("namevergebenmsg1")
@ -84,38 +99,51 @@ public class ViewModel {
this.neueTourName = null; this.neueTourName = null;
} }
} }
return true;
} }
/** /**
* Input der Startpunkt der Tour * Input der Startpunkt der Tour
* Wird erst beendet wenn die eingabe erfolgreich war * Wird erst beendet wenn die eingabe erfolgreich war
* @param content inhalt des Input fields
* @return false beim schließen des input dialogs
*/ */
private void tourStartInput(String content){ private boolean tourStartInput(String content){
while(this.neueTourStart == null){ while(this.neueTourStart == null){
this.neueTourStart = AlertHelper.inputText(ConfigHelper.getLangIniString("startpunkttitle"), this.neueTourStart = AlertHelper.inputText(ConfigHelper.getLangIniString("startpunkttitle"),
ConfigHelper.getLangIniString("startpunktheader"), ConfigHelper.getLangIniString("startpunktheader"),
ConfigHelper.getLangIniString("startpunktmsg"), content); ConfigHelper.getLangIniString("startpunktmsg"), content);
if(this.neueTourStart.isEmpty()){
return false;
} }
} }
return true;
}
/** /**
* Input des Zielpunktes der Tour * Input des Zielpunktes der Tour
* Wird erst beendet wenn die eingabe erfolgreich war * Wird erst beendet wenn die eingabe erfolgreich war
* @param content inhalt des Input fields
* @return false beim schließen des input dialogs
*/ */
private void tourZielInput(String content){ private boolean tourZielInput(String content){
while(this.neueTourZiel == null){ while(this.neueTourZiel == null){
this.neueTourZiel = AlertHelper.inputText(ConfigHelper.getLangIniString("zielpunkttitle"), this.neueTourZiel = AlertHelper.inputText(ConfigHelper.getLangIniString("zielpunkttitle"),
ConfigHelper.getLangIniString("zielpunktheader"), ConfigHelper.getLangIniString("zielpunktheader"),
ConfigHelper.getLangIniString("zielpunktmsg"), content); ConfigHelper.getLangIniString("zielpunktmsg"), content);
if(this.neueTourZiel.isEmpty()){
return false;
} }
} }
return false;
}
/** /**
* Fügt eine neue Tour hinzu * Fügt eine neue Tour hinzu
*/ */
public void addTour(){ public void addTour(){
tourNameInput(""); tourNameInput();
tourStartInput(""); tourStartInput("");
tourZielInput(""); tourZielInput("");
if (getTour(this.neueTourName) == null) { if (getTour(this.neueTourName) == null) {