app/js/components/menu/bottomBar/resourceToolTip.jsx
Function getResourceStatus
has 39 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
getResourceStatus : function(hour, stored, capicity, hasCapicity) {
// Different players have differnet strategies regarding waste. Some would consider full
// waste good. Some would consider empty waste good. Therefore, we shouldn't comment
// on what a player does or does not do with their waste.
if (this.props.type === 'waste') {
Function render
has 26 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
render : function() {
var body = this.props.body;
var hour = body[this.props.type + '_hour'];
var stored = body[this.props.type + '_stored'] || body[this.props.type] || 0;
Function getResourceStatus
has a Cognitive Complexity of 8 (exceeds 5 allowed). Consider refactoring. Open
Open
getResourceStatus : function(hour, stored, capicity, hasCapicity) {
// Different players have differnet strategies regarding waste. Some would consider full
// waste good. Some would consider empty waste good. Therefore, we shouldn't comment
// on what a player does or does not do with their waste.
if (this.props.type === 'waste') {
- Read upRead up
Cognitive Complexity
Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.
A method's cognitive complexity is based on a few simple rules:
- Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
- Code is considered more complex for each "break in the linear flow of the code"
- Code is considered more complex when "flow breaking structures are nested"
Further reading
Avoid too many return
statements within this function. Open
Open
return (
<div>
<i className="large green thumbs up icon"></i>
Going up
</div>
Avoid too many return
statements within this function. Open
Open
return (
<div>
<i className="large red warning circle icon"></i>
<strong>Danger!</strong>
</div>