about summary refs log tree commit diff
path: root/app/controllers/settings/featured_tags_controller.rb
blob: e805527d07c63ad3b95ee18b0465a408d587234f (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
# frozen_string_literal: true

class Settings::FeaturedTagsController < Settings::BaseController
  before_action :set_featured_tags, only: :index
  before_action :set_featured_tag, except: [:index, :create]
  before_action :set_recently_used_tags, only: :index

  def index
    @featured_tag = FeaturedTag.new
  end

  def create
    @featured_tag = current_account.featured_tags.new(featured_tag_params)
    @featured_tag.reset_data

    if @featured_tag.save
      redirect_to settings_featured_tags_path
    else
      set_featured_tags
      set_recently_used_tags

      render :index
    end
  end

  def destroy
    @featured_tag.destroy!
    redirect_to settings_featured_tags_path
  end

  private

  def set_featured_tag
    @featured_tag = current_account.featured_tags.find(params[:id])
  end

  def set_featured_tags
    @featured_tags = current_account.featured_tags.order(statuses_count: :desc).reject(&:new_record?)
  end

  def set_recently_used_tags
    @recently_used_tags = Tag.recently_used(current_account).where.not(id: @featured_tags.map(&:id)).limit(10)
  end

  def featured_tag_params
    params.require(:featured_tag).permit(:name)
  end
end