Added offline mode warning and note
This commit is contained in:
parent
ab1a5e9c61
commit
9bed6b6963
@ -22,15 +22,15 @@ import javafx.collections.ObservableList;
|
|||||||
import javafx.collections.transformation.FilteredList;
|
import javafx.collections.transformation.FilteredList;
|
||||||
import javafx.fxml.FXML;
|
import javafx.fxml.FXML;
|
||||||
import javafx.fxml.FXMLLoader;
|
import javafx.fxml.FXMLLoader;
|
||||||
|
import javafx.geometry.Insets;
|
||||||
|
import javafx.geometry.Pos;
|
||||||
import javafx.scene.control.*;
|
import javafx.scene.control.*;
|
||||||
import javafx.scene.control.Alert.AlertType;
|
import javafx.scene.control.Alert.AlertType;
|
||||||
import javafx.scene.image.Image;
|
import javafx.scene.image.Image;
|
||||||
import javafx.scene.image.ImageView;
|
import javafx.scene.image.ImageView;
|
||||||
import javafx.scene.input.KeyCode;
|
import javafx.scene.input.KeyCode;
|
||||||
import javafx.scene.input.KeyEvent;
|
import javafx.scene.input.KeyEvent;
|
||||||
import javafx.scene.layout.AnchorPane;
|
import javafx.scene.layout.*;
|
||||||
import javafx.scene.layout.GridPane;
|
|
||||||
import javafx.scene.layout.VBox;
|
|
||||||
import javafx.scene.paint.Color;
|
import javafx.scene.paint.Color;
|
||||||
import javafx.scene.shape.Rectangle;
|
import javafx.scene.shape.Rectangle;
|
||||||
import javafx.stage.FileChooser;
|
import javafx.stage.FileChooser;
|
||||||
@ -183,12 +183,20 @@ public final class ChatScene implements Restorable {
|
|||||||
clip.setArcWidth(43);
|
clip.setArcWidth(43);
|
||||||
clientProfilePic.setClip(clip);
|
clientProfilePic.setClip(clip);
|
||||||
|
|
||||||
try {
|
Platform.runLater(() -> {
|
||||||
contactSearchTab.setContent(FXMLLoader.load(new File("src/main/resources/fxml/ContactSearchTab.fxml").toURI().toURL()));
|
if(client.isOnline()) {
|
||||||
groupCreationTab.setContent(FXMLLoader.load(new File("src/main/resources/fxml/GroupCreationTab.fxml").toURI().toURL()));
|
try {
|
||||||
} catch (Exception e2) {
|
contactSearchTab.setContent(FXMLLoader.load(new File("src/main/resources/fxml/ContactSearchTab.fxml").toURI().toURL()));
|
||||||
e2.printStackTrace();
|
groupCreationTab.setContent(FXMLLoader.load(new File("src/main/resources/fxml/GroupCreationTab.fxml").toURI().toURL()));
|
||||||
}
|
} catch (Exception e2) {
|
||||||
|
e2.printStackTrace();
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
contactSearchTab.setContent(createOfflineNote());
|
||||||
|
groupCreationTab.setContent(createOfflineNote());
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
|
||||||
//Listen to backEvents
|
//Listen to backEvents
|
||||||
eventBus.register(BackEvent.class, e -> tabPane.getSelectionModel().select(0));
|
eventBus.register(BackEvent.class, e -> tabPane.getSelectionModel().select(0));
|
||||||
@ -264,6 +272,22 @@ public final class ChatScene implements Restorable {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private AnchorPane createOfflineNote() {
|
||||||
|
AnchorPane anc = new AnchorPane();
|
||||||
|
VBox vBox = new VBox();
|
||||||
|
vBox.setAlignment(Pos.TOP_CENTER);
|
||||||
|
vBox.setPrefWidth(316);
|
||||||
|
Label label = new Label("You have to be online!");
|
||||||
|
label.setPadding(new Insets(50, 0, 5, 0));
|
||||||
|
Button button = new Button("OK");
|
||||||
|
button.setOnAction(e -> eventBus.dispatch(new BackEvent()));
|
||||||
|
vBox.getChildren().add(label);
|
||||||
|
vBox.getChildren().add(button);
|
||||||
|
anc.getChildren().add(vBox);
|
||||||
|
anc.setId("note-background");
|
||||||
|
return anc;
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initializes all {@code SystemCommands} used in {@code ChatScene}.
|
* Initializes all {@code SystemCommands} used in {@code ChatScene}.
|
||||||
*
|
*
|
||||||
@ -398,8 +422,6 @@ public final class ChatScene implements Restorable {
|
|||||||
*/
|
*/
|
||||||
@FXML
|
@FXML
|
||||||
private void addContactButtonClicked() {
|
private void addContactButtonClicked() {
|
||||||
// sceneContext.load(SceneContext.SceneInfo.CONTACT_SEARCH_SCENE);
|
|
||||||
// sceneContext.<ContactSearchScene>getController().initializeData(sceneContext, localDB);
|
|
||||||
tabPane.getSelectionModel().select(1);
|
tabPane.getSelectionModel().select(1);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -46,7 +46,7 @@
|
|||||||
-fx-background-color: rgb(25, 25, 25);
|
-fx-background-color: rgb(25, 25, 25);
|
||||||
}
|
}
|
||||||
|
|
||||||
#chatList, #topBar, #search-panel {
|
#chatList, #topBar, #search-panel, #note-background {
|
||||||
-fx-background-color: #303030;
|
-fx-background-color: #303030;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user