mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2024-11-11 18:21:04 +08:00
33 lines
938 B
Ruby
33 lines
938 B
Ruby
module SearchHelper
|
|
def experiments_results(tag)
|
|
experiments = []
|
|
tag.my_modules.each do |mod|
|
|
experiments << mod.experiment
|
|
end
|
|
experiments.uniq
|
|
end
|
|
|
|
def route_to_other_team(path, search_team, text)
|
|
if search_team != current_team
|
|
link_to text,
|
|
path,
|
|
data: { no_turbolink: true,
|
|
confirm: t('users.settings.changed_team_in_search',
|
|
team: search_team.name) }
|
|
else
|
|
link_to text, path, data: { no_turbolink: true }
|
|
end
|
|
end
|
|
|
|
def route_to_other_team_btn(path, search_team, text)
|
|
if search_team != current_team
|
|
link_to text,
|
|
path,
|
|
class: 'btn btn-primary',
|
|
data: { confirm: t('users.settings.changed_team_in_search',
|
|
team: search_team.name) }
|
|
else
|
|
link_to text, path, class: 'btn btn-primary'
|
|
end
|
|
end
|
|
end
|