discourse/spec/system/page_objects/components/about_page_site_activity.rb
Osama Sayegh 10ae7ef44a
FEATURE: Add estimated number of global and EU visitors to the about page (#28382)
This commit implements 2 new metrics/stats in the /about page for the _estimated_ numbers of unique visitors from the EU and the rest of the world. This new feature is currently off by default, but it can be enabled by turning on the hidden `display_eu_visitor_stats` site settings via the rails console.

There are a number of assumptions that we're making here in order to estimate the number of unique visitors, specifically:

1. we're assuming that the average of page views per anonymous visitor is similar to the average number of page views that a logged-in visitor makes, and
2. we're assuming that the ratio of logged in visitors from the EU is similar to the ratio of anonymous visitors from the EU

Discourse keeps track of the number of both logged-in and anonymous page views, and also the number of unique logged-in visitors and where they're from. So with those numbers and the assumptions above, we can estimate the number of unique anonymous visitors from the EU and the rest of the world.

Internal topic: t/128480.
2024-08-21 00:03:42 +03:00

72 lines
1.8 KiB
Ruby

# frozen_string_literal: true
module PageObjects
module Components
class AboutPageSiteActivity < PageObjects::Components::Base
attr_reader :container
def initialize(container)
@container = container
end
def topics
AboutPageSiteActivityItem.new(
container.find(".about__activities-item.topics"),
translation_key: "about.activities.topics",
)
end
def posts
AboutPageSiteActivityItem.new(
container.find(".about__activities-item.posts"),
translation_key: "about.activities.posts",
)
end
def visitors
AboutPageSiteActivityItem.new(
container.find(".about__activities-item.visitors"),
translation_key: nil,
)
end
def active_users
AboutPageSiteActivityItem.new(
container.find(".about__activities-item.active-users"),
translation_key: "about.activities.active_users",
)
end
def sign_ups
AboutPageSiteActivityItem.new(
container.find(".about__activities-item.sign-ups"),
translation_key: "about.activities.sign_ups",
)
end
def likes
AboutPageSiteActivityItem.new(
container.find(".about__activities-item.likes"),
translation_key: "about.activities.likes",
)
end
# used by plugins
def custom(name, translation_key: nil)
AboutPageSiteActivityItem.new(
container.find(".about__activities-item.#{name}"),
translation_key:,
)
end
def has_activity_item?(name)
container.has_css?(".about__activities-item.#{name}")
end
def has_no_activity_item?(name)
container.has_no_css?(".about__activities-item.#{name}")
end
end
end
end