skyline/src/pages/share/containers/Share/index.jsx
Jingwei.Zhang 3d8014c2d9 feat: Support manila share server
1. Add share server in administrator
2. Add share server detail in administrator
3. Add share tab in share server detail
4. Add delete && batch delete share server
5. Remove access info from share detail base info tab
6. Add link to network/share/server in share instance page

Change-Id: Ifa1efb75aebb32a2928f7d7db07e228d41d0894b
2022-05-12 14:56:30 +08:00

189 lines
4.8 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 { observer, inject } from 'mobx-react';
import Base from 'containers/List';
import globalShareStore, { ShareStore } from 'stores/manila/share';
import { shareStatus, shareProtocol } from 'resources/manila/share';
import actionConfigs from './actions';
export class Share extends Base {
init() {
this.store = globalShareStore;
this.downloadStore = new ShareStore();
}
get policy() {
return 'manila:share:get_all';
}
get name() {
return t('share');
}
get isFilterByBackend() {
return true;
}
get inShareGroupDetailPage() {
const { pathname } = this.props.location;
return this.inDetailPage && pathname.includes('share-group');
}
get inShareTypeDetailPage() {
const { pathname } = this.props.location;
return this.inDetailPage && pathname.includes('share-type');
}
get inShareNetworkDetailPage() {
const { pathname } = this.props.location;
return this.inDetailPage && pathname.includes('share-network');
}
get inShareServerDetailPage() {
const { pathname } = this.props.location;
return this.inDetailPage && pathname.includes('share-server');
}
updateFetchParamsByPage = (params) => {
const { id, ...rest } = params;
const newParams = { ...rest };
if (this.inShareGroupDetailPage) {
newParams.share_group_id = id;
}
if (this.inShareTypeDetailPage) {
newParams.share_type_id = id;
}
if (this.inShareNetworkDetailPage) {
newParams.share_network_id = id;
}
if (this.inShareServerDetailPage) {
newParams.share_server_id = id;
}
return newParams;
};
get actionConfigs() {
return this.isAdminPage
? actionConfigs.actionConfigsAdmin
: actionConfigs.actionConfigs;
}
getColumns = () => {
const columns = [
{
title: t('ID/Name'),
dataIndex: 'name',
routeName: this.getRouteName('shareDetail'),
},
{
title: t('Project ID/Name'),
dataIndex: 'project_name',
isHideable: true,
hidden: !this.isAdminPage,
},
{
title: t('Description'),
dataIndex: 'description',
isHideable: true,
},
{
title: t('Availability Zone'),
dataIndex: 'availability_zone',
},
{
title: t('Share Type'),
dataIndex: 'share_type_name',
render: (value, record) => value || record.share_type,
},
{
title: t('Size'),
dataIndex: 'size',
render: (value) => `${value}GiB`,
},
{
title: t('Protocol'),
dataIndex: 'share_proto',
render: (value) => shareProtocol[value] || value,
},
{
title: t('Public'),
dataIndex: 'is_public',
isHideable: true,
valueRender: 'yesNo',
},
{
title: t('Status'),
dataIndex: 'status',
render: (value) => shareStatus[value] || value,
},
{
title: t('Share Network'),
dataIndex: 'share_network_id',
isHideable: true,
render: (value) => {
if (!value) {
return '-';
}
const link = this.getLinkRender('shareNetworkDetail', value, {
id: value,
});
return link;
},
},
{
title: t('Share Group'),
dataIndex: 'share_group_id',
isHideable: true,
render: (value) => {
if (!value) {
return '-';
}
const link = this.getLinkRender('shareGroupDetail', value, {
id: value,
});
return link;
},
},
{
title: t('Created At'),
dataIndex: 'created_at',
isHideable: true,
valueRender: 'sinceTime',
},
];
if (this.inShareGroupDetailPage) {
return columns.filter((it) => it.dataIndex !== 'share_group_id');
}
if (this.inShareNetworkDetailPage) {
return columns.filter((it) => it.dataIndex !== 'share_network_id');
}
if (this.inShareTypeDetailPage) {
return columns.filter((it) => it.dataIndex !== 'share_type_name');
}
return columns;
};
get searchFilters() {
return [
{
label: t('Name'),
name: 'name',
},
];
}
}
export default inject('rootStore')(observer(Share));