mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
Dashboard View and Calculations (#521)
* 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
This commit is contained in:
parent
680a91d807
commit
6f0e410684
37 changed files with 594 additions and 74 deletions
|
@ -1,6 +1,5 @@
|
|||
class AccountsController < ApplicationController
|
||||
include Filterable
|
||||
|
||||
before_action :authenticate_user!
|
||||
|
||||
def new
|
||||
|
@ -12,8 +11,8 @@ class AccountsController < ApplicationController
|
|||
|
||||
def show
|
||||
@account = Current.family.accounts.find(params[:id])
|
||||
@balance_series = @account.balance_series(@period)
|
||||
@valuation_series = @account.valuation_series
|
||||
@balance_series = @account.balances.to_series(@account, @period)
|
||||
@valuation_series = @account.valuations.to_series(@account)
|
||||
end
|
||||
|
||||
def create
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue