mirror of
https://github.com/apache/superset.git
synced 2026-04-11 12:26:05 +00:00
* Fixing PropTypes warning message React recently started warning on the upcoming deprecation of React.PropTypes, the new approach is to use the `prop-types` npm package instead. * Fixing the tests
43 lines
1.2 KiB
JavaScript
43 lines
1.2 KiB
JavaScript
import React from 'react';
|
|
import PropTypes from 'prop-types';
|
|
import { Badge, Label } from 'react-bootstrap';
|
|
|
|
const propTypes = {
|
|
user: PropTypes.object.isRequired,
|
|
};
|
|
export default function Security({ user }) {
|
|
return (
|
|
<div>
|
|
<div className="roles">
|
|
<h4>
|
|
Roles <Badge>{Object.keys(user.roles).length}</Badge>
|
|
</h4>
|
|
{Object.keys(user.roles).map(role => <Label key={role}>{role}</Label>)}
|
|
<hr />
|
|
</div>
|
|
<div className="databases">
|
|
{user.permissions.database_access &&
|
|
<div>
|
|
<h4>
|
|
Databases <Badge>{user.permissions.database_access.length}</Badge>
|
|
</h4>
|
|
{user.permissions.database_access.map(role => <Label key={role}>{role}</Label>)}
|
|
<hr />
|
|
</div>
|
|
}
|
|
</div>
|
|
<div className="datasources">
|
|
{user.permissions.datasource_access &&
|
|
<div>
|
|
<h4>
|
|
Datasources <Badge>{user.permissions.datasource_access.length}</Badge>
|
|
</h4>
|
|
{user.permissions.datasource_access.map(role => <Label key={role}>{role}</Label>)}
|
|
</div>
|
|
}
|
|
</div>
|
|
</div>
|
|
);
|
|
}
|
|
Security.propTypes = propTypes;
|