2017-11-14 07:22:26 +00:00
|
|
|
package controller;
|
|
|
|
|
|
|
|
import java.io.IOException;
|
2017-11-15 15:13:07 +00:00
|
|
|
import java.util.HashMap;
|
2017-11-14 07:22:26 +00:00
|
|
|
|
2017-11-15 15:13:07 +00:00
|
|
|
import org.json.JSONObject;
|
|
|
|
|
|
|
|
import Classes.ApiCall;
|
2017-11-15 21:53:52 +00:00
|
|
|
import Classes.Category;
|
|
|
|
import Classes.Languages;
|
|
|
|
import Classes.SortTypes;
|
2017-11-15 13:23:49 +00:00
|
|
|
import Classes.css.user.ContextBuilder;
|
2017-11-15 17:12:46 +00:00
|
|
|
import Classes.css.user.HeaderStyleSheet;
|
|
|
|
import Classes.css.user.HeaderIconStyleSheet;
|
|
|
|
import Classes.css.user.MenuStyleSheet;
|
|
|
|
import Classes.css.user.SubMenuStyleSheet;
|
2017-11-15 15:13:07 +00:00
|
|
|
import Interfaces.Callback;
|
2017-11-14 08:09:25 +00:00
|
|
|
import Interfaces.Event;
|
|
|
|
import Interfaces.EventObserver;
|
2017-11-14 07:22:26 +00:00
|
|
|
import javafx.application.Application;
|
|
|
|
import javafx.fxml.FXMLLoader;
|
|
|
|
import javafx.scene.Scene;
|
2017-11-15 21:53:52 +00:00
|
|
|
import javafx.scene.control.MenuBar;
|
2017-11-14 07:22:26 +00:00
|
|
|
import javafx.scene.layout.AnchorPane;
|
|
|
|
import javafx.scene.layout.FlowPane;
|
|
|
|
import javafx.stage.Stage;
|
2017-11-15 21:53:52 +00:00
|
|
|
import model.LangModel;
|
|
|
|
import model.NewsListModel;
|
2017-11-14 07:22:26 +00:00
|
|
|
|
2017-11-14 08:09:25 +00:00
|
|
|
public class RootLayout extends Application implements EventObserver {
|
2017-11-14 07:22:26 +00:00
|
|
|
|
|
|
|
private Stage root_stage;
|
|
|
|
private Scene root_scene;
|
|
|
|
private AnchorPane root_layout;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
2017-11-15 13:23:49 +00:00
|
|
|
public void start(Stage primary_stage) throws Exception {
|
2017-11-14 07:22:26 +00:00
|
|
|
|
|
|
|
/* (1) store primary stage + title it */
|
|
|
|
this.root_stage = primary_stage;
|
|
|
|
this.root_stage.setTitle("Inifiny Mail Client");
|
|
|
|
|
|
|
|
/* (2) Load the root layout*/
|
2017-11-14 08:09:25 +00:00
|
|
|
this.loadRootLayout();
|
2017-11-14 07:22:26 +00:00
|
|
|
|
2017-11-15 13:23:49 +00:00
|
|
|
/* (3) Load the CSS CONTEXT */
|
|
|
|
ContextBuilder.createContext();
|
|
|
|
|
|
|
|
|
|
|
|
|
2017-11-14 07:22:26 +00:00
|
|
|
/* (1) HEADER
|
|
|
|
-------------------------------------*/
|
|
|
|
/* (1) Create header menu */
|
2017-11-15 15:13:07 +00:00
|
|
|
HeaderMenu hm = new HeaderMenu((FlowPane) this.root_scene.lookup("#header_menu"),this);
|
2017-11-14 07:22:26 +00:00
|
|
|
|
2017-11-15 15:13:07 +00:00
|
|
|
hm.addItem("notification", "/src/header-notif.png");
|
|
|
|
hm.addItem("mail", "/src/header-mail.png");
|
|
|
|
hm.addItem("search", "/src/header-search.png");
|
|
|
|
hm.addItem("menu", "/src/header-menu.png");
|
2017-11-14 07:22:26 +00:00
|
|
|
|
|
|
|
|
2017-11-15 13:23:49 +00:00
|
|
|
/* (2) CSS
|
|
|
|
-------------------------------------*/
|
|
|
|
|
|
|
|
/* (1) #header */
|
2017-11-15 17:12:46 +00:00
|
|
|
new HeaderStyleSheet( this.root_scene.lookup("#header") );
|
2017-11-15 13:23:49 +00:00
|
|
|
|
|
|
|
/* (2) #menu_container */
|
2017-11-15 17:12:46 +00:00
|
|
|
new MenuStyleSheet( this.root_scene.lookup("#menu") );
|
|
|
|
|
|
|
|
/* (3) #submenu */
|
|
|
|
new SubMenuStyleSheet( this.root_scene.lookup("#submenu") );
|
|
|
|
|
|
|
|
/* (4) #header_icon*/
|
|
|
|
new HeaderIconStyleSheet( this.root_scene.lookup("#header_icon") );
|
2017-11-15 13:23:49 +00:00
|
|
|
|
2017-11-14 07:22:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public void loadRootLayout(){
|
|
|
|
|
|
|
|
try{
|
|
|
|
|
|
|
|
/* (1) Load the root_disp.fxml */
|
|
|
|
FXMLLoader loader = new FXMLLoader();
|
|
|
|
|
|
|
|
loader.setLocation(getClass().getResource("/fxml/model.fxml"));
|
|
|
|
|
|
|
|
/* (2) Load the layout into the scene */
|
|
|
|
this.root_layout = (AnchorPane) loader.load();
|
|
|
|
this.root_scene = new Scene(this.root_layout);
|
|
|
|
|
|
|
|
/* (3) Add the scene to the stage */
|
|
|
|
this.root_stage.setScene(this.root_scene);
|
|
|
|
|
|
|
|
/* (4) Show the stage */
|
|
|
|
this.root_stage.show();
|
|
|
|
|
|
|
|
}catch(IOException e){
|
|
|
|
e.printStackTrace();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static void main(String[] args) {
|
|
|
|
launch(args);
|
|
|
|
}
|
2017-11-14 08:09:25 +00:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void handleEvent(Event e) {
|
2017-11-15 21:53:52 +00:00
|
|
|
/*
|
2017-11-15 15:13:07 +00:00
|
|
|
HashMap<String,String> headers = new HashMap<String,String>();
|
|
|
|
headers.put("Referer", "http://www.wordreference.com");
|
|
|
|
|
|
|
|
ApiCall call = new ApiCall("http://api.wordreference.com/1/json/enfr/grin","GET",new Callback() {
|
|
|
|
|
|
|
|
@Override
|
2017-11-15 21:53:52 +00:00
|
|
|
public void onSuccess(JSONObject response) {
|
|
|
|
System.out.println(response.toString());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onError() {
|
|
|
|
System.out.println("APICall error");
|
2017-11-15 15:13:07 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
call.addHeaders(headers);
|
2017-11-15 21:53:52 +00:00
|
|
|
call.send();*/
|
2017-11-15 15:13:07 +00:00
|
|
|
|
2017-11-15 21:53:52 +00:00
|
|
|
switch(e.getEventType()){
|
|
|
|
case "changeMainLayout":
|
|
|
|
this.handleMainLayoutChange(e.getObjectId());
|
|
|
|
break;
|
|
|
|
case "NewsQuerySuccess":
|
|
|
|
System.out.println(NewsListModel.getInstance().getNews().size()+" News ont été trouvé");
|
|
|
|
if(NewsListModel.getInstance().getNews().size() != 0) {
|
|
|
|
System.out.println("La description du premier article est: "+NewsListModel.getInstance().getNews().get(0).getDescription());
|
|
|
|
}
|
|
|
|
|
|
|
|
break;
|
|
|
|
case "NewsQueryFailed":
|
|
|
|
System.out.println("une erreur est survenue");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public void handleMainLayoutChange(String layout) {
|
|
|
|
NewsListModel.getInstance().addObserver("MainClass", this);
|
|
|
|
NewsListModel.getInstance().setCategory(Category.business);
|
|
|
|
NewsListModel.getInstance().setSortType(SortTypes.publishedAt);
|
|
|
|
NewsListModel.getInstance().query("bitcoin");
|
2017-11-14 08:09:25 +00:00
|
|
|
|
|
|
|
}
|
2017-11-14 07:22:26 +00:00
|
|
|
}
|