Skip to content
Snippets Groups Projects
Commit aca726dd authored by Harry Linrui XU's avatar Harry Linrui XU
Browse files

Implemented Filehandling method, which allows registers to be saved to file when switching scenes

parent 78a3aeef
No related branches found
No related tags found
10 merge requests!43Merging frontend-testing into master,!38"Made progressbar dynamic in accordance to spending. Added balance field....,!37Made the sub progress bars respond to changes in expense,!32Added input validation to add dialog boxes.,!30Redesigned scenes,!29Redesigned scenes,!28Redesigned scenes,!26Redesigned Main menu and expense/income windows,!24Merging frontend-testing with master,!23Merging frontend-testing and master
......@@ -41,9 +41,6 @@ public class ExpensesController {
@FXML
private Button addBtn;
@FXML
private TextField descriptionField;
@FXML
private Button editBtn;
......@@ -75,11 +72,12 @@ public class ExpensesController {
ObservableList<Expense> expenses;
@FXML
public void initialize() {
public void initialize() throws IOException {
ObservableList<String> filter = FXCollections.observableArrayList("All", "Other", "Food");
show.setItems(filter);
show.setValue("All");
//expenseRegister = loadDataFromFile("wawawiwa");
Expense newExpense = new Expense(99, true, ExpenseCategory.FOOD, "1/1/23");
expenseRegister.addItem(newExpense);
expenses = FXCollections.observableArrayList(expenseRegister.getItems());
......@@ -90,8 +88,6 @@ public class ExpensesController {
descriptionColumn.setCellValueFactory(new PropertyValueFactory<Expense, String>("description"));
recurringColumn.setCellValueFactory(new PropertyValueFactory<Expense, Boolean>("recurring"));
//loadDataFromFile();
refreshObservableList();
expenseTableView.setItems(expenses);
}
......@@ -173,16 +169,23 @@ public class ExpensesController {
return alert.showAndWait();
}
public void loadDataFromFile(String fileName) {
public ExpenseRegister loadDataFromFile(String fileName) throws IOException {
FileHandling fileHandling = new FileHandling();
File file = new File(System.getProperty("user.dir") + "/src/main/resources/" + fileName + ".txt");
if (file.length() == 0) {
if (fileHandling.isEmpty(fileName)) {
//expenseRegister = new ExpenseRegister();
} else {
expenseRegister = fileHandling.readExpenseRegisterFromFile(fileName);
}
return expenseRegister;
}
public void saveDataToFile(String fileName) throws IOException {
FileHandling fileHandling = new FileHandling();
fileHandling.writeItemRegisterToFile(expenseRegister, fileName);
}
@FXML
protected void switchIncome(ActionEvent event) throws IOException {
saveDataToFile("Expenses");
FXMLLoader loader = new FXMLLoader(SceneController.class.getResource("/view/Income.fxml"));
Parent root = loader.load();
Stage stage = (Stage)((Node)event.getSource()).getScene().getWindow();
......@@ -191,7 +194,15 @@ public class ExpensesController {
stage.show();
}
public void switchOverview(ActionEvent event) {
@FXML
public void switchOverview(ActionEvent event) throws IOException {
saveDataToFile("Expenses");
FXMLLoader loader = new FXMLLoader(SceneController.class.getResource("/view/Overview.fxml"));
Parent root = loader.load();
Stage stage = (Stage)((Node)event.getSource()).getScene().getWindow();
Scene scene = new Scene(root);
stage.setScene(scene);
stage.show();
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment