-
Notifications
You must be signed in to change notification settings - Fork 68
/
Copy pathMainFrame.java
221 lines (174 loc) · 6.09 KB
/
MainFrame.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
package comp421;
import javax.imageio.ImageIO;
import javax.swing.*;
import java.awt.*;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.awt.image.BufferedImage;
import java.io.File;
import java.io.IOException;
import java.sql.SQLException;
import java.util.*;
public class MainFrame extends JFrame{
JButton loginButton = new JButton("Login");
JButton registerButton = new JButton("Register");
JButton searchProductButton = new JButton ("Search Product");
JButton buyButton = new JButton ("View Shopping Cart and Purchase");
JButton addAddressButton = new JButton("Add a new Address");
JButton QuitButton = new JButton("Quit");
JLabel noticeString = new JLabel("Please login or Register first");
JLabel reminderString = new JLabel("");
MainFrame mainFrame = this;
SQL sql = null;
int userid;
public MainFrame() throws SQLException
{
// run initial the sql, build connection
sql = new SQL();
userid = 0;
// button panel for frame
JPanel mainArc = new JPanel();
mainArc.setLayout(new GridLayout(6,1,25,0));
mainArc.setSize(200, 400);
// listener for main frame, need sql passed to subframe
MainButtonListener listener = new MainButtonListener(sql); //need to pass the sql class and userid
loginButton.addActionListener(listener);
mainArc.add(loginButton);
registerButton.addActionListener(listener);
mainArc.add(registerButton);
addAddressButton.addActionListener(listener);
addAddressButton.setEnabled(false);
mainArc.add(addAddressButton);
searchProductButton.addActionListener(listener);
searchProductButton.setEnabled(false);
mainArc.add(searchProductButton);
buyButton.addActionListener(listener);
buyButton.setEnabled(false);
mainArc.add(buyButton);
QuitButton.addActionListener(listener);
mainArc.add(QuitButton);
//setUserid(106);
this.add(mainArc,BorderLayout.WEST);
//Right Side
JPanel logoPanel = new JPanel();
JLabel imageLabel = new JLabel(new ImageIcon(MainFrame.class.getResource("logo.png")));
logoPanel.add(imageLabel);
JPanel stringPanel = new JPanel();
stringPanel.add(noticeString);
JPanel stringPanel2 = new JPanel();
stringPanel2.add(reminderString);
JPanel rightPanel = new JPanel();
rightPanel.setLayout(new GridLayout(0,1));
rightPanel.add(logoPanel);
rightPanel.add(stringPanel);
rightPanel.add(stringPanel2);
this.add(rightPanel, BorderLayout.EAST);
}
public void setUserid(int id) throws SQLException
{
userid = id;
noticeString.setText("You have login with user id "+ id);
System.out.println("Userid is set to "+ userid);
setAddAddressButtonEnable(true);
setLoginButtonEnable(false);
setRegisterEnable(false);
//check if there is address ;
String sqlCode = "select * from address where userid = "+id;
java.sql.ResultSet result = sql.QueryExchte(sqlCode);
if(result.next())
{
setSearchAndBuyButtonEnable(true);
}
else
{
reminderString.setText("Please add an address before your shopping");
}
}
public void setAddAddressButtonEnable(boolean b)
{
addAddressButton.setEnabled(b);
}
public void setSearchAndBuyButtonEnable(boolean b)
{
reminderString.setText("Please enjoy your shopping!");
searchProductButton.setEnabled(b);
buyButton.setEnabled(b);
}
public void setLoginButtonEnable(boolean b){
loginButton.setEnabled(b);
}
public void setRegisterEnable(boolean b){
registerButton.setEnabled(b);
}
public static void main(String[] args) throws Exception
{
MainFrame frame = new MainFrame();
frame.setTitle("C2C Online Electronic Shop");
frame.setLocationRelativeTo(null);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(500, 700);
frame.setVisible(true);
// frame.pack();
}
public class MainButtonListener implements ActionListener {
SQL sql = null;
public MainButtonListener(SQL sqlpassed)
{
sql = sqlpassed;
}
public void actionPerformed(ActionEvent event ) {
if(event.getSource() == loginButton)
{
//mainFrame to be passed
Login.invoke(sql,mainFrame);
mainFrame.setVisible(false);
}
else if(event.getSource() == registerButton)
{
//mainFrame to be passed
Register.invoke(sql,mainFrame);
mainFrame.setVisible(false);
}
else if (event.getSource() == addAddressButton)
{
//mainFrame to be passed
System.out.println("userid = "+ userid+ "is passed to addAddressButton");
AddAddress.invoke(userid,sql,mainFrame);
mainFrame.setVisible(false);
}
else if (event.getSource() == searchProductButton)
{
//done
mainFrame.setVisible(false);
SearchFrame.invoke(userid,sql,mainFrame);
}
else if(event.getSource() == buyButton)
{
String sqlCode = "select P.name, S.addTime, S.quantity, P.pid, P.price from Save_To_Shopping_Cart S, Product P where S.pid = P.pid and S.userid = "+ userid + ";";
java.sql.ResultSet rs = sql.QueryExchte(sqlCode);
int rowCount = 0;
try {
rs.last();
rowCount = rs.getRow();
rs.first();
} catch (Exception e) {
// TODO: handle exception
e.printStackTrace();
}
if(rowCount == 0)
JOptionPane.showMessageDialog(null, "No product is added into cart yet", "NO Result",JOptionPane.OK_OPTION);
else
try {
SetUpOrderFrame.invoke(userid, sql,rs,mainFrame);
mainFrame.setVisible(false);
} catch (SQLException e) {
}
}
else if(event.getSource() == QuitButton)
{
//done
System.exit(0);
}
}
}
}