2 * Copyright (C) 2011 Openismus GmbH
4 * This file is part of GWT-Glom.
6 * GWT-Glom is free software: you can redistribute it and/or modify it
7 * under the terms of the GNU Lesser General Public License as published by the
8 * Free Software Foundation, either version 3 of the License, or (at your
9 * option) any later version.
11 * GWT-Glom is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
16 * You should have received a copy of the GNU Lesser General Public License
17 * along with GWT-Glom. If not, see <http://www.gnu.org/licenses/>.
20 package org.glom.web.client.activity;
22 import org.glom.web.client.ClientFactory;
23 import org.glom.web.client.OnlineGlomServiceAsync;
24 import org.glom.web.client.event.TableChangeEvent;
25 import org.glom.web.client.event.TableChangeEventHandler;
26 import org.glom.web.client.place.DocumentSelectionPlace;
27 import org.glom.web.client.place.ListPlace;
28 import org.glom.web.client.ui.AuthenticationPopup;
29 import org.glom.web.client.ui.ListView;
30 import org.glom.web.client.ui.View;
31 import org.glom.web.shared.layout.LayoutGroup;
33 import com.google.gwt.activity.shared.AbstractActivity;
34 import com.google.gwt.core.client.GWT;
35 import com.google.gwt.event.dom.client.ClickEvent;
36 import com.google.gwt.event.dom.client.ClickHandler;
37 import com.google.gwt.event.shared.EventBus;
38 import com.google.gwt.place.shared.Place;
39 import com.google.gwt.user.client.rpc.AsyncCallback;
40 import com.google.gwt.user.client.ui.AcceptsOneWidget;
42 public class ListActivity extends AbstractActivity implements View.Presenter {
44 private final String documentID;
45 private final String tableName;
46 private final ClientFactory clientFactory;
47 private final ListView listView;
48 private final AuthenticationPopup authenticationPopup;
50 public ListActivity(ListPlace place, ClientFactory clientFactory) {
51 this.documentID = place.getDocumentID();
52 this.tableName = place.getTableName();
53 this.clientFactory = clientFactory;
54 listView = clientFactory.getListView();
55 authenticationPopup = clientFactory.getAuthenticationPopup();
59 public void start(AcceptsOneWidget panel, final EventBus eventBus) {
60 if (documentID.isEmpty())
61 goTo(new DocumentSelectionPlace());
63 // register this class as the presenter
64 listView.setPresenter(this);
66 // TODO this should really be it's own Place/Activity
67 // check if the authentication info has been set for the document
68 AsyncCallback<Boolean> isAuthCallback = new AsyncCallback<Boolean>() {
69 public void onFailure(Throwable caught) {
70 // TODO: create a way to notify users of asynchronous callback failures
71 GWT.log("AsyncCallback Failed: OnlineGlomService.isAuthenticated()");
74 public void onSuccess(Boolean result) {
76 setUpAuthClickHandler(eventBus);
77 authenticationPopup.center();
81 OnlineGlomServiceAsync.Util.getInstance().isAuthenticated(documentID, isAuthCallback);
83 // set the change handler for the table selection widget
84 eventBus.addHandler(TableChangeEvent.TYPE, new TableChangeEventHandler() {
86 public void onTableChange(final TableChangeEvent event) {
87 goTo(new ListPlace(documentID, event.getNewTableName()));
91 // populate the cell table with data
92 AsyncCallback<LayoutGroup> callback = new AsyncCallback<LayoutGroup>() {
93 public void onFailure(Throwable caught) {
94 // TODO: create a way to notify users of asynchronous callback failures
95 GWT.log("AsyncCallback Failed: OnlineGlomService.getListViewLayout()");
98 public void onSuccess(LayoutGroup result) {
99 // TODO check if result.getTableName() is the same as the tableName field. Update it if it's not the
101 listView.setCellTable(documentID, result);
104 OnlineGlomServiceAsync.Util.getInstance().getListViewLayout(documentID, tableName, callback);
106 // indicate that the view is ready to be displayed
107 panel.setWidget(listView.asWidget());
110 private void setUpAuthClickHandler(final EventBus eventBus) {
111 authenticationPopup.setClickOkHandler(new ClickHandler() {
113 public void onClick(ClickEvent event) {
114 authenticationPopup.setTextFieldsEnabled(false);
115 AsyncCallback<Boolean> callback = new AsyncCallback<Boolean>() {
117 public void onFailure(Throwable caught) {
118 // TODO: create a way to notify users of asynchronous callback failures
119 GWT.log("AsyncCallback Failed: OnlineGlomService.checkAuthentication()");
123 public void onSuccess(Boolean result) {
125 authenticationPopup.hide();
126 eventBus.fireEvent(new TableChangeEvent(clientFactory.getTableSelectionView()
127 .getSelectedTableName()));
129 authenticationPopup.setTextFieldsEnabled(true);
130 authenticationPopup.setError();
134 OnlineGlomServiceAsync.Util.getInstance().checkAuthentication(documentID,
135 authenticationPopup.getUsername(), authenticationPopup.getPassword(), callback);
141 private void clearView() {
142 authenticationPopup.hide();
143 authenticationPopup.clear();
150 * @see com.google.gwt.activity.shared.AbstractActivity#onCancel()
153 public void onCancel() {
160 * @see com.google.gwt.activity.shared.AbstractActivity#onStop()
163 public void onStop() {
170 * @see org.glom.web.client.ui.View.Presenter#goTo(com.google.gwt.place.shared.Place)
172 public void goTo(Place place) {
173 clientFactory.getPlaceController().goTo(place);