about summary refs log tree commit diff
path: root/app/lib/admin/metrics/dimension/base_dimension.rb
blob: 5872c22cbccb24eb63b9307b8bafbee268f10204 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# frozen_string_literal: true

class Admin::Metrics::Dimension::BaseDimension
  def self.with_params?
    false
  end

  def initialize(start_at, end_at, limit, params)
    @start_at = start_at&.to_datetime
    @end_at   = end_at&.to_datetime
    @limit    = limit&.to_i
    @params   = params
  end

  def key
    raise NotImplementedError
  end

  def data
    raise NotImplementedError
  end

  def self.model_name
    self.class.name
  end

  def read_attribute_for_serialization(key)
    send(key) if respond_to?(key)
  end

  protected

  def time_period
    (@start_at..@end_at)
  end

  def params
    raise NotImplementedError
  end
end