-
Notifications
You must be signed in to change notification settings - Fork 0
/
SelectProjectController.java
228 lines (206 loc) · 5.87 KB
/
SelectProjectController.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
package application;
import java.net.URL;
import java.util.ResourceBundle;
import javafx.collections.FXCollections;
import javafx.event.*;
import javafx.fxml.FXML;
import javafx.fxml.FXMLLoader;
import javafx.fxml.Initializable;
import javafx.scene.Node;
import javafx.scene.Scene;
import javafx.scene.control.Button;
import javafx.scene.control.ComboBox;
import javafx.scene.control.Label;
import javafx.scene.control.TextField;
import javafx.stage.Stage;
import java.util.*;
//Controller for the Select Project page - MJ
public class SelectProjectController
{
//Reference fields, passed in to guide the flow - MJ
private Employee user;
public String accessType;
private ProjectDataBase projects;
private char flag;
private boolean sideWindow;
//FXML fields for the Labels, Buttons and TextFields - MJ
@FXML
private Label accessLabel;
@FXML
private ComboBox nameMenu = new ComboBox<String>();
@FXML
private Button back;
@FXML
private Button submit;
@FXML
private TextField newProj;
//Setter method to take in the reference to the project database - MJ
public void setProjects(ProjectDataBase projects)
{
this.projects = projects;
}
public void setFlag(char flag)
{
this.flag = flag;
}
//Method to initialize the label and combo box- MJ
@FXML
public void setLabel()
{
newProj.setVisible(flag == 'p');
accessLabel.setText("Access Type: " + accessType);
ArrayList<String> list = new ArrayList<String>();
list.add("no selection made");
for(int i = 0; i < projects.projectNames.size(); i++)
{
list.add(projects.projectNames.get(i));
}
nameMenu.setItems(FXCollections.observableArrayList(list));
nameMenu.getSelectionModel().select(0);
sideWindow = false;
}
//Event handler for a User's query for a project, it opens the SelectTask
//page and sets the appropriate fields so the user can search for a task- MJ
@FXML
public void nameEntered(ActionEvent event)
{
String name = "";
if(newProj.getText().length() != 0)
{
name = (String) newProj.getText();
Project newProject = new Project();
newProject.setName(name);
projects.addProject(newProject);
if(flag != 'p')
{
try {
FXMLLoader load = new FXMLLoader(getClass().getResource("SelectTask.fxml"));
Stage stage = (Stage)((Node)event.getSource()).getScene().getWindow();
Scene scene = new Scene(load.load());
SelectTaskController ctrl = load.getController();
ctrl.setAccess(user);
ctrl.setProjects(projects);
ctrl.setProj(projects.getProject(name));
ctrl.setFlag(flag);
ctrl.setLabel();
stage.setScene(scene);
stage.setTitle("Select a task to view");
stage.show();
} catch (Exception e) {
e.printStackTrace();
}
}
else
{
try {
FXMLLoader load = new FXMLLoader(getClass().getResource("PlanPokerPane.fxml"));
Stage stage = (Stage)((Node)event.getSource()).getScene().getWindow();
Scene scene = new Scene(load.load());
PlanningPokerController ctrl = load.getController();
ctrl.setAccess(user);
ctrl.setProjects(projects);
ctrl.setProject(projects.getProject(name));
//ctrl.setTask(proj.getTask(name));
ctrl.setLabel();
stage.setScene(scene);
stage.setTitle("Planning Poker!");
stage.show();
} catch (Exception e) {
e.printStackTrace();
}
}
}
else
{
name = (String) nameMenu.getValue();
if(projects.containsName(name))
{
if(flag != 'p')
{
try {
FXMLLoader load = new FXMLLoader(getClass().getResource("SelectTask.fxml"));
Stage stage = (Stage)((Node)event.getSource()).getScene().getWindow();
Scene scene = new Scene(load.load());
SelectTaskController ctrl = load.getController();
ctrl.setAccess(user);
ctrl.setProjects(projects);
ctrl.setProj(projects.getProject(name));
ctrl.setFlag(flag);
ctrl.setLabel();
stage.setScene(scene);
stage.setTitle("Select a task to view");
stage.show();
} catch (Exception e) {
e.printStackTrace();
}
}
else
{
try {
FXMLLoader load = new FXMLLoader(getClass().getResource("PlanPokerPane.fxml"));
Stage stage = (Stage)((Node)event.getSource()).getScene().getWindow();
Scene scene = new Scene(load.load());
PlanningPokerController ctrl = load.getController();
ctrl.setAccess(user);
ctrl.setProjects(projects);
ctrl.setProject(projects.getProject(name));
//ctrl.setTask(proj.getTask(name));
ctrl.setLabel();
stage.setScene(scene);
stage.setTitle("Planning Poker!");
stage.show();
} catch (Exception e) {
e.printStackTrace();
}
}
}
}
}
//Method to return the user to the Main Menu if they hit the back button, this changes
//the fxml file and controllers being loaded - MJ
public void goBack(ActionEvent event)
{
if(!sideWindow)
{
try {
FXMLLoader load = new FXMLLoader(getClass().getResource("MainMenu.fxml"));
Stage stage = (Stage)((Node)event.getSource()).getScene().getWindow();
Scene scene = new Scene(load.load());
MainMenuController ctrl = load.getController();
ctrl.setAccess(user);
ctrl.setProjects(projects);
stage.setScene(scene);
stage.setTitle("Main Menu of Effort Logger");
stage.show();
} catch (Exception e) {
e.printStackTrace();
}
}
else
{
Stage stage = (Stage) ((Node) event.getSource()).getScene().getWindow();
stage.close();
}
}
public void isSideWindow()
{
sideWindow = true;
}
//Setter method for the accessType of employee - MJ
public void setAccess(Employee empType)
{
user = empType;
if(user.getClass() == SoftwareEngineer.class)
{
accessType = "Software Engineer";
}
else if(user.getClass() == QAEngineer.class)
{
accessType = "Quality Assurance";
}
else
{
accessType =" Administration";
}
}
}