skyline/src/pages/network/containers/Router/actions/DisableSnat.jsx
zhangjingwei d02497a15d feat: support disable/enable snat
1. support disable snat when the router's enable_snat is true
2. support enable snat when the router's enable_snat is false

Change-Id: I15a0eee4760100d923bc9a7d3619f5caf35cbe27
2024-03-21 16:22:14 +08:00

56 lines
1.4 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 globalRouterStore from 'stores/neutron/router';
export default class DisableSnat extends ConfirmAction {
get id() {
return 'disable-snat';
}
get title() {
return t('Disable SNAT');
}
get actionName() {
return t('Disable SNAT');
}
policy = [
'update_router',
'update_router:external_gateway_info',
'update_router:external_gateway_info:network_id',
'update_router:external_gateway_info:enable_snat',
];
allowedCheckFunc = (item) => {
return item?.external_gateway_info?.enable_snat;
};
onSubmit = (item) => {
const {
id,
external_gateway_info: { network_id },
} = item;
const body = {
external_gateway_info: {
network_id,
enable_snat: false,
},
};
return globalRouterStore.edit({ id }, body);
};
}