workspace-sharing-widget/src/main/java/org/gcube/portlets/widgets/workspacesharingwidget/client/WorkspaceSmartSharingContro...

105 lines
2.8 KiB
Java

/**
*
*/
package org.gcube.portlets.widgets.workspacesharingwidget.client;
import java.util.List;
import org.gcube.portlets.widgets.workspacesharingwidget.client.rpc.WorkspaceSharingService;
import org.gcube.portlets.widgets.workspacesharingwidget.client.rpc.WorkspaceSharingServiceAsync;
import org.gcube.portlets.widgets.workspacesharingwidget.client.view.sharing.SmartShare;
import org.gcube.portlets.widgets.workspacesharingwidget.shared.CredentialModel;
import org.gcube.portlets.widgets.workspacesharingwidget.shared.FileModel;
import com.extjs.gxt.ui.client.event.BaseEvent;
import com.extjs.gxt.ui.client.event.Events;
import com.extjs.gxt.ui.client.event.Listener;
import com.extjs.gxt.ui.client.widget.Dialog;
import com.google.gwt.core.client.GWT;
/**
* @author Francesco Mangiacrapa francesco.mangiacrapa@isti.cnr.it
* @Feb 25, 2014
*
*/
public class WorkspaceSmartSharingController {
public static final WorkspaceSharingServiceAsync rpcWorkspaceSharingService = (WorkspaceSharingServiceAsync) GWT.create(WorkspaceSharingService.class);
private SmartShare smartShare = null;
private List<CredentialModel> listAlreadySharedContact;
private FileModel fileModel;
/**
*
* @param file a fake file (used to display name of the file or folder) to display the field name
* @param listAlreadySharedContact
*/
public WorkspaceSmartSharingController(FileModel file, List<CredentialModel> listAlreadySharedContact) {
this.listAlreadySharedContact = listAlreadySharedContact;
this.fileModel = file;
smartShare = new SmartShare();
smartShare.setSize(ConstantsSharing.WIDTH_DIALOG+20, ConstantsSharing.HEIGHT_DIALOG-170);
updateSharingDialog();
addListenersSharingDialog();
}
/**
* Example of listeners
*/
private void addListenersSharingDialog(){
smartShare.getButtonById(Dialog.OK).addListener(Events.Select, new Listener<BaseEvent>() {
@Override
public void handleEvent(BaseEvent be) {
// if(smartShare.isValidForm(true)){
// //THAT'S OK
//
// smartShare.getSharedListUsers(); //@return the selected contacts (as InfoContactModel)
//
// smartShare.getSharedListUsersCredential(); //@return tthe selected contacts (as CredentialModel)
//
// for (InfoContactModel contact : smartShare.getSharedListUsers()) {
// System.out.println(contact);
// }
//
// for (CredentialModel credential : smartShare.getSharedListUsersCredential()) {
// System.out.println(credential);
// }
//
// }
}
});
}
/**
*
* @param fileModel
*/
private void updateSharingDialog(){
smartShare.unmask();
smartShare.updateSharingDialog(fileModel, listAlreadySharedContact);
// dialogShareItem.show();
smartShare.layout();
}
/**
*
* @return gxt 2.2.5 Dialog
*/
public SmartShare getSharingDialog() {
return smartShare;
}
}