mirror of
https://github.com/nasa/openmct.git
synced 2025-01-30 08:04:03 +00:00
2e8d021a6a
Fixes #1118 Locator in Save In, Move, etc. dialog now expands vertically to use as much vertical as possible;
159 lines
6.1 KiB
JavaScript
159 lines
6.1 KiB
JavaScript
/*****************************************************************************
|
|
* Open MCT, Copyright (c) 2014-2016, United States Government
|
|
* as represented by the Administrator of the National Aeronautics and Space
|
|
* Administration. All rights reserved.
|
|
*
|
|
* Open MCT is licensed under the Apache License, Version 2.0 (the
|
|
* "License"); you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0.
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations
|
|
* under the License.
|
|
*
|
|
* Open MCT includes source code licensed under additional open source
|
|
* licenses. See the Open Source Licenses file (LICENSES.md) included with
|
|
* this source code distribution or the Licensing information page available
|
|
* at runtime from the About dialog for additional information.
|
|
*****************************************************************************/
|
|
|
|
define(
|
|
['./AbstractComposeAction'],
|
|
function (AbstractComposeAction) {
|
|
|
|
/**
|
|
* The CopyAction is available from context menus and allows a user to
|
|
* deep copy an object to another location of their choosing.
|
|
*
|
|
* @implements {Action}
|
|
* @constructor
|
|
* @memberof platform/entanglement
|
|
*/
|
|
function CopyAction(
|
|
$log,
|
|
policyService,
|
|
locationService,
|
|
copyService,
|
|
dialogService,
|
|
notificationService,
|
|
context
|
|
) {
|
|
this.dialog = undefined;
|
|
this.notification = undefined;
|
|
this.dialogService = dialogService;
|
|
this.notificationService = notificationService;
|
|
this.$log = $log;
|
|
//Extend the behaviour of the Abstract Compose Action
|
|
AbstractComposeAction.call(
|
|
this,
|
|
policyService,
|
|
locationService,
|
|
copyService,
|
|
context,
|
|
"Duplicate",
|
|
"To a Location"
|
|
);
|
|
}
|
|
|
|
CopyAction.prototype = Object.create(AbstractComposeAction.prototype);
|
|
|
|
/**
|
|
* Updates user about progress of copy. Should not be invoked by
|
|
* client code under any circumstances.
|
|
*
|
|
* @private
|
|
* @param phase
|
|
* @param totalObjects
|
|
* @param processed
|
|
*/
|
|
CopyAction.prototype.progress = function (phase, totalObjects, processed) {
|
|
/*
|
|
Copy has two distinct phases. In the first phase a copy plan is
|
|
made in memory. During this phase of execution, the user is
|
|
shown a blocking 'modal' dialog.
|
|
|
|
In the second phase, the copying is taking place, and the user
|
|
is shown non-invasive banner notifications at the bottom of the screen.
|
|
*/
|
|
if (phase.toLowerCase() === 'preparing' && !this.dialog) {
|
|
this.dialog = this.dialogService.showBlockingMessage({
|
|
title: "Preparing to copy objects",
|
|
hint: "Do not navigate away from this page or close this browser tab while this message is displayed.",
|
|
unknownProgress: true,
|
|
severity: "info"
|
|
});
|
|
} else if (phase.toLowerCase() === "copying") {
|
|
if (this.dialog) {
|
|
this.dialog.dismiss();
|
|
}
|
|
if (!this.notification) {
|
|
this.notification = this.notificationService
|
|
.notify({
|
|
title: "Copying objects",
|
|
unknownProgress: false,
|
|
severity: "info"
|
|
});
|
|
}
|
|
this.notification.model.progress = (processed / totalObjects) * 100;
|
|
this.notification.model.title = ["Copied ", processed, "of ",
|
|
totalObjects, "objects"].join(" ");
|
|
}
|
|
};
|
|
|
|
/**
|
|
* Executes the CopyAction. The CopyAction uses the default behaviour of
|
|
* the AbstractComposeAction, but extends it to support notification
|
|
* updates of progress on copy.
|
|
*/
|
|
CopyAction.prototype.perform = function () {
|
|
var self = this;
|
|
|
|
function success() {
|
|
self.notification.dismiss();
|
|
self.notificationService.info("Copying complete.");
|
|
}
|
|
|
|
function error(errorDetails) {
|
|
var errorDialog,
|
|
errorMessage = {
|
|
title: "Error copying objects.",
|
|
severity: "error",
|
|
hint: errorDetails.message,
|
|
minimized: true, // want the notification to be minimized initially (don't show banner)
|
|
options: [{
|
|
label: "OK",
|
|
callback: function () {
|
|
errorDialog.dismiss();
|
|
}
|
|
}]
|
|
};
|
|
|
|
self.dialog.dismiss();
|
|
if (self.notification) {
|
|
self.notification.dismiss(); // Clear the progress notification
|
|
}
|
|
self.$log.error("Error copying objects. ", errorDetails);
|
|
//Show a minimized notification of error for posterity
|
|
self.notificationService.notify(errorMessage);
|
|
//Display a blocking message
|
|
errorDialog = self.dialogService.showBlockingMessage(errorMessage);
|
|
|
|
}
|
|
function notification(details) {
|
|
self.progress(details.phase, details.totalObjects, details.processed);
|
|
}
|
|
|
|
return AbstractComposeAction.prototype.perform.call(this)
|
|
.then(success, error, notification);
|
|
};
|
|
|
|
CopyAction.appliesTo = AbstractComposeAction.appliesTo;
|
|
|
|
return CopyAction;
|
|
}
|
|
);
|
|
|