mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 10:06:53 +08:00
128 lines
4 KiB
Ruby
128 lines
4 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
module GlobalActivitiesHelper
|
|
include ActionView::Helpers::AssetTagHelper
|
|
include ActionView::Helpers::UrlHelper
|
|
include InputSanitizeHelper
|
|
|
|
def generate_activity_content(activity, no_links: false, no_custom_links: false)
|
|
parameters = {}
|
|
activity.message_items.each do |key, value|
|
|
parameters[key] =
|
|
if value.is_a? String
|
|
value
|
|
elsif value['type'] == 'Time' # use saved date for printing
|
|
I18n.l(Time.zone.at(value['value']), format: :full)
|
|
else
|
|
no_links ? generate_name(value) : generate_link(value, activity)
|
|
end
|
|
end
|
|
|
|
if no_custom_links
|
|
I18n.t("global_activities.content.#{activity.type_of}_html", parameters.symbolize_keys)
|
|
else
|
|
custom_auto_link(
|
|
I18n.t("global_activities.content.#{activity.type_of}_html", parameters.symbolize_keys),
|
|
team: activity.team
|
|
)
|
|
end
|
|
rescue StandardError => e
|
|
Rails.logger.error(e.message)
|
|
Rails.logger.error(e.backtrace.join("\n"))
|
|
I18n.t('global_activities.index.content_generation_error', activity_id: activity.id)
|
|
end
|
|
|
|
def generate_link(message_item, activity)
|
|
obj = if message_item['id']
|
|
message_item['type'].constantize.find_by(id: message_item['id'])
|
|
else
|
|
message_item['type'].constantize.new
|
|
end
|
|
|
|
return message_item['value'] unless obj
|
|
|
|
current_value = generate_name(message_item)
|
|
team = activity.team
|
|
path = ''
|
|
|
|
case obj
|
|
when User
|
|
return "[@#{obj.full_name}~#{obj.id.base62_encode}]"
|
|
when Tag
|
|
# Not link for now
|
|
return current_value
|
|
when Team
|
|
path = projects_path(team: obj.id)
|
|
when Repository
|
|
path = repository_path(obj, team: obj.team.id)
|
|
when RepositoryRow
|
|
return current_value unless obj.repository
|
|
|
|
path = repository_path(obj.repository, team: obj.repository.team.id)
|
|
when RepositoryColumn
|
|
return current_value unless obj.repository
|
|
|
|
path = repository_path(obj.repository, team: obj.repository.team.id)
|
|
when Project
|
|
path = obj.archived? ? projects_path : project_path(obj)
|
|
when Experiment
|
|
return current_value unless obj.navigable?
|
|
|
|
path = obj.archived? ? project_path(obj.project, view_mode: :archived) : canvas_experiment_path(obj)
|
|
when MyModule
|
|
return current_value unless obj.navigable?
|
|
|
|
path = if obj.archived?
|
|
module_archive_experiment_path(obj.experiment)
|
|
else
|
|
protocols_my_module_path(obj)
|
|
end
|
|
when Protocol
|
|
if obj.in_repository_public?
|
|
path = protocols_path(type: :public, team: obj.team.id)
|
|
elsif obj.in_repository_private?
|
|
path = protocols_path(type: :private, team: obj.team.id)
|
|
elsif obj.in_repository_archived?
|
|
path = protocols_path(type: :archive, team: obj.team.id)
|
|
elsif obj.my_module.navigable?
|
|
path = protocols_my_module_path(obj.my_module)
|
|
else
|
|
return current_value
|
|
end
|
|
when Result
|
|
return current_value unless obj.navigable?
|
|
|
|
path = obj.archived? ? archive_my_module_path(obj.my_module) : results_my_module_path(obj.my_module)
|
|
when Step
|
|
return current_value
|
|
when Report
|
|
path = reports_path(team: obj.team.id)
|
|
when ProjectFolder
|
|
path = if obj.new_record?
|
|
projects_path(team: activity.team.id)
|
|
else
|
|
project_folder_path(obj, team: obj.team.id)
|
|
end
|
|
else
|
|
return current_value
|
|
end
|
|
route_to_other_team(path, team, current_value)
|
|
end
|
|
|
|
def generate_name(message_item)
|
|
obj = if message_item['id']
|
|
message_item['type'].constantize.find_by(id: message_item['id'])
|
|
else
|
|
message_item['type'].constantize.new
|
|
end
|
|
|
|
return I18n.t('projects.index.breadcrumbs_root') if obj.is_a?(ProjectFolder) && obj.new_record?
|
|
|
|
return message_item['value'] unless obj
|
|
|
|
value = obj.public_send(message_item['value_for'] || 'name')
|
|
value = I18n.t('global_activities.index.no_name') if value.blank?
|
|
|
|
value
|
|
end
|
|
end
|