Angular Basics - NgClass

Angular Basics - NgClass

I needed a way to quickly distinguish between “good” and “bad” years, that led me to NgClass. So let’s continue on with Angular basics - NgClass.

I’d like the cell to be shaded green when I’m making money on the solar panels (any positive number) and red when the panels are costing me more than just what the base utility cost would be (any negative number). With that, it was just a few steps:

  • Write CSS to represent the color change
  • Write a Typescript function to determine which class should be applied to a table cell
  • Write the NgClass logic within the view

CSS

1
2
3
4
5
6
7
.positive {
background-color: lightgreen;
}

.negative {
background-color: lightcoral;
}

Typescript

1
2
3
4
5
6
7
8
public inTheGreen(value: number): boolean{
if (value >= 0)
{
return true;
}

return false;
}

and the basic “template” to plug into my view

1
2
3
4
<td [ngClass]="{
positive: inTheGreen(myVal),
negative: !inTheGreen(myVal)
}">{{ myVal }}</td>

The entirety of the table section of code now is:

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<table class='table'>
<thead>
<tr>
<th>Year</th>
<th>Total Cost Utility</th>
<th>Avg. Cost/month (Utility)</th>
<th>Cost/year 100% gen.</th>
<th>Savings/year 100% gen.</th>
<th>Cost/year 90% gen.</th>
<th>Savings/year 90% gen.</th>
<th>Cost/year 80% gen.</th>
<th>Savings/year 80% gen.</th>
</tr>
</thead>
<tbody>
<tr *ngFor="let projection of solarProjection.futureProjection">
<td>{{ projection.purchaseYear | indexOffset }}</td>
<td>{{ projection.totalCost | currency }}</td>
<td>{{ projection.averageCostPerMonth | currency }}</td>
<td>{{ projection.costSolar100Percent | currency }}</td>
<td [ngClass]="{
positive: inTheGreen(projection.totalSavings100Percent),
negative: !inTheGreen(projection.totalSavings100Percent)
}">{{ projection.totalSavings100Percent | currency }}</td>
<td>{{ projection.costSolar90Percent | currency }}</td>
<td [ngClass]="{
positive: inTheGreen(projection.totalSavings90Percent),
negative: !inTheGreen(projection.totalSavings90Percent)
}">{{ projection.totalSavings90Percent | currency }}</td>
<td>{{ projection.costSolar80Percent | currency }}</td>
<td [ngClass]="{
positive: inTheGreen(projection.totalSavings80Percent),
negative: !inTheGreen(projection.totalSavings80Percent)
}">{{ projection.totalSavings80Percent | currency }}</td>
</tr>
</tbody>
</table>

Result after applying NgClass shading

I’m not sure if there’s a way to combine the inTheGreen and !inTheGreen checks into a single call, or it if much matters, but it’s a little lengthy right now.

Next time, perhaps I’ll start digging into implementing some charting and/or utilizing a datagrid so it’s a little “prettier” and more interactive.

Related:

Author

Russ Hammett

Posted on

2018-09-08

Updated on

2022-10-13

Licensed under

Comments