-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathContact.java
More file actions
233 lines (202 loc) · 6.38 KB
/
Copy pathContact.java
File metadata and controls
233 lines (202 loc) · 6.38 KB
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
229
230
231
232
233
/* WEBSERVER Contact.java
* EE422C Project 7 submission by
* Anthony Bauer
* amb6869
* 16480
* Grant Uy
* gau84
* 16480
* Slip days used: <1>
* Fall 2016
*/
package assignment7;
import javafx.application.Platform;
import javafx.collections.FXCollections;
import javafx.geometry.Insets;
import javafx.geometry.Pos;
import javafx.scene.control.Label;
import javafx.scene.input.MouseEvent;
import javafx.scene.layout.BorderPane;
import javafx.scene.layout.HBox;
import javafx.scene.paint.Color;
import javafx.scene.shape.Circle;
import javafx.scene.shape.Shape;
import java.util.ArrayList;
import java.util.List;
import java.util.stream.Collectors;
/**
* Created by Anthony on 11/29/2016.
*/
public class Contact extends BorderPane {
Label name;
boolean friend;
boolean unread;
Shape notify;
Shape addFriend;
Shape unfriend;
HBox left;
HBox right;
Client owner;
List<String> chatHistory;
public Contact(String name){
super();
this.name = new Label(name);
HBox nameBox = new HBox();
nameBox.setAlignment(Pos.CENTER_LEFT);
nameBox.getChildren().add(this.name);
nameBox.setPadding(new Insets(0,0,0,5));
setCenter(nameBox);
chatHistory = new ArrayList<>();
}
public Contact(String name, boolean friend, Client c){
this(name);
this.friend = friend;
owner = c;
left = new HBox();
left.setSpacing(5);
left.setAlignment(Pos.CENTER_RIGHT);
right = new HBox();
right.setSpacing(5);
right.setAlignment(Pos.CENTER_RIGHT);
notify = new Circle(8);
notify.setFill(Color.ORANGE);
addFriend = new Plus(16,16);
addFriend.setFill(Color.GREEN);
unfriend = new Minus(16,16);
unfriend.setFill(Color.RED);
setHandlers();
setLeft(left);
setRight(right);
recompileHBox();
}
protected void setHandlers(){
right.addEventHandler(MouseEvent.MOUSE_CLICKED, event -> {
if(friend){
String query = Parser.packageStrings(ClientAction.REMOVEFRIEND,name.getText());
owner.sendQuery(query);
}
else{
String query = Parser.packageStrings(ClientAction.ADDFRIEND,name.getText());
owner.sendQuery(query);
}
event.consume();
});
addEventHandler(MouseEvent.MOUSE_CLICKED, event -> {
setActiveChat();
});
}
protected void submitMessage(String message){
String query = Parser.packageStrings(ClientAction.SENDMESSAGE,name.getText(),message);
owner.sendQuery(query);
}
public void appendChat(String message){
chatHistory.add(message);
System.out.println("adding message to chat: "+message);
System.out.println("current Contact:"+owner.currentContact);
System.out.println("my Contact:"+this);
if(owner.currentContact==null)
markUnread();
else if(!owner.currentChat.getText().equals(name.getText()))
markUnread();
else{
Platform.runLater(() -> owner.chatMessages.setItems(FXCollections.observableList(chatHistory.stream().map(s->new Label(s)).collect(Collectors.toList()))));
}
}
public void setChatHistory(List<String> s){
chatHistory = s;
}
public void setActiveChat(){
owner.currentContact = this;
markRead();
owner.currentChat.setText(this.toString());
Platform.runLater(()->owner.chatMessages.setItems(FXCollections.observableList(chatHistory.stream().map(s->new Label(s)).collect(Collectors.toList()))));
}
public void setFriend(boolean friend){
this.friend = friend;
if(!friend){
chatHistory = new ArrayList<>();
if(owner.currentContact!=null&&owner.currentContact.equals(this)){
owner.currentContact=null;
Platform.runLater(()->{
owner.currentChat.setText("");
owner.chatMessages.setItems(FXCollections.observableList(chatHistory.stream().map(s->new Label(s)).collect(Collectors.toList())));
});
}
}
recompileHBox();
}
public void markUnread() {
if (owner.currentContact == null || !owner.currentContact.equals(this)){
this.unread = true;
recompileHBox();
}
}
public void markRead(){
this.unread = false;
recompileHBox();
}
protected void recompileHBox() {
Platform.runLater(() -> {
right.getChildren().clear();
left.getChildren().clear();
addFriend();
addUnread();
});
}
protected void addUnread(){
if(unread){
left.getChildren().add(notify);
}
}
protected void addFriend(){
if(friend){
right.getChildren().add(unfriend);
}
else{
right.getChildren().add(addFriend);
}
}
@Override
public String toString(){
return name.getText();
}
@Override
public boolean equals(Object o) {
if(o instanceof Contact)
return ((Contact)o).name.getText().equals(name.getText());
return false;
}
}
class Group extends Contact{
int groupId;
public Group(String name,int groupId, Client c) {
super("[Group] "+name,true,c);
this.groupId = groupId;
}
public void setFriend(boolean friend){
this.friend = friend;
if(!friend) {
leaveGroup();
}
recompileHBox();
}
protected void submitMessage(String message){
String query = Parser.packageStrings(ClientAction.SENDGROUPMESSAGE,groupId,message);
owner.sendQuery(query);
}
protected void setHandlers(){
right.addEventHandler(MouseEvent.MOUSE_CLICKED, event -> {
String query = Parser.packageStrings(ClientAction.LEAVEGROUP,groupId);
owner.sendQuery(query);
event.consume();
});
addEventHandler(MouseEvent.MOUSE_CLICKED, event -> setActiveChat());
}
void leaveGroup(){
/*
owner.currentContact=null;
owner.currentChat.setText("");
Platform.runLater(()->owner.chatMessages.setItems(FXCollections.observableList(chatHistory.stream().map(s->new Label(s)).collect(Collectors.toList()))));
*/
}
}