OpenDroneMap-WebODM/app/static/app/js/classes/PendingActions.js

38 wiersze
666 B
JavaScript

const CANCEL = 1,
REMOVE = 2,
RESTART = 3,
RESIZE = 4,
IMPORT = 5;
let pendingActions = {
[CANCEL]: {
descr: "Canceling..."
},
[REMOVE]: {
descr: "Deleting..."
},
[RESTART]: {
descr: "Restarting..."
},
[RESIZE]: {
descr: "Resizing images..."
},
[IMPORT]: {
descr: "Importing..."
}
};
export default {
CANCEL: CANCEL,
REMOVE: REMOVE,
RESTART: RESTART,
RESIZE: RESIZE,
IMPORT: IMPORT,
description: function(pendingAction) {
if (pendingActions[pendingAction]) return pendingActions[pendingAction].descr;
else return "";
}
};