mirror of
https://github.com/ascribe/onion.git
synced 2024-11-15 09:35:10 +01:00
51 lines
1.4 KiB
JavaScript
51 lines
1.4 KiB
JavaScript
'use strict';
|
|
|
|
import React from 'react';
|
|
|
|
/**
|
|
* This component can easily be used to present another component conditionally
|
|
* - dependent on their acl.
|
|
*
|
|
* In order to do that, just wrap AclProxy around the component, add aclObject and
|
|
* the acl name you're looking for.
|
|
*/
|
|
let AclProxy = React.createClass({
|
|
propTypes: {
|
|
children: React.PropTypes.oneOfType([
|
|
React.PropTypes.arrayOf(React.PropTypes.element),
|
|
React.PropTypes.element
|
|
]).isRequired,
|
|
aclObject: React.PropTypes.object,
|
|
aclName: React.PropTypes.string,
|
|
show: React.PropTypes.bool
|
|
},
|
|
|
|
render() {
|
|
if(this.props.show) {
|
|
return (
|
|
<span>
|
|
{this.props.children}
|
|
</span>
|
|
);
|
|
} else {
|
|
if(this.props.aclObject) {
|
|
if(this.props.aclObject[this.props.aclName]) {
|
|
return (
|
|
<span>
|
|
{this.props.children}
|
|
</span>
|
|
);
|
|
} else {
|
|
if(typeof this.props.aclObject[this.props.aclName] === 'undefined') {
|
|
console.warn('The aclName you\'re filtering for was not present (undefined) in the aclObject.');
|
|
}
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
});
|
|
|
|
export default AclProxy;
|