scinote-web/app/utilities/smart_annotation.rb

56 lines
1.6 KiB
Ruby
Raw Normal View History

2020-09-09 20:17:19 +08:00
# frozen_string_literal: true
2017-01-05 17:52:00 +08:00
class SmartAnnotation
include InputSanitizeHelper
2017-01-05 17:52:00 +08:00
include ActionView::Helpers::TextHelper
2017-01-25 17:24:50 +08:00
attr_writer :current_user, :current_team, :query
2017-01-05 17:52:00 +08:00
2017-01-25 17:24:50 +08:00
def initialize(current_user, current_team, query)
2017-01-05 17:52:00 +08:00
@current_user = current_user
2017-01-25 17:24:50 +08:00
@current_team = current_team
2017-01-05 17:52:00 +08:00
@query = query
end
def my_modules
# Search tasks
MyModule.search_by_name_and_id(@current_user, @current_team, @query).active
2020-09-09 20:17:19 +08:00
.joins(experiment: :project)
.where(projects: { archived: false }, experiments: { archived: false })
2020-09-11 19:00:13 +08:00
.limit(Constants::ATWHO_SEARCH_LIMIT + 1)
2017-01-05 17:52:00 +08:00
end
def projects
# Search projects
Project.search_by_name_and_id(@current_user, @current_team, @query)
2020-09-09 20:17:19 +08:00
.where(archived: false)
2020-09-11 19:00:13 +08:00
.limit(Constants::ATWHO_SEARCH_LIMIT + 1)
2017-01-05 17:52:00 +08:00
end
def experiments
# Search experiments
Experiment.search_by_name_and_id(@current_user, @current_team, @query)
2020-09-09 20:17:19 +08:00
.joins(:project)
.where(projects: { archived: false }, experiments: { archived: false })
2020-09-11 19:00:13 +08:00
.limit(Constants::ATWHO_SEARCH_LIMIT + 1)
2017-01-05 17:52:00 +08:00
end
def repository_rows(repository)
res = RepositoryRow
.active
.where(repository: repository)
.search_by_name_and_id(@current_user, @current_team, @query)
2020-09-11 19:00:13 +08:00
.limit(Constants::ATWHO_SEARCH_LIMIT + 1)
rep_items_list = []
res.each do |rep_row|
rep_item = {}
2020-09-04 22:48:53 +08:00
rep_item[:id] = rep_row.id.base62_encode
rep_item[:name] = escape_input(rep_row.name)
rep_item[:code] = escape_input(rep_row.code)
rep_items_list << rep_item
end
rep_items_list
end
2017-01-05 17:52:00 +08:00
end