我一直在尝试构建一个定制的待办事项应用程序,可以添加重复任务。
我的第一种方法是在前面使用 recurring_select,在后面使用 ice_cube 逻辑。我设法生成了一个包含所有期望事件的计划,但我遇到的问题是,这样我就不能再将重复任务标记为完成,因为它只是显示它的事件。
这是一些代码:
*task.rb*
class Task < ApplicationRecord
(...)
serialize :recurrence, Hash
def recurrence=(value)
# byebug
if value != "null" && RecurringSelect.is_valid_rule?(value)
super(RecurringSelect.dirty_hash_to_rule(value).to_hash)
else
super(nil)
end
end
def rule
IceCube::Rule.from_hash recurrence
end
def schedule(start)
schedule = IceCube::Schedule.new(start)
schedule.add_recurrence_rule(rule)
schedule
end
def display_tasks(start)
if recurrence.empty?
[self]
else
start_date = start.beginning_of_week
end_date = start.end_of_week
schedule(start_date).occurrences(end_date).map do |date|
Task.new(id: id, name: name, start_time: date)
end
end
end
end
*tasks_controller.rb*
class TasksController < ApplicationController
before_action :set_task, only: [:complete, :uncomplete, :show]
(...)
def index
(...)
@display_tasks = @tasks.flat_map{ |t| t.display_tasks(params.fetch(:start_date, Time.zone.now).to_date ) }
end
(...)
end
我想知道是否有比使用宝石更好的方法来处理它?我正在阅读有关安排 rake 任务的信息,但我自己从未做过,所以我不确定这是否也是可行的方法。
提前致谢。