# frozen_string_literal: true class Admin::Metrics::Measure::TagAccountsMeasure < Admin::Metrics::Measure::BaseMeasure def self.with_params? true end def key 'tag_accounts' end protected def perform_total_query tag.history.aggregate(time_period).accounts end def perform_previous_total_query tag.history.aggregate(previous_time_period).accounts end def perform_data_query time_period.map { |date| { date: date.to_time(:utc).iso8601, value: tag.history.get(date).accounts.to_s } } end def tag @tag ||= Tag.find(params[:id]) end def params @params.permit(:id) end end