Class: Hyrax::WorkUsage
- Inherits:
-
StatsUsagePresenter
- Object
- StatsUsagePresenter
- Hyrax::WorkUsage
- Defined in:
- app/presenters/hyrax/work_usage.rb
Instance Attribute Summary
Attributes inherited from StatsUsagePresenter
Instance Method Summary collapse
-
#initialize(id) ⇒ WorkUsage
constructor
A new instance of WorkUsage.
-
#to_flot ⇒ Object
Package data for visualization using JQuery Flot.
- #total_pageviews ⇒ Object
Methods inherited from StatsUsagePresenter
Constructor Details
#initialize(id) ⇒ WorkUsage
Returns a new instance of WorkUsage.
7 8 9 |
# File 'app/presenters/hyrax/work_usage.rb', line 7 def initialize(id) self.model = Hyrax::WorkRelation.new.find(id) end |
Instance Method Details
#to_flot ⇒ Object
Package data for visualization using JQuery Flot
19 20 21 22 23 |
# File 'app/presenters/hyrax/work_usage.rb', line 19 def to_flot [ { label: "Pageviews", data: pageviews } ] end |
#total_pageviews ⇒ Object
14 15 16 |
# File 'app/presenters/hyrax/work_usage.rb', line 14 def total_pageviews pageviews.reduce(0) { |total, result| total + result[1].to_i } end |