1.use detail api to fetch list in console but no detail in administrator 2.fix the used quota with clusters detail api Change-Id: I104495a2b7c9937a9e6e922c4fac00d3f4178235
150 lines
4.0 KiB
JavaScript
150 lines
4.0 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 Base from 'stores/base';
|
|
import client from 'client';
|
|
import { action } from 'mobx';
|
|
import { isBoolean } from 'lodash';
|
|
|
|
export class ClusterTemplatesStore extends Base {
|
|
get client() {
|
|
return client.magnum.clusterTemplates;
|
|
}
|
|
|
|
get flavorClient() {
|
|
return client.nova.flavors;
|
|
}
|
|
|
|
get networkClient() {
|
|
return client.neutron.networks;
|
|
}
|
|
|
|
get subnetClient() {
|
|
return client.neutron.subnets;
|
|
}
|
|
|
|
get imageClient() {
|
|
return client.glance.images;
|
|
}
|
|
|
|
get listWithDetail() {
|
|
return true;
|
|
}
|
|
|
|
@action
|
|
async create(newbody) {
|
|
return this.submitting(this.client.create(newbody));
|
|
}
|
|
|
|
@action
|
|
async delete({ id }) {
|
|
return this.client.delete(id);
|
|
}
|
|
|
|
@action
|
|
async update({ id }, body) {
|
|
const newBody = Object.keys(body)
|
|
.filter(
|
|
(key) =>
|
|
!(
|
|
['network_driver', 'external_network_id'].includes(key) &&
|
|
!body[key]
|
|
)
|
|
)
|
|
.map((key) => ({
|
|
path: `/${key}`,
|
|
value:
|
|
key === 'labels'
|
|
? JSON.stringify(body[key] || {})
|
|
: isBoolean(body[key])
|
|
? `${body[key]}`
|
|
: body[key],
|
|
op: [null, undefined, ''].includes(body[key]) ? 'remove' : 'replace',
|
|
}));
|
|
return this.submitting(this.client.patch(id, newBody));
|
|
}
|
|
|
|
get mapper() {
|
|
return (data) => ({
|
|
...data,
|
|
id: data.uuid,
|
|
});
|
|
}
|
|
|
|
async listDidFetch(items, _, filters) {
|
|
if (!items.length) return items;
|
|
const { shouldFetchProject } = filters;
|
|
const newData = await this.listDidFetchProject(items, {
|
|
all_projects: shouldFetchProject,
|
|
});
|
|
const { keypairs = [] } = (await client.nova.keypairs.list()) || {};
|
|
return newData.map((it) => {
|
|
const keypair = keypairs.find((k) => k?.keypair?.name === it.keypair_id);
|
|
if (keypair) {
|
|
it.selfKeypair = true;
|
|
}
|
|
return it;
|
|
});
|
|
}
|
|
|
|
async detailDidFetch(item) {
|
|
const [kp = {}, fr = {}, mfr = {}, ext = {}, fx = {}, sub = {}, img] =
|
|
await Promise.all([
|
|
client.nova.keypairs.list(),
|
|
item.flavor_id ? this.flavorClient.show(item.flavor_id) : {},
|
|
item.master_flavor_id
|
|
? this.flavorClient.show(item.master_flavor_id)
|
|
: {},
|
|
item.external_network_id
|
|
? this.networkClient.show(item.external_network_id)
|
|
: {},
|
|
item.fixed_network ? this.networkClient.show(item.fixed_network) : {},
|
|
item.fixed_subnet ? this.subnetClient.show(item.fixed_subnet) : {},
|
|
item.image_id ? this.imageClient.show(item.image_id) : {},
|
|
]);
|
|
const { keypairs = [] } = kp;
|
|
const { flavor } = fr;
|
|
const { flavor: masterFlavor } = mfr;
|
|
const { network } = ext;
|
|
const { network: fixedNetwork } = fx;
|
|
const { subnet: fixedSubnet } = sub;
|
|
const keypair = keypairs.find((k) => k?.keypair?.name === item.keypair_id);
|
|
if (keypair) {
|
|
item.selfKeypair = true;
|
|
}
|
|
if (flavor) {
|
|
item.flavor = flavor;
|
|
}
|
|
if (masterFlavor) {
|
|
item.masterFlavor = masterFlavor;
|
|
}
|
|
if (network) {
|
|
item.externalNetwork = network;
|
|
}
|
|
if (fixedNetwork) {
|
|
item.fixedNetwork = fixedNetwork;
|
|
}
|
|
if (fixedSubnet) {
|
|
item.fixedSubnet = fixedSubnet;
|
|
}
|
|
if (img) {
|
|
item.image = img;
|
|
}
|
|
return item;
|
|
}
|
|
}
|
|
|
|
const globalClusterTemplateStore = new ClusterTemplatesStore();
|
|
export default globalClusterTemplateStore;
|