Báze pro UI. Přidaná podpora validace. Podpora filtrování pře LambdaJ.
parent
2ca878f52d
commit
c5c8aacd31
@ -0,0 +1,18 @@
|
|||||||
|
package info.bukova.isspst.dao;
|
||||||
|
|
||||||
|
@SuppressWarnings("serial")
|
||||||
|
public class IntegrityException extends RuntimeException {
|
||||||
|
|
||||||
|
public IntegrityException(String message) {
|
||||||
|
super( message );
|
||||||
|
}
|
||||||
|
|
||||||
|
public IntegrityException(Throwable root) {
|
||||||
|
super( root );
|
||||||
|
}
|
||||||
|
|
||||||
|
public IntegrityException(String message, Throwable root) {
|
||||||
|
super( message, root );
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,10 @@
|
|||||||
|
package info.bukova.isspst.filters;
|
||||||
|
|
||||||
|
import org.hamcrest.TypeSafeMatcher;
|
||||||
|
|
||||||
|
public interface Filter<T> {
|
||||||
|
|
||||||
|
public TypeSafeMatcher<T> matcher();
|
||||||
|
public String queryString();
|
||||||
|
|
||||||
|
}
|
@ -1,7 +1,15 @@
|
|||||||
package info.bukova.isspst.services;
|
package info.bukova.isspst.services;
|
||||||
|
|
||||||
|
import org.springframework.transaction.annotation.Transactional;
|
||||||
|
|
||||||
import info.bukova.isspst.data.Role;
|
import info.bukova.isspst.data.Role;
|
||||||
|
|
||||||
public class RoleServiceImpl extends AbstractService<Role> implements RoleService {
|
public class RoleServiceImpl extends AbstractService<Role> implements RoleService {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
@Transactional
|
||||||
|
public Role getRoleByAuthority(String authority) {
|
||||||
|
return this.selectSingle("from Role where authority = '" + authority + "'");
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,28 @@
|
|||||||
|
package info.bukova.isspst.services;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class ValidationException extends RuntimeException {
|
||||||
|
|
||||||
|
private static final long serialVersionUID = -2251676786418660137L;
|
||||||
|
|
||||||
|
private Map<String, String> messages;
|
||||||
|
|
||||||
|
public ValidationException() {
|
||||||
|
messages = new HashMap<String, String>();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void addMessage(String property, String message) {
|
||||||
|
messages.put(property, message);
|
||||||
|
}
|
||||||
|
|
||||||
|
public Map<String, String> getMessages() {
|
||||||
|
return messages;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMessages(Map<String, String> messages) {
|
||||||
|
this.messages = messages;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
package info.bukova.isspst.ui;
|
||||||
|
|
||||||
|
import info.bukova.isspst.dao.IntegrityException;
|
||||||
|
import info.bukova.isspst.services.Service;
|
||||||
|
import info.bukova.isspst.services.ValidationException;
|
||||||
|
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.zkoss.bind.annotation.BindingParam;
|
||||||
|
import org.zkoss.bind.annotation.Command;
|
||||||
|
import org.zkoss.bind.annotation.ExecutionArgParam;
|
||||||
|
import org.zkoss.bind.annotation.Init;
|
||||||
|
import org.zkoss.bind.annotation.NotifyChange;
|
||||||
|
import org.zkoss.zul.Messagebox;
|
||||||
|
import org.zkoss.zul.Window;
|
||||||
|
|
||||||
|
public class FormViewModel<T> {
|
||||||
|
|
||||||
|
private T dataBean;
|
||||||
|
private Map<String, String> errMessages;
|
||||||
|
private Service<T> service;
|
||||||
|
|
||||||
|
@Init
|
||||||
|
public void init(@ExecutionArgParam("selected") T selected, @ExecutionArgParam("service") Service<T> service) {
|
||||||
|
this.dataBean = selected;
|
||||||
|
this.service = service;
|
||||||
|
}
|
||||||
|
|
||||||
|
public T getDataBean() {
|
||||||
|
return dataBean;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
@NotifyChange("errMessages")
|
||||||
|
public void save(@BindingParam("window") Window win) {
|
||||||
|
try {
|
||||||
|
service.update(dataBean);
|
||||||
|
win.detach();
|
||||||
|
} catch (ValidationException e) {
|
||||||
|
errMessages = e.getMessages();
|
||||||
|
String classErr = errMessages.get("CLASS_ERR");
|
||||||
|
|
||||||
|
if (classErr == null) {
|
||||||
|
classErr = "";
|
||||||
|
}
|
||||||
|
|
||||||
|
Messagebox.show("Chyba validace", "Error", Messagebox.OK, Messagebox.ERROR);
|
||||||
|
} catch (IntegrityException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public Map<String, String> getErrMessages() {
|
||||||
|
return errMessages;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void setErrMesages(Map<String, String> msgs) {
|
||||||
|
this.errMessages = msgs;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,263 @@
|
|||||||
|
package info.bukova.isspst.ui;
|
||||||
|
|
||||||
|
import info.bukova.isspst.dao.IntegrityException;
|
||||||
|
import info.bukova.isspst.data.DataModel;
|
||||||
|
import info.bukova.isspst.filters.Filter;
|
||||||
|
import info.bukova.isspst.services.Service;
|
||||||
|
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import org.zkoss.bind.annotation.BindingParam;
|
||||||
|
import org.zkoss.bind.annotation.Command;
|
||||||
|
import org.zkoss.bind.annotation.GlobalCommand;
|
||||||
|
import org.zkoss.bind.annotation.NotifyChange;
|
||||||
|
import org.zkoss.zk.ui.Executions;
|
||||||
|
import org.zkoss.zul.Messagebox;
|
||||||
|
import org.zkoss.zul.Window;
|
||||||
|
|
||||||
|
public class ListViewModel<T extends DataModel> {
|
||||||
|
|
||||||
|
private boolean confirmDelete = false;
|
||||||
|
private boolean filter = false;
|
||||||
|
private Window editWin;
|
||||||
|
private T dataBean;
|
||||||
|
//private T filterTemplate;
|
||||||
|
private Filter<T> dataFilter;
|
||||||
|
private T editBean;
|
||||||
|
private List<T> dataList;
|
||||||
|
private List<T> fullList;
|
||||||
|
private List<T> tmpList;
|
||||||
|
private int selIndex = -1;
|
||||||
|
private String sortCol;
|
||||||
|
private boolean sortDesc = true;
|
||||||
|
private boolean newRec = false;
|
||||||
|
private boolean fullFill = false;
|
||||||
|
|
||||||
|
protected Service<T> service;
|
||||||
|
protected Class<T> dataClass;
|
||||||
|
protected String formZul;
|
||||||
|
|
||||||
|
public List<T> getDataList() {
|
||||||
|
if (dataList == null) {
|
||||||
|
dataList = new ArrayList<T>();
|
||||||
|
loadFromDb();
|
||||||
|
}
|
||||||
|
|
||||||
|
return dataList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDataBean(T data) {
|
||||||
|
this.dataBean = data;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDataFilter(Filter<T> dataFilter) {
|
||||||
|
this.dataFilter = dataFilter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public T getDataBean() {
|
||||||
|
return dataBean;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getConfirmDelete() {
|
||||||
|
return confirmDelete;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getFilter() {
|
||||||
|
return this.filter;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean getFullFill() {
|
||||||
|
return fullFill;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void newRecMode() {
|
||||||
|
newRec = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void setEditBean(T edit) {
|
||||||
|
this.editBean = edit;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@Command
|
||||||
|
@NotifyChange({"filter", "dataList", "dataBean"})
|
||||||
|
public void filter() {
|
||||||
|
filter = !filter;
|
||||||
|
|
||||||
|
if (!filter) {
|
||||||
|
dataList = fullList;
|
||||||
|
dataBean = null;
|
||||||
|
selIndex = -1;
|
||||||
|
} else {
|
||||||
|
doFilter();
|
||||||
|
dataBean = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
@NotifyChange("dataList")
|
||||||
|
public void doFilter() {
|
||||||
|
if (dataFilter == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
List<T> result = service.filterList(fullList, dataFilter);
|
||||||
|
selIndex = -1;
|
||||||
|
dataList = result;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
public void addNew() {
|
||||||
|
try {
|
||||||
|
newRecMode();
|
||||||
|
editBean = dataClass.newInstance();
|
||||||
|
showForm();
|
||||||
|
} catch (InstantiationException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
} catch (IllegalAccessException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
public void edit() {
|
||||||
|
int index = dataList.indexOf(dataBean);
|
||||||
|
if (index != -1) {
|
||||||
|
selIndex = index;
|
||||||
|
}
|
||||||
|
editBean = service.getById(dataBean.getId());
|
||||||
|
showForm();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
@NotifyChange("confirmDelete")
|
||||||
|
public void delObject() {
|
||||||
|
confirmDelete = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
@NotifyChange({"dataList", "dataBean"})
|
||||||
|
public void delete() {
|
||||||
|
try {
|
||||||
|
service.delete(dataBean);
|
||||||
|
dataList.remove(dataBean);
|
||||||
|
dataBean = null;
|
||||||
|
} catch (IntegrityException e) {
|
||||||
|
Messagebox.show("Error while deleting object", "Error", Messagebox.OK, Messagebox.ERROR);
|
||||||
|
}
|
||||||
|
confirmDelete = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
@GlobalCommand
|
||||||
|
@NotifyChange({"dataList", "dataBean"})
|
||||||
|
public void refresh() {
|
||||||
|
if (editBean != null && !editBean.isValid()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!filter && newRec) {
|
||||||
|
dataList.add(editBean);
|
||||||
|
if (dataList != fullList) {
|
||||||
|
fullList.add(editBean);
|
||||||
|
}
|
||||||
|
} else if (newRec) {
|
||||||
|
fullList.add(editBean);
|
||||||
|
}
|
||||||
|
dataBean = editBean;
|
||||||
|
if (!newRec) {
|
||||||
|
dataList.set(selIndex, editBean);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@GlobalCommand
|
||||||
|
@NotifyChange({"dataList", "dataBean", "fullFill"})
|
||||||
|
public void reload() {
|
||||||
|
dataBean = null;
|
||||||
|
dataList.clear();
|
||||||
|
loadFromDbSync();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
@NotifyChange("selIndex")
|
||||||
|
public void afterRender() {
|
||||||
|
if (editBean != null && !editBean.isValid()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (selIndex > dataList.size() -1) {
|
||||||
|
selIndex = -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (newRec) {
|
||||||
|
selIndex = dataList.size() -1;
|
||||||
|
newRec = false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
@NotifyChange("dataBean")
|
||||||
|
public void onSort(@BindingParam("column") String column) {
|
||||||
|
if (sortCol == null || this.sortCol.equals(column))
|
||||||
|
this.sortDesc = !this.sortDesc;
|
||||||
|
|
||||||
|
this.sortCol = column;
|
||||||
|
selIndex = -1;
|
||||||
|
dataBean = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
public int getSelIndex() {
|
||||||
|
return this.selIndex;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Command
|
||||||
|
@NotifyChange({"dataList", "fullFill"})
|
||||||
|
public void fullFill() {
|
||||||
|
if (fullFill && dataList.isEmpty()) {
|
||||||
|
dataList.addAll(tmpList);
|
||||||
|
fullList = dataList;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void loadFromDb() {
|
||||||
|
Thread fillThread = new Thread(new Runnable() {
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
tmpList = service.getAll();
|
||||||
|
|
||||||
|
try {
|
||||||
|
Thread.sleep(200);
|
||||||
|
} catch (InterruptedException e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
|
||||||
|
fullFill = true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
fillThread.start();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void loadFromDbSync() {
|
||||||
|
dataList.addAll(service.getAll());
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void showForm() {
|
||||||
|
Map<String, Object> arg = new HashMap<String, Object>();
|
||||||
|
arg.put("selected", editBean);
|
||||||
|
arg.put("service", service);
|
||||||
|
editWin = (Window) Executions.createComponents(formZul, null, arg);
|
||||||
|
editWin.doModal();
|
||||||
|
}
|
||||||
|
|
||||||
|
protected List<T> getFullList() {
|
||||||
|
return fullList;
|
||||||
|
}
|
||||||
|
|
||||||
|
protected void setFullFill(boolean fullFill) {
|
||||||
|
this.fullFill = fullFill;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,18 @@
|
|||||||
|
package info.bukova.isspst.ui;
|
||||||
|
|
||||||
|
import org.zkoss.bind.annotation.Command;
|
||||||
|
import org.zkoss.zk.ui.select.annotation.WireVariable;
|
||||||
|
|
||||||
|
import info.bukova.isspst.services.UserService;
|
||||||
|
|
||||||
|
public class TestVM {
|
||||||
|
|
||||||
|
@WireVariable
|
||||||
|
private UserService userService;
|
||||||
|
|
||||||
|
@Command
|
||||||
|
public void test() {
|
||||||
|
userService.test();
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<title>Objednávky</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
administrace
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,10 @@
|
|||||||
|
<?page title="Okno" contentType="text/html;charset=UTF-8"?>
|
||||||
|
<zk>
|
||||||
|
<?variable-resolver class="org.zkoss.zkplus.spring.DelegatingVariableResolver"?>
|
||||||
|
<window title="Okno" border="normal" apply="org.zkoss.bind.BindComposer"
|
||||||
|
viewModel="@id('vm') @init('info.bukova.isspst.ui.TestVM')">
|
||||||
|
<label value="Pokus pokus"/>
|
||||||
|
<button label="metoda" onClick="@command('test')"/>
|
||||||
|
</window>
|
||||||
|
<include src="../app/testApp.zul"/>
|
||||||
|
</zk>
|
@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="UTF-8" ?>
|
||||||
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
||||||
|
<html xmlns="http://www.w3.org/1999/xhtml">
|
||||||
|
<head>
|
||||||
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
||||||
|
<title>Objednávky</title>
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
aplikace
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,6 @@
|
|||||||
|
<?page title="Test" contentType="text/html;charset=UTF-8"?>
|
||||||
|
<zk>
|
||||||
|
<window title="Test" border="normal">
|
||||||
|
New Content Here!
|
||||||
|
</window>
|
||||||
|
</zk>
|
@ -0,0 +1,15 @@
|
|||||||
|
<html xmlns="native" xmlns:u="zul" xmlns:zk="zk">
|
||||||
|
<head>
|
||||||
|
<title>Objednávky</title>
|
||||||
|
</head>
|
||||||
|
<body style="height: 100%; padding: 0 5px;">
|
||||||
|
|
||||||
|
<div style="height: 15%"/>
|
||||||
|
|
||||||
|
<div align="center">
|
||||||
|
|
||||||
|
<u:include src="login.zul"/>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,33 @@
|
|||||||
|
<?page title="Přihlášení" contentType="text/html;charset=UTF-8"?>
|
||||||
|
<zk>
|
||||||
|
|
||||||
|
<window title="Přihlášení" border="normal" width="300px">
|
||||||
|
<html style="font-family:arial,sans-serif;font-size:12px;">
|
||||||
|
<![CDATA[
|
||||||
|
<form name='loginForm' action="j_spring_security_check"
|
||||||
|
method='POST'>
|
||||||
|
|
||||||
|
<table>
|
||||||
|
<tr>
|
||||||
|
<td>Uživatel:</td>
|
||||||
|
<td><input type='text' name='j_username' value=''/>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>Heslo:</td>
|
||||||
|
<td><input type='password' name='j_password' />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td colspan='2'><input name="submit" type="submit"
|
||||||
|
value="Přihlásit" />
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
</form>
|
||||||
|
]]>
|
||||||
|
</html>
|
||||||
|
</window>
|
||||||
|
|
||||||
|
</zk>
|
Loading…
Reference in New Issue