class SmartAnnotation include ActionView::Helpers::SanitizeHelper include ActionView::Helpers::TextHelper attr_writer :current_user, :current_organization, :query def initialize(current_user, current_organization, query) @current_user = current_user @current_organization = current_organization @query = query end def my_modules # Search tasks res = MyModule .search(@current_user, true, @query, 1, @current_organization) modules_list = [] res.each do |my_module_res| my_mod = {} my_mod['id'] = my_module_res.id.base62_encode my_mod['name'] = truncate( sanitize(my_module_res.name, length: Constants::NAME_TRUNCATION_LENGTH) ) my_mod['archived'] = my_module_res.archived my_mod['experimentName'] = truncate( sanitize(my_module_res.experiment.name, length: Constants::NAME_TRUNCATION_LENGTH) ) my_mod['projectName'] = truncate( sanitize(my_module_res.experiment.project.name, length: Constants::NAME_TRUNCATION_LENGTH) ) my_mod['type'] = 'tsk' modules_list << my_mod end modules_list end def projects # Search projects res = Project .search(@current_user, true, @query, 1, @current_organization) projects_list = [] res.each do |project_res| prj = {} prj['id'] = project_res.id.base62_encode prj['name'] = truncate( sanitize(project_res.name, length: Constants::NAME_TRUNCATION_LENGTH) ) prj['type'] = 'prj' projects_list << prj end projects_list end def experiments # Search experiments res = Experiment .search(@current_user, true, @query, 1, @current_organization) experiments_list = [] res.each do |experiment_res| exp = {} exp['id'] = experiment_res.id.base62_encode exp['name'] = truncate( sanitize(experiment_res.name, length: Constants::NAME_TRUNCATION_LENGTH) ) exp['type'] = 'exp' exp['projectName'] = truncate( sanitize(experiment_res.project.name, length: Constants::NAME_TRUNCATION_LENGTH) ) experiments_list << exp end experiments_list end def samples # Search samples res = Sample .search(@current_user, true, @query, 1, @current_organization) samples_list = [] res.each do |sample_res| sam = {} sam['id'] = sample_res.id.base62_encode sam['name'] = truncate( sanitize(sample_res.name, length: Constants::NAME_TRUNCATION_LENGTH) ) sam['description'] = "#{I18n.t('Added')} #{I18n.l( sample_res.created_at, format: :full_date )} #{I18n.t('by')} #{truncate( sanitize(sample_res.user.full_name, length: Constants::NAME_TRUNCATION_LENGTH) )} #{if sample_res.sample_type ', ' + truncate(sanitize(sample_res.sample_type.name), length: Constants::NAME_TRUNCATION_LENGTH) end} #{if sample_res.sample_group ', ' + truncate(sanitize(sample_res.sample_group.name), length: Constants::NAME_TRUNCATION_LENGTH) end}" sam['type'] = 'sam' samples_list << sam end samples_list end end