Files
skyline-console/src/pages/identity/containers/User/index.jsx
Jingwei.Zhang 73e352c4d5 feat: Update import && export
1. Update import with @ to relative path
2. Update decorator export

Change-Id: Ib199a7c5eb54e1f30377af0349bca5959a1e54cc
2021-08-31 17:47:01 +08:00

205 lines
5.3 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 React from 'react';
import { observer, inject } from 'mobx-react';
import { Badge } from 'antd';
import Base from 'containers/List';
import globalUserStore from 'stores/keystone/user';
import { yesNoOptions, emptyActionConfig } from 'utils/constants';
import actionConfigs from './actions';
import actionConfigsInDomain from './actionsInDomain';
export class User extends Base {
init() {
this.store = globalUserStore;
this.getDomains();
}
getDomains() {
this.store.fetchDomain();
}
get tabs() {
return [];
}
get policy() {
return 'identity:list_users';
}
get name() {
return t('users');
}
getColumns = () => {
const {
match: { path },
} = this.props;
const components = [
{
title: t('User ID/Name'),
dataIndex: 'name',
linkPrefix: `/identity/${this.getUrl('user')}/detail`,
},
{
title: t('Project Scope'),
dataIndex: 'projectScope',
isHideable: true,
render: (projectScope) => {
if (projectScope && projectScope[0]) {
return projectScope.map((it) => <div>{it}</div>);
}
},
},
{
title: t('Roles'),
dataIndex: 'project_roles',
isHideable: true,
render: (project_roles) => {
if (project_roles && project_roles[0]) {
return project_roles.map((it) => <div>{it}</div>);
}
},
},
{
title: t('Real Name'),
dataIndex: 'real_name',
isHideable: true,
},
{
title: t('Affiliated Domain'),
dataIndex: 'domain_name',
isHideable: true,
},
{
title: t('Project Num'),
dataIndex: 'project_num',
render: (project_num) => {
if (project_num === 0) {
return <Badge color="red" text={project_num} />;
}
return <Badge color="green" text={project_num} />;
},
},
{
title: t('Email'),
dataIndex: 'email',
isHideable: true,
// render: (name) => {
// if (name) {
// return <Link>{name}</Link>;
// }
// return '-';
// },
},
{
title: t('phone'),
dataIndex: 'phone',
isHideable: true,
},
{
title: t('Enabled'),
dataIndex: 'enabled',
isHideable: true,
render: (val) => {
if (val === true) {
return <Badge color="green" text={t('Yes')} />;
}
return <Badge color="red" text={t('No')} />;
},
stringify: (val) => (val ? t('Yes') : t('No')),
},
];
if (!path.includes('role-admin/detail')) {
components.splice(1, 1);
}
if (!path.includes('user-admin')) {
components.splice(5, 1);
}
if (!path.includes('project-admin')) {
components.splice(2, 1);
}
return components;
};
get actionConfigs() {
const {
match: { path },
} = this.props;
if (
path.includes('identity/user') &&
!path.includes('identity/user-group')
) {
return this.isAdminPage
? actionConfigs.adminConfigs
: actionConfigs.actionConfigs;
}
if (path.includes('domain-admin/detail')) {
return this.isAdminPage
? actionConfigsInDomain.adminConfigs
: actionConfigsInDomain.actionConfigs;
}
return emptyActionConfig;
}
get searchFilters() {
return [
{
label: t('User Name'),
name: 'name',
},
{
label: t('Real Name'),
name: 'real_name',
},
{
label: t('Enabled'),
name: 'enabled',
options: yesNoOptions,
},
];
}
async getData({ silent, ...params } = {}) {
const { match } = this.props;
const { path } = match;
const newParams = { ...params };
silent && (this.list.silent = true);
if (path.includes('domain-admin/detail')) {
const { id } = match.params;
newParams.domainId = id;
await this.store.fetchListInDomainDetail(newParams);
} else if (path.includes('project-admin/detail')) {
const { id } = match.params;
newParams.projectId = id;
await this.store.fetchListInProjectDetail(newParams);
} else if (path.includes('user-group-admin/detail')) {
const { id } = match.params;
newParams.groupId = id;
await this.store.fetchListInGroupDetail(newParams);
} else if (path.includes('role-admin/detail')) {
const { id } = match.params;
newParams.roleId = id;
await this.store.fetchListInRoleDetail(newParams);
} else {
await this.store.fetchList(newParams);
}
this.list.silent = false;
}
}
export default inject('rootStore')(observer(User));