gitlab-org--gitlab-foss/app/models/concerns/taskable.rb

38 lines
1.0 KiB
Ruby
Raw Normal View History

2015-04-29 21:47:55 +00:00
require 'task_list'
2015-06-10 05:38:45 +00:00
require 'task_list/filter'
2015-04-29 21:47:55 +00:00
# Contains functionality for objects that can have task lists in their
# descriptions. Task list items can be added with Markdown like "* [x] Fix
# bugs".
#
# Used by MergeRequest and Issue
module Taskable
2015-04-29 21:47:55 +00:00
# Called by `TaskList::Summary`
def task_list_items
return [] if description.blank?
2015-04-29 21:47:55 +00:00
@task_list_items ||= description.scan(TaskList::Filter::ItemPattern).collect do |item|
# ItemPattern strips out the hyphen, but Item requires it. Rabble rabble.
TaskList::Item.new("- #{item}")
end
2015-04-29 21:47:55 +00:00
end
2015-04-29 21:47:55 +00:00
def tasks
@tasks ||= TaskList.new(self)
end
# Return true if this object's description has any task list items.
def tasks?
2015-04-29 21:47:55 +00:00
tasks.summary.items?
end
# Return a string that describes the current state of this Taskable's task
2015-05-06 21:27:10 +00:00
# list items, e.g. "20 tasks (12 completed, 8 remaining)"
def task_status
2015-04-29 21:47:55 +00:00
return '' if description.blank?
2015-04-29 21:47:55 +00:00
sum = tasks.summary
2015-05-06 21:27:10 +00:00
"#{sum.item_count} tasks (#{sum.complete_count} completed, #{sum.incomplete_count} remaining)"
end
end