0
This application Vue calculates totals in a list as below within methods:
somaTotal(){
    let amounts = this.transactions.map(transaction => transaction.valor);
    return this.total = amounts
           .reduce((acc, item) => (acc += parseFloat(item)), 0)
           .toFixed(2);
}
the HTML code showing the total is as follows:
<td align="right"> 
    <b> 
        {{parseFloat(somaTotal())
           .toLocaleString('pt-BR', { style: 'currency', currency: 'BRL' })
        }} 
    </b>
</td>
Has this filter that shows the list according to the text we typed:
computed: {
           filteredTransactions (){
              if(this.searchQuery){
                  return this.transactions.filter((transaction)=>{
                  return transaction.tipo.startsWith(this.searchQuery);
                 })
              }else{
                  return this.transactions;
              }
            }
      },
How to calculate the total inside the filter? Totalizing based on the filtered values?
Great. I’ll test it.
– Flavio Cardoso
You defined somaTotal and methods and called somaValor.
– Flavio Cardoso
Also, I want the calculated total inside the filter. As you did, calculate the total outside.
– Flavio Cardoso
@Flaviocardoso my mistake, I wanted to say the same name as the method you already had. I corrected.
– Sergio
@Flaviocardoso how so "calculated out"? The
methodscan and should be used as tools for other methods, computed, etc– Sergio