ahoy_panel 0.0.22 → 0.0.24

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: 51a6423550318c44c2f786e38f4a6b6c8c6fd4ab8dfa620da235aa6981dbf132
4
- data.tar.gz: 1b0f68c413192d28152eabb60216dd303b6f2304b908fc22db0ec6802eb5d254
3
+ metadata.gz: 13efe97a09c413fdf05aebf4601d1a807ae2fa9e04e749cf03adf0da3975f718
4
+ data.tar.gz: 7154418c7310ee468a6c56f4a19b56fd1444fe94ae4f2f4fca46f6a40b30397b
5
5
  SHA512:
6
- metadata.gz: 747c4419583cc3e7b0ed0e2de10f4ff117d170764b8efc5339ff40371e52ffee5b5566933a6351e3a657877555b018da23d701c99ba2e6629fb5e6f6232333ba
7
- data.tar.gz: 48b6d15b2fe23c4974b1efdf959cc173e619f4baac20ba69345c6c32b79d268885b2d0929ee0faa2c8621e49ac35c101e8a04b5ba6cbfc52cd8a79537f2ceac7
6
+ metadata.gz: 705a3c206ab50d6a7e77143e477b18b4f237f27b6ae0a9dbf2d644ba008dc0b44795e9bd473ee884630e50a138ff953e9f6053a7bd43708f4e8b6de603430dfd
7
+ data.tar.gz: cad59210b78b525d4bd360b097aa24b355e7992d7ecd2d5acc0e67edc079c52d14d91879ef7c78852af46bbd30c8dbf0022651c5411f134637b98bb2c51763c2
@@ -13,8 +13,22 @@ module AhoyPanel
13
13
  end
14
14
 
15
15
  @visits = ::Ahoy::Visit.where(started_at: @date_range).order(:id)
16
- filtering_params.each do |key, value|
17
- @visits = @visits.where("#{key} ilike ?", "%#{value.downcase}%")
16
+
17
+ @filtering_params.each do |key, value|
18
+ case key
19
+ when :id
20
+ @visits = @visits.where(id: value.to_i)
21
+ when :user_id
22
+ @visits = @visits.where(user_id: value.to_i)
23
+ when :referring_domain
24
+ @visits = @visits.where("referring_domain ilike ?", "%#{value}%")
25
+ when :country
26
+ @visits = @visits.where("country ilike ?", "%#{value}%")
27
+ when :city
28
+ @visits = @visits.where("city ilike ?", "%#{value}%")
29
+ when :region
30
+ @visits = @visits.where("region ilike ?", "%#{value}%")
31
+ end
18
32
  end
19
33
 
20
34
  if @page.present?
@@ -1,3 +1,3 @@
1
1
  module AhoyPanel
2
- VERSION = "0.0.22"
2
+ VERSION = "0.0.24"
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.22
4
+ version: 0.0.24
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Jeon