1 | |
|
2 | |
|
3 | |
|
4 | |
|
5 | |
|
6 | |
|
7 | |
|
8 | |
|
9 | |
|
10 | |
|
11 | |
|
12 | |
|
13 | |
|
14 | |
|
15 | |
|
16 | |
package org.kuali.student.common.ui.client.widgets.search; |
17 | |
|
18 | |
import java.util.ArrayList; |
19 | |
import java.util.List; |
20 | |
|
21 | |
import org.kuali.student.common.assembly.data.Data.DataType; |
22 | |
import org.kuali.student.common.assembly.data.LookupResultMetadata; |
23 | |
import org.kuali.student.common.search.dto.SearchRequest; |
24 | |
import org.kuali.student.common.search.dto.SearchResult; |
25 | |
import org.kuali.student.common.search.dto.SearchResultCell; |
26 | |
import org.kuali.student.common.search.dto.SearchResultRow; |
27 | |
import org.kuali.student.common.ui.client.application.Application; |
28 | |
import org.kuali.student.common.ui.client.application.KSAsyncCallback; |
29 | |
import org.kuali.student.common.ui.client.mvc.Callback; |
30 | |
import org.kuali.student.common.ui.client.service.SearchRpcServiceAsync; |
31 | |
import org.kuali.student.common.ui.client.service.SearchServiceFactory; |
32 | |
import org.kuali.student.common.ui.client.widgets.KSButton; |
33 | |
import org.kuali.student.common.ui.client.widgets.KSButtonAbstract.ButtonStyle; |
34 | |
import org.kuali.student.common.ui.client.widgets.KSLabel; |
35 | |
import org.kuali.student.common.ui.client.widgets.field.layout.layouts.FieldLayoutComponent; |
36 | |
import org.kuali.student.common.ui.client.widgets.layout.VerticalFlowPanel; |
37 | |
import org.kuali.student.common.ui.client.widgets.searchtable.ResultRow; |
38 | |
import org.kuali.student.common.ui.client.widgets.table.scroll.Column; |
39 | |
import org.kuali.student.common.ui.client.widgets.table.scroll.DefaultTableModel; |
40 | |
import org.kuali.student.common.ui.client.widgets.table.scroll.RetrieveAdditionalDataHandler; |
41 | |
import org.kuali.student.common.ui.client.widgets.table.scroll.Row; |
42 | |
import org.kuali.student.common.ui.client.widgets.table.scroll.RowComparator; |
43 | |
import org.kuali.student.common.ui.client.widgets.table.scroll.Table; |
44 | |
|
45 | |
import com.google.gwt.core.client.GWT; |
46 | |
import com.google.gwt.user.client.Window; |
47 | |
import com.google.gwt.user.client.ui.Composite; |
48 | |
import com.google.gwt.user.client.ui.VerticalPanel; |
49 | |
|
50 | 0 | public class SearchResultsTable extends Composite{ |
51 | |
|
52 | 0 | protected final int PAGE_SIZE = 10; |
53 | |
|
54 | 0 | protected SearchRpcServiceAsync searchRpcServiceAsync = SearchServiceFactory.getSearchService(); |
55 | |
|
56 | 0 | protected VerticalPanel layout = new VerticalPanel(); |
57 | |
|
58 | |
private DefaultTableModel tableModel; |
59 | |
protected String resultIdColumnKey; |
60 | |
protected String resultDisplayKey; |
61 | |
protected SearchRequest searchRequest; |
62 | 0 | private Table table = new Table(); |
63 | 0 | protected boolean isMultiSelect = true; |
64 | 0 | protected boolean withMslable = true; |
65 | 0 | protected KSButton mslabel = new KSButton("Modify your search?", ButtonStyle.DEFAULT_ANCHOR); |
66 | |
|
67 | 0 | protected List<Callback<List<SelectedResults>>> selectedCompleteCallbacks = new ArrayList<Callback<List<SelectedResults>>>(); |
68 | |
|
69 | |
public KSButton getMslabel() { |
70 | 0 | return mslabel; |
71 | |
} |
72 | |
|
73 | |
public void setMslabel(KSButton mslabel) { |
74 | 0 | this.mslabel = mslabel; |
75 | 0 | } |
76 | |
|
77 | |
public void removeContent() { |
78 | 0 | table.removeContent(); |
79 | 0 | } |
80 | |
public SearchResultsTable(){ |
81 | 0 | super(); |
82 | 0 | redraw(); |
83 | 0 | layout.setWidth("100%"); |
84 | 0 | initWidget(layout); |
85 | 0 | } |
86 | |
|
87 | |
public void redraw(){ |
88 | 0 | layout.clear(); |
89 | 0 | } |
90 | |
|
91 | |
public void setMutipleSelect(boolean isMultiSelect){ |
92 | 0 | this.isMultiSelect = isMultiSelect; |
93 | 0 | } |
94 | |
|
95 | |
public void setWithMslable(boolean withMslable) { |
96 | 0 | this.withMslable = withMslable; |
97 | 0 | } |
98 | |
|
99 | |
|
100 | |
|
101 | |
public void initializeTable(List<LookupResultMetadata> listResultMetadata, String resultIdKey, String resultDisplayKey){ |
102 | 0 | initializeTable("", listResultMetadata, resultIdKey, resultDisplayKey); |
103 | 0 | } |
104 | |
|
105 | |
|
106 | |
public void initializeTable(String searchId, List<LookupResultMetadata> listResultMetadata, String resultIdKey, String resultDisplayKey){ |
107 | |
|
108 | |
|
109 | 0 | table = new Table(); |
110 | 0 | table.removeAllRows(); |
111 | 0 | this.resultIdColumnKey = resultIdKey; |
112 | 0 | this.resultDisplayKey = resultDisplayKey; |
113 | |
|
114 | 0 | tableModel = new DefaultTableModel(); |
115 | 0 | tableModel.setMultipleSelectable(isMultiSelect); |
116 | |
|
117 | |
|
118 | 0 | for (LookupResultMetadata r: listResultMetadata){ |
119 | 0 | if(!r.isHidden()){ |
120 | 0 | Column col1 = new Column(); |
121 | 0 | col1.setId(r.getKey()); |
122 | 0 | String header = ""; |
123 | |
|
124 | 0 | if (Application.getApplicationContext().getMessage(searchId + ":"+ r.getKey() + FieldLayoutComponent.NAME_MESSAGE_KEY) != null) { |
125 | 0 | header = Application.getApplicationContext().getMessage(searchId + ":"+ r.getKey() + FieldLayoutComponent.NAME_MESSAGE_KEY); |
126 | 0 | } else if (Application.getApplicationContext().getMessage(r.getKey() + FieldLayoutComponent.NAME_MESSAGE_KEY) != null) { |
127 | 0 | header = Application.getApplicationContext().getMessage(r.getKey() + FieldLayoutComponent.NAME_MESSAGE_KEY); |
128 | |
} else { |
129 | 0 | header = Application.getApplicationContext().getUILabel("", null, null, r.getName()); |
130 | |
} |
131 | |
|
132 | 0 | col1.setName(header); |
133 | 0 | col1.setId(r.getKey()); |
134 | 0 | col1.setWidth("100px"); |
135 | 0 | col1.setAscendingRowComparator(new FieldAscendingRowComparator(r.getKey(), r.getDataType())); |
136 | 0 | col1.setDescendingRowComparator(new FieldDescendingRowComparator(r.getKey(), r.getDataType())); |
137 | |
|
138 | 0 | tableModel.addColumn(col1); |
139 | 0 | } |
140 | |
} |
141 | |
|
142 | |
|
143 | 0 | if (this.searchRequest.getSearchKey().toLowerCase().contains("cross")) { |
144 | 0 | tableModel.setMoreData(false); |
145 | |
} |
146 | 0 | if(isMultiSelect){ |
147 | 0 | tableModel.installCheckBoxRowHeaderColumn(); |
148 | |
} |
149 | |
|
150 | 0 | table.getScrollPanel().setHeight("300px"); |
151 | 0 | table.setTableModel(tableModel); |
152 | |
|
153 | 0 | table.addRetrieveAdditionalDataHandler(new RetrieveAdditionalDataHandler(){ |
154 | |
@Override |
155 | |
public void onAdditionalDataRequest() { |
156 | 0 | performOnDemandSearch(tableModel.getRowCount(), PAGE_SIZE); |
157 | |
|
158 | 0 | } |
159 | |
}); |
160 | |
|
161 | 0 | redraw(); |
162 | 0 | layout.add(table); |
163 | 0 | } |
164 | |
|
165 | |
public void performSearch(SearchRequest searchRequest, List<LookupResultMetadata> listResultMetadata, String resultIdKey, String resultDisplayKey, boolean pagedResults) { |
166 | 0 | this.searchRequest = searchRequest; |
167 | 0 | initializeTable(listResultMetadata, resultIdKey, resultDisplayKey); |
168 | 0 | if (this.searchRequest.getSearchKey().toLowerCase().contains("cross")) { |
169 | |
|
170 | |
|
171 | |
|
172 | 0 | performOnDemandSearch(0, 0); |
173 | |
} |
174 | 0 | else if(pagedResults){ |
175 | 0 | performOnDemandSearch(0, PAGE_SIZE); |
176 | |
} |
177 | |
else{ |
178 | 0 | performOnDemandSearch(0, 0); |
179 | |
} |
180 | 0 | } |
181 | |
|
182 | |
|
183 | |
public void performSearch(String searchId, SearchRequest searchRequest, List<LookupResultMetadata> listResultMetadata, String resultIdKey, String resultDisplayKey, boolean pagedResults) { |
184 | 0 | this.searchRequest = searchRequest; |
185 | 0 | initializeTable(searchId, listResultMetadata, resultIdKey, resultDisplayKey); |
186 | 0 | if (this.searchRequest.getSearchKey().toLowerCase().contains("cross")) { |
187 | |
|
188 | |
|
189 | |
|
190 | 0 | performOnDemandSearch(0, 0); |
191 | |
} |
192 | 0 | else if(pagedResults){ |
193 | 0 | performOnDemandSearch(0, PAGE_SIZE); |
194 | |
} |
195 | |
else{ |
196 | 0 | performOnDemandSearch(0, 0); |
197 | |
} |
198 | 0 | } |
199 | |
|
200 | |
public void performSearch(SearchRequest searchRequest, List<LookupResultMetadata> listResultMetadata, String resultIdKey, boolean pagedResults){ |
201 | 0 | this.performSearch(searchRequest, listResultMetadata, resultIdKey, null, true); |
202 | 0 | } |
203 | |
|
204 | |
public void performSearch(SearchRequest searchRequest, List<LookupResultMetadata> listResultMetadata, String resultIdKey){ |
205 | 0 | this.performSearch(searchRequest, listResultMetadata, resultIdKey, true); |
206 | 0 | } |
207 | |
|
208 | |
protected void performOnDemandSearch(int startAt, int size) { |
209 | |
|
210 | 0 | table.displayLoading(true); |
211 | 0 | searchRequest.setStartAt(startAt); |
212 | 0 | if (size != 0) { |
213 | 0 | searchRequest.setNeededTotalResults(false); |
214 | 0 | searchRequest.setMaxResults(size); |
215 | |
} else { |
216 | 0 | searchRequest.setNeededTotalResults(true); |
217 | |
} |
218 | |
|
219 | 0 | searchRpcServiceAsync.search(searchRequest, new KSAsyncCallback<SearchResult>(){ |
220 | |
|
221 | |
@Override |
222 | |
public void handleFailure(Throwable cause) { |
223 | 0 | GWT.log("Failed to perform search", cause); |
224 | 0 | Window.alert("Failed to perform search"); |
225 | 0 | table.displayLoading(false); |
226 | 0 | } |
227 | |
|
228 | |
@Override |
229 | |
public void onSuccess(SearchResult results) { |
230 | 0 | table.addContent(); |
231 | |
|
232 | 0 | if(results != null && results.getRows() != null && results.getRows().size() != 0){ |
233 | 0 | for (SearchResultRow r: results.getRows()){ |
234 | 0 | ResultRow theRow = new ResultRow(); |
235 | 0 | for(SearchResultCell c: r.getCells()){ |
236 | 0 | if(c.getKey().equals(resultIdColumnKey)){ |
237 | 0 | theRow.setId(c.getValue()); |
238 | |
} |
239 | 0 | theRow.setValue(c.getKey(), c.getValue()); |
240 | |
} |
241 | 0 | tableModel.addRow(new SearchResultsRow(theRow)); |
242 | 0 | } |
243 | |
} else { |
244 | 0 | tableModel.setMoreData(false); |
245 | |
|
246 | |
|
247 | 0 | if(searchRequest.getStartAt() == 0){ |
248 | 0 | table.removeContent(); |
249 | 0 | VerticalFlowPanel noResultsPanel = new VerticalFlowPanel(); |
250 | 0 | noResultsPanel.add(new KSLabel("No matches found")); |
251 | 0 | if(withMslable) noResultsPanel.add(mslabel); |
252 | 0 | noResultsPanel.addStyleName("ks-no-results-message"); |
253 | 0 | table.getScrollPanel().add(noResultsPanel); |
254 | |
} |
255 | |
} |
256 | |
|
257 | 0 | tableModel.fireTableDataChanged(); |
258 | 0 | table.displayLoading(false); |
259 | 0 | } |
260 | |
}); |
261 | 0 | } |
262 | |
|
263 | |
public List<ResultRow> getSelectedRows(){ |
264 | 0 | List<ResultRow> rows = new ArrayList<ResultRow>(); |
265 | 0 | for(Row row : tableModel.getSelectedRows()){ |
266 | 0 | rows.add(((SearchResultsRow)row).getResultRow()); |
267 | |
} |
268 | 0 | return rows; |
269 | |
} |
270 | |
|
271 | |
public List<String> getSelectedIds(){ |
272 | 0 | List<String> ids = new ArrayList<String>(); |
273 | 0 | for(Row row : tableModel.getSelectedRows()){ |
274 | 0 | ids.add(((SearchResultsRow)row).getResultRow().getId()); |
275 | |
} |
276 | 0 | return ids; |
277 | |
} |
278 | |
|
279 | |
public void addSelectionCompleteCallback(Callback<List<SelectedResults>> callback){ |
280 | 0 | selectedCompleteCallbacks.add(callback); |
281 | 0 | } |
282 | |
} |
283 | |
|
284 | |
class SearchResultsRow extends Row { |
285 | |
|
286 | |
ResultRow row; |
287 | |
|
288 | 0 | public SearchResultsRow(ResultRow row) { |
289 | 0 | this.row = row; |
290 | 0 | } |
291 | |
|
292 | |
@Override |
293 | |
public Object getCellData(String columnId) { |
294 | 0 | return row.getValue(columnId); |
295 | |
} |
296 | |
|
297 | |
@Override |
298 | |
public void setCellData(String columnId, Object newValue) { |
299 | 0 | row.setValue(columnId, newValue.toString()); |
300 | 0 | } |
301 | |
|
302 | |
@Override |
303 | |
public String toString() { |
304 | 0 | return row.toString(); |
305 | |
} |
306 | |
|
307 | |
public ResultRow getResultRow() { |
308 | 0 | return row; |
309 | |
} |
310 | |
} |
311 | |
|
312 | 0 | class FieldAscendingRowComparator extends RowComparator{ |
313 | |
|
314 | |
String columnId; |
315 | |
DataType type; |
316 | |
|
317 | 0 | FieldAscendingRowComparator(String columnId, DataType type) { |
318 | 0 | this.columnId = columnId; |
319 | 0 | this.type = type; |
320 | 0 | } |
321 | |
|
322 | |
@Override |
323 | |
public int compare(Row row0, Row row1) { |
324 | |
String id0, id1; |
325 | |
|
326 | 0 | if (type.equals(DataType.STRING)) { |
327 | 0 | id0 = (String)row0.getCellData(columnId); |
328 | 0 | id1 = (String)row1.getCellData(columnId); |
329 | |
} else { |
330 | 0 | id0 = (String)row0.getCellData(columnId); |
331 | 0 | id1 = (String)row1.getCellData(columnId); |
332 | |
} |
333 | 0 | return id0.compareTo(id1); |
334 | |
} |
335 | |
} |
336 | |
|
337 | 0 | class FieldDescendingRowComparator extends RowComparator{ |
338 | |
|
339 | |
String columnId; |
340 | |
DataType type; |
341 | |
|
342 | 0 | FieldDescendingRowComparator(String columnId, DataType type) { |
343 | 0 | this.columnId = columnId; |
344 | 0 | this.type = type; |
345 | 0 | } |
346 | |
|
347 | |
@Override |
348 | |
public int compare(Row row0, Row row1) { |
349 | |
String id0, id1; |
350 | |
|
351 | 0 | if (type.equals(DataType.STRING)) { |
352 | 0 | id0 = (String)row0.getCellData(columnId); |
353 | 0 | id1 = (String)row1.getCellData(columnId); |
354 | |
} else { |
355 | 0 | id0 = (String)row0.getCellData(columnId); |
356 | 0 | id1 = (String)row1.getCellData(columnId); |
357 | |
} |
358 | 0 | return id1.compareTo(id0); |
359 | |
} |
360 | |
} |