blob: 57d8027795b0a36d3fad9185edaf95f811319190 (
plain)
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
|
/**
*
*/
package com.itmill.toolkit.demo;
import java.util.Iterator;
import java.util.Map;
import javax.portlet.ActionRequest;
import javax.portlet.ActionResponse;
import javax.portlet.PortletMode;
import javax.portlet.PortletRequest;
import javax.portlet.PortletURL;
import javax.portlet.RenderRequest;
import javax.portlet.RenderResponse;
import javax.portlet.WindowState;
import com.itmill.toolkit.Application;
import com.itmill.toolkit.terminal.ExternalResource;
import com.itmill.toolkit.terminal.gwt.server.PortletApplicationContext;
import com.itmill.toolkit.terminal.gwt.server.PortletApplicationContext.PortletListener;
import com.itmill.toolkit.ui.Label;
import com.itmill.toolkit.ui.Link;
import com.itmill.toolkit.ui.TextField;
import com.itmill.toolkit.ui.Window;
import com.itmill.toolkit.ui.Window.Notification;
/**
* @author marc
*
*/
public class PortletDemo extends Application {
Window main = new Window();
TextField tf = new TextField("Some value");
Label userInfo = new Label();
Link portletEdit = new Link();
Link portletMax = new Link();
Link someAction = null;
@Override
public void init() {
main = new Window();
setMainWindow(main);
userInfo.setCaption("User info");
userInfo.setContentMode(Label.CONTENT_PREFORMATTED);
main.addComponent(userInfo);
tf.setEnabled(false);
tf.setImmediate(true);
main.addComponent(tf);
portletEdit.setEnabled(false);
main.addComponent(portletEdit);
portletMax.setEnabled(false);
main.addComponent(portletMax);
if (getContext() instanceof PortletApplicationContext) {
PortletApplicationContext ctx = (PortletApplicationContext) getContext();
ctx.addPortletListener(this, new DemoPortletListener());
} else {
getMainWindow().showNotification("Not inited via Portal!",
Notification.TYPE_ERROR_MESSAGE);
}
}
private class DemoPortletListener implements PortletListener {
public void handleActionRequest(ActionRequest request,
ActionResponse response) {
main.addComponent(new Label("Action received"));
}
public void handleRenderRequest(RenderRequest request,
RenderResponse response) {
// Portlet up-and-running, enable stuff
portletEdit.setEnabled(true);
portletMax.setEnabled(true);
// Editable if we're in editmode
tf.setEnabled((request.getPortletMode() == PortletMode.EDIT));
// Show notification about current mode and state
getMainWindow().showNotification(
"Portlet status",
"Mode: " + request.getPortletMode() + " State: "
+ request.getWindowState(),
Notification.TYPE_WARNING_MESSAGE);
// Display current user info
Map uinfo = (Map) request.getAttribute(PortletRequest.USER_INFO);
if (uinfo != null) {
String s = "";
for (Iterator it = uinfo.keySet().iterator(); it.hasNext();) {
Object key = it.next();
Object val = uinfo.get(key);
s += key + ": " + val + "\n";
}
if (request.isUserInRole("administrator")) {
s += "(administrator)";
}
userInfo.setValue(s);
} else {
userInfo.setValue("-");
}
// Create Edit/Done link (actionUrl)
PortletURL url = response.createActionURL();
try {
url
.setPortletMode((request.getPortletMode() == PortletMode.VIEW ? PortletMode.EDIT
: PortletMode.VIEW));
portletEdit.setResource(new ExternalResource(url.toString()));
portletEdit
.setCaption((request.getPortletMode() == PortletMode.VIEW ? "Edit"
: "Done"));
} catch (Exception e) {
portletEdit.setEnabled(false);
}
// Create Maximize/Normal link (actionUrl)
url = response.createActionURL();
try {
url
.setWindowState((request.getWindowState() == WindowState.NORMAL ? WindowState.MAXIMIZED
: WindowState.NORMAL));
portletMax.setResource(new ExternalResource(url.toString()));
portletMax
.setCaption((request.getWindowState() == WindowState.NORMAL ? "Maximize"
: "Back to normal"));
} catch (Exception e) {
portletMax.setEnabled(false);
}
if (someAction == null) {
url = response.createActionURL();
try {
someAction = new Link("An action", new ExternalResource(url
.toString()));
main.addComponent(someAction);
} catch (Exception e) {
// Oops
System.err.println("Could not create someAction: " + e);
}
}
}
}
}
|