remomueller/tasktracker

View on GitHub
app/controllers/templates_controller.rb

Summary

Maintainability
A
25 mins
Test Coverage
# frozen_string_literal: true

# Allows a series of tasks to be setup that are then launched together as a
# group.
class TemplatesController < ApplicationController
  before_action :authenticate_user!
  before_action :set_viewable_project, only: [:index]
  before_action :set_viewable_template, only: [:show]
  before_action :set_editable_template, only: [:edit, :update, :destroy]
  before_action :redirect_without_template, only: [:show, :edit, :update, :destroy]

  def copy
    template = current_user.all_viewable_templates.find_by_id(params[:id])
    if template and @template = current_user.templates.new(template.copyable_attributes)
      render :new
    else
      redirect_to templates_path
    end
  end

  def selection
    @template = current_user.all_templates.find_by_id(params[:group][:template_id])
  end

  def add_item
    @template = current_user.templates.new(template_params)
    @template_item = @template.template_items.new(description: '')
    render 'template_items/new'
  end

  # GET /templates
  def index
    @order = scrub_order(Template, params[:order], 'templates.name')
    template_scope = (params[:editable_only] == '1') ? current_user.all_templates : current_user.all_viewable_templates
    @templates = template_scope.search(params[:search]).filter(params).order(@order).page(params[:page]).per(40)
  end

  # GET /templates/1
  def show
  end

  # GET /templates/new
  def new
    @template = current_user.templates.new(template_params)
  end

  # GET /templates/1/edit
  def edit
  end

  def items
    @template = current_user.templates.new(template_params)
  end

  # POST /templates
  def create
    @template = current_user.templates.new(template_params)
    if @template.save
      redirect_to @template, notice: 'Template was successfully created.'
    else
      render :new
    end
  end

  # PATCH /templates/1
  def update
    if @template.update(template_params)
      redirect_to @template, notice: 'Template was successfully updated.'
    else
      render :edit
    end
  end

  # DELETE /templates/1
  def destroy
    @template.destroy
    redirect_to templates_path(project_id: @template.project_id)
  end

  private

  def set_viewable_template
    @template = current_user.all_viewable_templates.find_by_id(params[:id])
  end

  def set_editable_template
    @template = current_user.all_templates.find_by_id(params[:id])
  end

  def redirect_without_template
    empty_response_or_root_path(templates_path) unless @template
  end

  def template_params
    params[:template] ||= { blank: '1' }

    unless params[:template][:project_id].blank?
      project = current_user.all_projects.find_by_id(params[:template][:project_id])
      params[:template][:project_id] = project ? project.id : nil
    end

    params.require(:template).permit(
      :name, :project_id, :avoid_weekends,
      { item_hashes: [:description, :owner_id, :interval, :interval_units, :due_time, :duration, :duration_units, tag_ids: []] }
    )
  end
end