41 lines
1021 B
Ruby
41 lines
1021 B
Ruby
|
# frozen_string_literal: true
|
||
|
|
||
|
module Reports::TopReferredTopics
|
||
|
extend ActiveSupport::Concern
|
||
|
|
||
|
class_methods do
|
||
|
def report_top_referred_topics(report)
|
||
|
category_id, include_subcategories = report.add_category_filter
|
||
|
|
||
|
report.modes = [:table]
|
||
|
|
||
|
report.labels = [
|
||
|
{
|
||
|
type: :topic,
|
||
|
properties: {
|
||
|
title: :topic_title,
|
||
|
id: :topic_id,
|
||
|
},
|
||
|
title: I18n.t("reports.top_referred_topics.labels.topic"),
|
||
|
},
|
||
|
{
|
||
|
property: :num_clicks,
|
||
|
type: :number,
|
||
|
title: I18n.t("reports.top_referred_topics.labels.num_clicks"),
|
||
|
},
|
||
|
]
|
||
|
|
||
|
options = {
|
||
|
end_date: report.end_date,
|
||
|
start_date: report.start_date,
|
||
|
limit: report.limit || 8,
|
||
|
category_id: category_id,
|
||
|
include_subcategories: include_subcategories,
|
||
|
}
|
||
|
result = nil
|
||
|
result = IncomingLinksReport.find(:top_referred_topics, options)
|
||
|
report.data = result.data
|
||
|
end
|
||
|
end
|
||
|
end
|