2016-02-12 23:52:43 +08:00
|
|
|
module SearchHelper
|
2016-08-25 16:40:03 +08:00
|
|
|
def experiments_results(tag)
|
|
|
|
experiments = []
|
|
|
|
tag.my_modules.each do |mod|
|
|
|
|
experiments << mod.experiment
|
|
|
|
end
|
|
|
|
experiments.uniq
|
|
|
|
end
|
2016-10-11 22:16:48 +08:00
|
|
|
|
2019-02-27 23:02:53 +08:00
|
|
|
def route_to_other_team(path, search_team, text, html = {})
|
2017-01-25 16:48:49 +08:00
|
|
|
if search_team != current_team
|
2016-10-11 22:16:48 +08:00
|
|
|
link_to text,
|
|
|
|
path,
|
2019-02-27 23:02:53 +08:00
|
|
|
html.merge(
|
|
|
|
data: { turbolinks: false,
|
|
|
|
confirm: t('users.settings.changed_team_in_search',
|
|
|
|
team: search_team.name) }
|
|
|
|
)
|
2016-10-11 22:16:48 +08:00
|
|
|
else
|
2019-02-27 23:02:53 +08:00
|
|
|
link_to text, path, html.merge(data: { turbolinks: false })
|
2016-10-11 22:16:48 +08:00
|
|
|
end
|
|
|
|
end
|
2017-01-06 17:10:33 +08:00
|
|
|
|
2017-01-25 16:48:49 +08:00
|
|
|
def route_to_other_team_btn(path, search_team, text)
|
|
|
|
if search_team != current_team
|
2017-01-06 17:10:33 +08:00
|
|
|
link_to text,
|
|
|
|
path,
|
2020-01-07 23:13:34 +08:00
|
|
|
class: 'btn btn-primary',
|
2017-01-25 16:48:49 +08:00
|
|
|
data: { confirm: t('users.settings.changed_team_in_search',
|
|
|
|
team: search_team.name) }
|
2017-01-06 17:10:33 +08:00
|
|
|
else
|
2020-01-07 23:13:34 +08:00
|
|
|
link_to text, path, class: 'btn btn-primary'
|
2017-01-06 17:10:33 +08:00
|
|
|
end
|
|
|
|
end
|
2016-02-12 23:52:43 +08:00
|
|
|
end
|