2016-04-02 18:10:28 +05:30
|
|
|
class Dashboard::TodosController < Dashboard::ApplicationController
|
2017-08-17 22:00:37 +05:30
|
|
|
include ActionView::Helpers::NumberHelper
|
|
|
|
|
|
|
|
before_action :authorize_read_project!, only: :index
|
2016-06-22 15:30:34 +05:30
|
|
|
before_action :find_todos, only: [:index, :destroy_all]
|
2016-04-02 18:10:28 +05:30
|
|
|
|
|
|
|
def index
|
2016-09-13 17:45:13 +05:30
|
|
|
@sort = params[:sort]
|
2016-06-02 11:05:42 +05:30
|
|
|
@todos = @todos.page(params[:page])
|
2017-08-17 22:00:37 +05:30
|
|
|
if @todos.out_of_range? && @todos.total_pages != 0
|
|
|
|
redirect_to url_for(params.merge(page: @todos.total_pages, only_path: true))
|
|
|
|
end
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
def destroy
|
2016-09-13 17:45:13 +05:30
|
|
|
TodoService.new.mark_todos_as_done_by_ids([params[:id]], current_user)
|
2016-04-02 18:10:28 +05:30
|
|
|
|
|
|
|
respond_to do |format|
|
2016-06-22 15:30:34 +05:30
|
|
|
format.html { redirect_to dashboard_todos_path, notice: 'Todo was successfully marked as done.' }
|
2016-06-02 11:05:42 +05:30
|
|
|
format.js { head :ok }
|
2016-08-24 12:49:21 +05:30
|
|
|
format.json { render json: todos_counts }
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def destroy_all
|
2017-08-17 22:00:37 +05:30
|
|
|
updated_ids = TodoService.new.mark_todos_as_done(@todos, current_user)
|
2016-04-02 18:10:28 +05:30
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html { redirect_to dashboard_todos_path, notice: 'All todos were marked as done.' }
|
2016-06-02 11:05:42 +05:30
|
|
|
format.js { head :ok }
|
2017-08-17 22:00:37 +05:30
|
|
|
format.json { render json: todos_counts.merge(updated_ids: updated_ids) }
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def restore
|
|
|
|
TodoService.new.mark_todos_as_pending_by_ids([params[:id]], current_user)
|
|
|
|
|
|
|
|
render json: todos_counts
|
|
|
|
end
|
|
|
|
|
|
|
|
def bulk_restore
|
|
|
|
TodoService.new.mark_todos_as_pending_by_ids(params[:ids], current_user)
|
|
|
|
|
|
|
|
render json: todos_counts
|
|
|
|
end
|
|
|
|
|
|
|
|
# Used in TodosHelper also
|
|
|
|
def self.todos_count_format(count)
|
|
|
|
count >= 100 ? '99+' : count
|
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
private
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
def authorize_read_project!
|
|
|
|
project_id = params[:project_id]
|
|
|
|
|
|
|
|
if project_id.present?
|
|
|
|
project = Project.find(project_id)
|
|
|
|
render_404 unless can?(current_user, :read_project, project)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2016-04-02 18:10:28 +05:30
|
|
|
def find_todos
|
2016-06-22 15:30:34 +05:30
|
|
|
@todos ||= TodosFinder.new(current_user, params).execute
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|
2016-08-24 12:49:21 +05:30
|
|
|
|
|
|
|
def todos_counts
|
|
|
|
{
|
2017-08-17 22:00:37 +05:30
|
|
|
count: number_with_delimiter(current_user.todos_pending_count),
|
|
|
|
done_count: number_with_delimiter(current_user.todos_done_count)
|
2016-08-24 12:49:21 +05:30
|
|
|
}
|
|
|
|
end
|
2016-04-02 18:10:28 +05:30
|
|
|
end
|