skyline/src/pages/storage/containers/Container/Detail/actions/CopyFile.jsx
yangao 395084d022 fix: Optimize the directory structure of the resources folder
Optimize the directory structure of the resources folder

Change-Id: If33e899550823a66b4784dc6fd23f06d9f5cff11
2022-05-13 17:39:01 +08:00

61 lines
1.5 KiB
JavaScript

// Copyright 2021 99cloud
//
// 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.
import { ConfirmAction } from 'containers/Action';
import globalObjectStore from 'stores/swift/object';
import { allCanChangePolicy } from 'resources/skyline/policy';
import { isFile } from 'resources/swift/container';
export default class CopyFile extends ConfirmAction {
get id() {
return 'CopyFile';
}
get title() {
return t('Copy File');
}
get name() {
return this.title;
}
get buttonText() {
return t('Copy');
}
get passiveAction() {
return t('be copied');
}
get actionName() {
return this.title;
}
getItemName = (item) => item.shortName;
policy = allCanChangePolicy;
allowedCheckFunc = (item) => isFile(item);
onSubmit = (value, containerProps, isBatch, index, values) => {
if (!isBatch) {
return globalObjectStore.copyFiles([value]);
}
if (index === 0) {
return globalObjectStore.copyFiles(values);
}
return Promise.resolve();
};
}