mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-25 08:09:38 +02:00
* Handle Turbo updates with tabs Fixes #491 * Add Filterable concern for controllers * Add trendline chart * Extract common UI to partials * Series refactor * Put placeholders for calculations in * Add classification generated column to account * Add basic net worth calculation * Add net worth tests * Get net worth graph working * Fix lint errors * Implement asset grouping query * Make trends and series more intuitive * Fully functional dashboard * Remove logging
26 lines
658 B
Ruby
26 lines
658 B
Ruby
class Trend
|
|
attr_reader :current, :previous, :type
|
|
|
|
def initialize(current: nil, previous: nil, type: "asset")
|
|
@current = current
|
|
@previous = previous
|
|
@type = type # asset means positive trend is good, liability means negative trend is good
|
|
end
|
|
|
|
def direction
|
|
return "flat" if @current == @previous
|
|
return "up" if @previous.nil? || (@current && @current > @previous)
|
|
"down"
|
|
end
|
|
|
|
def amount
|
|
return 0 if @previous.nil?
|
|
@current - @previous
|
|
end
|
|
|
|
def percent
|
|
return 0 if @previous.nil?
|
|
return Float::INFINITY if @previous == 0
|
|
((@current - @previous).abs / @previous.abs.to_f * 100).round(1)
|
|
end
|
|
end
|