ahoy_panel 0.0.18 → 0.0.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: e3a7effd5f6be45e889bd51e8611e41ad9967b0cd0b7df55ae5367597e7d88fa
4
- data.tar.gz: 8c201c51bc9030015a0c2801f725ec3dc82e20d26d2d963797dddaf33c2e2d69
3
+ metadata.gz: 5fc827c08f6f6193cd71eae7f12eb9e9cf61bd4e1217860d511ba5e75e03d01a
4
+ data.tar.gz: d21abbab42d66c0ba5896c1676bea6ebc99a4d0b2dbe04185e5ab287e4b22e1d
5
5
  SHA512:
6
- metadata.gz: b437d9ff9558489ec994b4a844b341c076a38b73787eb6834075f5856214aa81c914c2afbfef2eab31ae1e1ef9d2e3ea04df888a29829a3076638a487350cbad
7
- data.tar.gz: 1c97d52ff4244ffc3f2289577ba673ab28bf58b00da5ca911faf2ac8ace4b94356bc701f8aca727d1c65ab612c4e6f2b5a1b8d1ab405964ee8f2c00a53a51732
6
+ metadata.gz: e3c97164a79913a5c591a8696aacd3a5299878ae210b4ac9a1297e4a24b3fc23e9634c4cd3724d8517b4a2a5febe37cdfb69fc7863e4a6024892f10aabe487a3
7
+ data.tar.gz: cb4104559a024d7ae0bbcf65e23736d318fc14af0ee7a95ca5de06349d99b3ed14f312c9d70f43826cce1d6c6e5434b41de4fa1125325f8309a2dc1bbab0485a
@@ -0,0 +1,27 @@
1
+ module AhoyPanel
2
+ class EventsController < ApplicationController
3
+ def index
4
+ @start_date = params[:start_date].to_date.beginning_of_day
5
+ @end_date = params[:end_date].to_date.end_of_day
6
+ @page = params[:page]
7
+
8
+ @events = ::Ahoy::Event.where(time: @start_date..@end_date).order(:id)
9
+
10
+ if @page.present?
11
+ @events = @visits.page(@page)
12
+ end
13
+
14
+ render json: { events: @events, total_count: @page.present? ? @visits.total_count : nil }
15
+ end
16
+
17
+ def dates
18
+ start_date = ::Ahoy::Event.order(time: :asc).first.time.to_date
19
+ end_date = ::Ahoy::Event.order(time: :desc).first.time.to_date
20
+
21
+ render json: {
22
+ start_date: start_date,
23
+ end_date: end_date
24
+ }
25
+ end
26
+ end
27
+ end
@@ -21,7 +21,7 @@ module AhoyPanel
21
21
  render json: { visit: @visit, events: @events }
22
22
  end
23
23
 
24
- def all_time_dates
24
+ def dates
25
25
  start_date = ::Ahoy::Visit.order(started_at: :asc).first.started_at.to_date
26
26
  end_date = ::Ahoy::Visit.order(started_at: :desc).first.started_at.to_date
27
27
 
data/config/routes.rb CHANGED
@@ -1,5 +1,7 @@
1
1
  AhoyPanel::Engine.routes.draw do
2
- get "all_time_dates", to: "visits#all_time_dates"
3
-
2
+ get "visit_dates", to: "visits#dates"
4
3
  resources :visits, only: [:index, :show]
4
+
5
+ get "event_dates", to: "events#dates"
6
+ resources :events, only: [:index]
5
7
  end
@@ -1,3 +1,3 @@
1
1
  module AhoyPanel
2
- VERSION = "0.0.18"
2
+ VERSION = "0.0.19"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ahoy_panel
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.0.18
4
+ version: 0.0.19
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Jeon
@@ -92,6 +92,7 @@ files:
92
92
  - Rakefile
93
93
  - app/assets/stylesheets/ahoy_panel/application.css
94
94
  - app/controllers/ahoy_panel/application_controller.rb
95
+ - app/controllers/ahoy_panel/events_controller.rb
95
96
  - app/controllers/ahoy_panel/visits_controller.rb
96
97
  - app/helpers/ahoy_panel/application_helper.rb
97
98
  - app/jobs/ahoy_panel/application_job.rb