2021-11-25 13:07:38 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
class Admin::Trends::LinksController < Admin::BaseController
|
|
|
|
def index
|
|
|
|
authorize :preview_card, :index?
|
|
|
|
|
|
|
|
@preview_cards = filtered_preview_cards.page(params[:page])
|
2022-02-25 00:34:14 +01:00
|
|
|
@form = Trends::PreviewCardBatch.new
|
2021-11-25 13:07:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def batch
|
2022-02-25 00:34:14 +01:00
|
|
|
@form = Trends::PreviewCardBatch.new(trends_preview_card_batch_params.merge(current_account: current_account, action: action_from_button))
|
2021-11-25 13:07:38 +01:00
|
|
|
@form.save
|
|
|
|
rescue ActionController::ParameterMissing
|
|
|
|
flash[:alert] = I18n.t('admin.accounts.no_account_selected')
|
|
|
|
ensure
|
|
|
|
redirect_to admin_trends_links_path(filter_params)
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def filtered_preview_cards
|
2022-02-25 00:34:14 +01:00
|
|
|
Trends::PreviewCardFilter.new(filter_params.with_defaults(trending: 'all')).results
|
2021-11-25 13:07:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def filter_params
|
2022-02-25 00:34:14 +01:00
|
|
|
params.slice(:page, *Trends::PreviewCardFilter::KEYS).permit(:page, *Trends::PreviewCardFilter::KEYS)
|
2021-11-25 13:07:38 +01:00
|
|
|
end
|
|
|
|
|
2022-02-25 00:34:14 +01:00
|
|
|
def trends_preview_card_batch_params
|
|
|
|
params.require(:trends_preview_card_batch).permit(:action, preview_card_ids: [])
|
2021-11-25 13:07:38 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
def action_from_button
|
|
|
|
if params[:approve]
|
|
|
|
'approve'
|
2022-02-25 00:34:14 +01:00
|
|
|
elsif params[:approve_providers]
|
|
|
|
'approve_providers'
|
2021-11-25 13:07:38 +01:00
|
|
|
elsif params[:reject]
|
|
|
|
'reject'
|
2022-02-25 00:34:14 +01:00
|
|
|
elsif params[:reject_providers]
|
|
|
|
'reject_providers'
|
2021-11-25 13:07:38 +01:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|