use of org.pentaho.mantle.client.solutionbrowser.SolutionBrowserClipboard in project pentaho-platform by pentaho.
the class CutFilesCommand method performOperation.
/*
* (non-Javadoc)
*
* @see org.pentaho.mantle.client.commands.AbstractCommand#performOperation(boolean)
*/
@Override
protected void performOperation(boolean feedback) {
SolutionBrowserClipboard clipBoard = SolutionBrowserClipboard.getInstance();
clipBoard.setClipboardItemsForCut(filesToCut);
clipBoard.setMimeType("jcrFiles/list");
event.setMessage("Success");
EventBusUtil.EVENT_BUS.fireEvent(event);
}
use of org.pentaho.mantle.client.solutionbrowser.SolutionBrowserClipboard in project pentaho-platform by pentaho.
the class PasteFilesCommand method performOperation.
/*
* (non-Javadoc)
*
* @see org.pentaho.mantle.client.commands.AbstractCommand#performOperation(boolean)
*/
@Override
protected void performOperation(boolean feedback) {
final SolutionBrowserClipboard clipBoard = SolutionBrowserClipboard.getInstance();
@SuppressWarnings("unchecked") final List<SolutionBrowserFile> clipboardFileItems = clipBoard.getClipboardItems();
if (clipboardFileItems != null && clipboardFileItems.size() > 0 && getSolutionPath() != null) {
String getChildrenUrl = contextURL + "api/repo/files/" + SolutionBrowserPanel.pathToId(getSolutionPath()) + "/tree?depth=1" + "&showHidden=" + // $NON-NLS-1$ //$NON-NLS-2$
SolutionBrowserPanel.getInstance().getSolutionTree().isShowHiddenFiles();
RequestBuilder childrenRequestBuilder = new RequestBuilder(RequestBuilder.GET, getChildrenUrl);
try {
childrenRequestBuilder.setHeader("If-Modified-Since", "01 Jan 1970 00:00:00 GMT");
childrenRequestBuilder.sendRequest(null, new RequestCallback() {
@Override
public void onError(Request getChildrenRequest, Throwable exception) {
Window.alert(exception.getLocalizedMessage());
event.setMessage(exception.getLocalizedMessage());
EventBusUtil.EVENT_BUS.fireEvent(event);
}
@Override
public void onResponseReceived(Request getChildrenRequest, Response getChildrenResponse) {
event.setMessage("Click");
EventBusUtil.EVENT_BUS.fireEvent(event);
boolean cutSameDir = false;
if (getChildrenResponse.getStatusCode() >= 200 && getChildrenResponse.getStatusCode() < 300) {
boolean promptForOptions = false;
Document children = XMLParser.parse(getChildrenResponse.getText());
NodeList childrenNameNodes = children.getElementsByTagName(NAME_NODE_TAG);
List<String> childNames = new ArrayList<String>();
for (int i = 0; i < childrenNameNodes.getLength(); i++) {
Node childNameNode = childrenNameNodes.item(i);
childNames.add(childNameNode.getFirstChild().getNodeValue());
}
for (SolutionBrowserFile file : clipboardFileItems) {
if (file.getPath() != null) {
String pasteFileParentPath = file.getPath();
// $NON-NLS-1$
String fileNameWithExt = pasteFileParentPath.substring(pasteFileParentPath.lastIndexOf("/") + 1, pasteFileParentPath.length());
// $NON-NLS-1$
pasteFileParentPath = pasteFileParentPath.substring(0, pasteFileParentPath.lastIndexOf("/"));
if (childNames.contains(fileNameWithExt) && !getSolutionPath().equals(pasteFileParentPath)) {
promptForOptions = true;
break;
} else if (childNames.contains(fileNameWithExt) && getSolutionPath().equals(pasteFileParentPath) && SolutionBrowserClipboard.getInstance().getClipboardAction() == SolutionBrowserClipboard.ClipboardAction.CUT) {
cutSameDir = true;
break;
}
}
}
if (promptForOptions) {
final OverwritePromptDialog overwriteDialog = new OverwritePromptDialog();
final IDialogCallback callback = new IDialogCallback() {
public void cancelPressed() {
event.setMessage("Cancel");
EventBusUtil.EVENT_BUS.fireEvent(event);
overwriteDialog.hide();
}
public void okPressed() {
performSave(clipBoard, overwriteDialog.getOverwriteMode());
}
};
overwriteDialog.setCallback(callback);
overwriteDialog.center();
} else {
if (!cutSameDir) {
performSave(clipBoard, 2);
} else {
event.setMessage("Cancel");
EventBusUtil.EVENT_BUS.fireEvent(event);
}
}
} else {
Window.alert(getChildrenResponse.getText());
}
}
});
} catch (RequestException e) {
Window.alert(e.getLocalizedMessage());
}
}
}
use of org.pentaho.mantle.client.solutionbrowser.SolutionBrowserClipboard in project pentaho-platform by pentaho.
the class CopyFilesCommand method performOperation.
/*
* (non-Javadoc)
*
* @see org.pentaho.mantle.client.commands.AbstractCommand#performOperation(boolean)
*/
@Override
protected void performOperation(boolean feedback) {
SolutionBrowserClipboard clipBoard = SolutionBrowserClipboard.getInstance();
clipBoard.setClipboardItemsByIdForCopy(filesToCopy);
clipBoard.setMimeType("jcrFiles/list");
event.setMessage("Success");
EventBusUtil.EVENT_BUS.fireEvent(event);
}
Aggregations