Class: Flyboy::TasksController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ApplicationController
- Flyboy::TasksController
- Defined in:
- app/controllers/flyboy/tasks_controller.rb
Instance Method Summary collapse
- #complete ⇒ Object
- #create ⇒ Object
- #destroy ⇒ Object
- #edit ⇒ Object
- #index ⇒ Object
- #new ⇒ Object
- #show ⇒ Object
- #snooze ⇒ Object
- #update ⇒ Object
Methods inherited from ApplicationController
Instance Method Details
#complete ⇒ Object
119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 |
# File 'app/controllers/flyboy/tasks_controller.rb', line 119 def complete :complete, @task @task_comment ||= @task.comments.new( :progress => 100, :description => t("messages.tasks.complete_ok"), :date => DateTime.now ) if @task_comment.save flash[:success] = t("messages.tasks.complete_ok") else flash[:danger] = t("messages.tasks.complete_error") end redirect_to request.referer end |
#create ⇒ Object
83 84 85 86 87 88 89 90 91 92 93 94 |
# File 'app/controllers/flyboy/tasks_controller.rb', line 83 def create @task ||= Task.new(task_params) :create, @task if @task.save flash[:success] = t("messages.tasks.create_ok") redirect_to @task else render :new end end |
#destroy ⇒ Object
107 108 109 110 111 112 113 114 115 116 117 |
# File 'app/controllers/flyboy/tasks_controller.rb', line 107 def destroy :delete, @task if @task.destroy flash[:success] = t("messages.tasks.delete_ok") else flash[:danger] = t("messages.tasks.delete_error") end redirect_to tasks_url end |
#edit ⇒ Object
79 80 81 |
# File 'app/controllers/flyboy/tasks_controller.rb', line 79 def edit :update, @task end |
#index ⇒ Object
8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 |
# File 'app/controllers/flyboy/tasks_controller.rb', line 8 def index :list, Task @tasks ||= Task.all.includes(:taskable) @order ||= sortable_column_order do |column, direction| case column when "name", "status" %(LOWER(flyboy_tasks.#{column}) #{direction}) when "progress", "term" %(flyboy_tasks.#{column} #{direction}) when "taskable" if direction == :asc proc { |a, b| a.taskable.name.downcase <=> b.taskable.name.downcase } else proc { |a, b| b.taskable.name.downcase <=> a.taskable.name.downcase } end else params["sort"] = "term" "term ASC" end end @filters ||= SmallData::FilterForTasks.new() @tasks = @filters.apply(@tasks) @tasks = @tasks.search(params[:q]) if @order.is_a?(Proc) @tasks = @tasks.sort(&@order) @tasks = Kaminari.paginate_array(@tasks).page(params[:page]) else @tasks = @tasks.order(@order) @tasks = @tasks.page(params[:page]) end respond_to do |format| format.html format.csv do send_data @tasks.to_csv, filename: "feuille_de_route_#{Date.today}.csv", disposition: "attachment" end format.xls format.pdf do pdf = Roadmap.new(@tasks) pdf.build send_data pdf.render, filename: "feuille_de_route_#{Date.today}.pdf", disposition: "inline" end end end |
#new ⇒ Object
72 73 74 75 76 77 |
# File 'app/controllers/flyboy/tasks_controller.rb', line 72 def new @task = Task.new @task.taskable_guid = params[:taskable_guid] :create, @task end |
#show ⇒ Object
66 67 68 69 70 |
# File 'app/controllers/flyboy/tasks_controller.rb', line 66 def show @task = Task.find(params[:id]) :read, @task end |
#snooze ⇒ Object
137 138 139 140 141 142 143 144 145 146 147 |
# File 'app/controllers/flyboy/tasks_controller.rb', line 137 def snooze @task.snooze if @task.save flash[:success] = t("messages.tasks.snooze_ok") else flash[:danger] = t("messages.tasks.snooze_error") end redirect_to tasks_url end |
#update ⇒ Object
96 97 98 99 100 101 102 103 104 105 |
# File 'app/controllers/flyboy/tasks_controller.rb', line 96 def update :update, @task if @task.update_attributes(task_params) flash[:success] = t("messages.tasks.update_ok") redirect_to @task else render :edit end end |