2019-05-02 17:17:27 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2013-02-05 13:16:51 -06:00
|
|
|
class TopicPoster < OpenStruct
|
|
|
|
include ActiveModel::Serialization
|
|
|
|
|
2017-02-17 16:54:43 -06:00
|
|
|
attr_accessor :user, :description, :extras, :id, :primary_group
|
2013-02-05 13:16:51 -06:00
|
|
|
|
|
|
|
def attributes
|
2013-03-23 08:39:01 -05:00
|
|
|
{
|
|
|
|
'user' => user,
|
|
|
|
'description' => description,
|
|
|
|
'extras' => extras,
|
2017-02-17 16:54:43 -06:00
|
|
|
'id' => id,
|
|
|
|
'primary_group' => primary_group
|
2013-03-23 08:39:01 -05:00
|
|
|
}
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
|
2021-02-02 03:50:04 -06:00
|
|
|
def name_and_description
|
|
|
|
if SiteSetting.prioritize_username_in_ux? || user.name.blank?
|
|
|
|
name = user.username
|
|
|
|
else
|
|
|
|
name = user.name
|
|
|
|
end
|
|
|
|
|
|
|
|
I18n.t("js.user.avatar.name_and_description", name: name, description: description)
|
2013-02-05 13:16:51 -06:00
|
|
|
end
|
|
|
|
end
|