現状
- Railsで家計簿のアプリを作成しています。
- 現状以下の画像のように該当月の一か月分のデータのみ
一覧で表示されるようになっております。
- これを4月や6月と言ったように前の月や先の月のデータも一覧で表示させたいです。
#したいこと
- 5月の収入の "<<"をクリックすると前の月のデータを表示させるようにしたいです。
(逆に>>をクリックすると次の月のデータを表示させる)
コード
Ruby
1# incomes controller(収入のデータを一覧表示させているviewに対応するcontrollerです。) 2class IncomesController < ApplicationController 3 require "time" 4 5 before_action :income_id, only: [:show, :destroy, :edit, :update] 6 before_action :move_to_root, only: [:show, :edit, :update, :destroy, :search] 7 8 def index 9 @spendings_time = Spending.where(date: Time.now.beginning_of_month..Time.now.end_of_month).where(user_id: current_user.id).order(date: "ASC") 10 @incomes_time = Income.where(date: Time.now.beginning_of_month..Time.now.end_of_month).where(user_id: current_user.id).order(date: "ASC") 11 @this_month = Time.new.month 12 @income_sum = @incomes_time.sum(:price) 13 @spending_sum = @spendings_time.sum(:price) 14 @expense_sum = @income_sum - @spending_sum 15 @spending_data = Spending.where(date: Time.now.beginning_of_month..Time.now.end_of_month).where(user_id: current_user.id) 16 end 17 18 def new 19 @income = Income.new 20 end 21 22 def create 23 @income = Income.new(income_params) 24 if @income.save 25 redirect_to root_path 26 else 27 render :new 28 end 29 end 30 31 def show 32 end 33 34 def destroy 35 @income.destroy 36 redirect_to root_path 37 end 38 39 def edit 40 end 41 42 def update 43 if @income.update(income_params) 44 redirect_to root_path 45 else 46 render :edit 47 end 48 end 49 50 def search 51 @spendings = Spending.where(user_id: current_user.id).includes(:user).order(date: "ASC") 52 end 53 54 private 55 def income_params 56 params.require(:income).permit(:price, :category, :memo, :date).merge(user_id: current_user.id) 57 end 58 59 def income_id 60 @income = Income.find(params[:id]) 61 end 62 63 def move_to_root 64 if current_user.id != @income.user.id 65 redirect_to root_path 66 end 67 end 68end 69
Ruby
1 2# incomes/index.html.erb(一覧表示させているviewです) 3 4<div class="left-content"> 5 <div class="title"><%= @this_month %>月の支出</div> 6 <div class="post-list-content"> 7 <% @spendings_time.each do |spending| %> 8 <ul class="post-list"> 9 <li class="post-list-data-date"><%= spending.date %></li> 10 <ul> 11 <li><%= link_to '詳細', spending_path(spending.id), class:"link_pass" %></li> 12 <li><%= link_to '編集', edit_spending_path(spending.id), class:"link_pass" %></li> 13 <li><%= link_to '削除', spending_path(spending.id), class:"link_pass", method: :delete %></li> 14 </ul> 15 <li class="post-list-data"><%= spending.category %></li> 16 <li class="post-list-data"><%= image_tag 'money.png', size: '50x50' %>¥<%= spending.price %></li> 17 </ul> 18 <% end %> 19 </div> 20 </div> 21 <div class="center-content"> 22 <div class="title"><span class="arrow-last-month" id="last-month-data-arrow"><<</span><%= @this_month %>月の収入<span class="arrow-next-month">>></span></div> 23 <div class="post-list-content"> 24 <% @incomes_time.each do |income| %> 25 <ul class="post-list"> 26 <li class="post-list-data-date"><%= income.date %></li> 27 <ul> 28 <li><%= link_to '詳細', income_path(income.id), class:"link_pass" %></li> 29 <li><%= link_to '編集', edit_income_path(income.id), class:"link_pass" %></li> 30 <li><%= link_to '削除', income_path(income.id), class:"link_pass", method: :delete %></li> 31 </ul> 32 <li class="post-list-data"><%= income.category %></li> 33 <li class="post-list-data"><%= image_tag 'money.png', size: '50x50' %>¥<%= income.price %></li> 34 </ul> 35 <% end %> 36 </div> 37 </div>
# 試したこと
- ① incomes/index.html.erbファイルの19行目の以下のidを取得する
<span class="arrow-last-month" id="last-month-data-arrow"><<</span>
- ② index.jsファイルを作成し、以下のように記述し、クリックするとデータを書き換えるようにする
javascript
1# index.js 2 3window.addEventListener('load', function(){ 4 const lastMonthDataArrow = this.document.getElementById("last-month-data-arrow") 5 lastMonthDataArrow.addEventListener('click', function(){ 6 const postList = document.getElementById("post-list-content") 7 postList.innerHTML = "" 8 }) 9})
# 聞きたいこと
私の試したことであると、innerHTMLの中に記述するものがわかりませんでした。
また、"<<"をクリックするとinnerHTMLによって書き換えるときに先月のデータを取得する方法がわかりませんでした。
それともAjax通信などを使う方がよろしいのでしょうか?
アクションプランでもやり方はこうしたほうがいいなど教えていただけたら幸いです。
どなたかご教示いただけると幸いです。
あなたの回答
tips
プレビュー