Class: Hyrax::FileUsage
- Inherits:
-
StatsUsagePresenter
- Object
- StatsUsagePresenter
- Hyrax::FileUsage
- Defined in:
- app/presenters/hyrax/file_usage.rb
Instance Attribute Summary
Attributes inherited from StatsUsagePresenter
Instance Method Summary collapse
-
#initialize(id) ⇒ FileUsage
constructor
A new instance of FileUsage.
-
#to_flot ⇒ Object
Package data for visualization using JQuery Flot.
- #total_downloads ⇒ Object
- #total_pageviews ⇒ Object
Methods inherited from StatsUsagePresenter
Constructor Details
Instance Method Details
#to_flot ⇒ Object
Package data for visualization using JQuery Flot
20 21 22 23 24 25 |
# File 'app/presenters/hyrax/file_usage.rb', line 20 def to_flot [ { label: "Pageviews", data: pageviews }, { label: "Downloads", data: downloads } ] end |
#total_downloads ⇒ Object
11 12 13 |
# File 'app/presenters/hyrax/file_usage.rb', line 11 def total_downloads downloads.reduce(0) { |total, result| total + result[1].to_i } end |
#total_pageviews ⇒ Object
15 16 17 |
# File 'app/presenters/hyrax/file_usage.rb', line 15 def total_pageviews pageviews.reduce(0) { |total, result| total + result[1].to_i } end |