scinote-web/app/models/checklist.rb

57 lines
1.6 KiB
Ruby
Raw Normal View History

2016-02-12 23:52:43 +08:00
class Checklist < ActiveRecord::Base
2016-07-21 19:11:15 +08:00
include SearchableModel
auto_strip_attributes :name, nullify: false
validates :name,
presence: true,
length: { maximum: Constants::TEXT_MAX_LENGTH }
2016-02-12 23:52:43 +08:00
validates :step, presence: true
belongs_to :step, inverse_of: :checklists
belongs_to :created_by, foreign_key: 'created_by_id', class_name: 'User'
belongs_to :last_modified_by, foreign_key: 'last_modified_by_id', class_name: 'User'
has_many :checklist_items,
-> { order(:position) },
2016-02-12 23:52:43 +08:00
inverse_of: :checklist,
dependent: :destroy
has_many :report_elements,
inverse_of: :checklist,
dependent: :destroy
accepts_nested_attributes_for :checklist_items,
reject_if: :all_blank,
allow_destroy: true
2016-07-21 19:11:15 +08:00
def self.search(user, include_archived, query = nil, page = 1)
step_ids =
Step
.search(user, include_archived, nil, Constants::SEARCH_NO_LIMIT)
2017-04-11 20:55:44 +08:00
.pluck(:id)
2016-07-21 19:11:15 +08:00
if query
a_query = query.strip
.gsub("_","\\_")
.gsub("%","\\%")
.split(/\s+/)
.map {|t| "%" + t + "%" }
else
a_query = query
end
new_query = Checklist
.distinct
.where("checklists.step_id IN (?)", step_ids)
.joins("LEFT JOIN checklist_items ON checklists.id = checklist_items.checklist_id")
.where_attributes_like(["checklists.name", "checklist_items.text"], a_query)
# Show all results if needed
if page == Constants::SEARCH_NO_LIMIT
2016-07-21 19:11:15 +08:00
new_query
else
new_query
.limit(Constants::SEARCH_LIMIT)
.offset((page - 1) * Constants::SEARCH_LIMIT)
2016-07-21 19:11:15 +08:00
end
end
2016-02-12 23:52:43 +08:00
end