about summary refs log tree commit diff
path: root/app/controllers/filters/statuses_controller.rb
blob: 86d11fcb935a73f22ad8a997c8e6e616b914dbe5 (plain) (blame)
1
2
3
4
5
6
7
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
# frozen_string_literal: true

class Filters::StatusesController < ApplicationController
  layout 'admin'

  before_action :authenticate_user!
  before_action :set_filter
  before_action :set_status_filters
  before_action :set_pack
  before_action :set_body_classes

  PER_PAGE = 20

  def index
    @status_filter_batch_action = Form::StatusFilterBatchAction.new
  end

  def batch
    @status_filter_batch_action = Form::StatusFilterBatchAction.new(status_filter_batch_action_params.merge(current_account: current_account, filter_id: params[:filter_id], type: action_from_button))
    @status_filter_batch_action.save!
  rescue ActionController::ParameterMissing
    flash[:alert] = I18n.t('admin.statuses.no_status_selected')
  ensure
    redirect_to edit_filter_path(@filter)
  end

  private

  def set_pack
    use_pack 'admin'
  end

  def set_filter
    @filter = current_account.custom_filters.find(params[:filter_id])
  end

  def set_status_filters
    @status_filters = @filter.statuses.preload(:status).page(params[:page]).per(PER_PAGE)
  end

  def status_filter_batch_action_params
    params.require(:form_status_filter_batch_action).permit(status_filter_ids: [])
  end

  def action_from_button
    'remove' if params[:remove]
  end

  def set_body_classes
    @body_classes = 'admin'
  end
end