RequestFactory architectural question

37 views
Skip to first unread message

tbb

unread,
Aug 29, 2012, 8:50:19 PM8/29/12
to google-we...@googlegroups.com
Hi all,

I've been using GWT for quite a while but just recently started using RequestFactory. Basically it's great but I'm having some questions regarding more complex scenarios then just editing entities in a form. Currently I'm implementing a view in GWT to edit a tree-like object graph: A being root element, A has many B's, B has many C's, both B and C have a position within their parent. It allows drag and drop, inline editing etc and changes should be persisted immediately.

Initially I've implemented the logic to maintain the child positions and to move children between parents on the server, but realized last night that it's pretty hard to keep the EntityProxies on the client in sync with the entities. I've then moved the code updating positions and parents to the client and it works. But from an architectural point of view it seems odd to move all the code from the server to the client, esp. as I would need to re-implement it if it was required on the server.

This morning I was thinking about making the whole view an Editor of the root entity, which sounded initially like a reasonable idea but as I would like to have immediate updates after changes, I would have to invoke edit on the root entity after every update again. As it could be a relatively large object graph, I'd like to avoid re-creating all widgets again and again (it could possibly check on edit whether the currently rendered widgets match the object to edit and optimize a bit that way - seems cumbersome as well)

How do others handle this? Any advises or best practises?

Thanks,
Thomas
Reply all
Reply to author
Forward
0 new messages