Class: Decidim::Admin::ComponentsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/decidim/admin/components_controller.rb

Overview

Controller that allows managing the Participatory Process’ Components in the admin panel.

Instance Method Summary collapse

Methods inherited from ApplicationController

#permission_class_chain, #permission_scope, #user_has_no_permission_path, #user_not_authorized_path

Instance Method Details

#createObject



29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# File 'app/controllers/decidim/admin/components_controller.rb', line 29

def create
  @form = form(ComponentForm).from_params(params)
  enforce_permission_to :create, :component

  CreateComponent.call(manifest, @form, current_participatory_space) do
    on(:ok) do
      flash[:notice] = I18n.t("components.create.success", scope: "decidim.admin")
      redirect_to action: :index
    end

    on(:invalid) do
      flash.now[:alert] = I18n.t("components.create.error", scope: "decidim.admin")
      render action: "new"
    end
  end
end

#destroyObject



73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
# File 'app/controllers/decidim/admin/components_controller.rb', line 73

def destroy
  @component = query_scope.find(params[:id])
  enforce_permission_to :destroy, :component, component: @component

  DestroyComponent.call(@component, current_user) do
    on(:ok) do
      flash[:notice] = I18n.t("components.destroy.success", scope: "decidim.admin")
      redirect_to action: :index
    end

    on(:invalid) do
      flash[:alert] = I18n.t("components.destroy.error", scope: "decidim.admin")
      redirect_to action: :index
    end
  end
end

#editObject



46
47
48
49
50
51
# File 'app/controllers/decidim/admin/components_controller.rb', line 46

def edit
  @component = query_scope.find(params[:id])
  enforce_permission_to :update, :component, component: @component

  @form = form(ComponentForm).from_model(@component)
end

#indexObject



11
12
13
14
15
# File 'app/controllers/decidim/admin/components_controller.rb', line 11

def index
  enforce_permission_to :read, :component
  @manifests = Decidim.component_manifests
  @components = current_participatory_space.components
end

#newObject



17
18
19
20
21
22
23
24
25
26
27
# File 'app/controllers/decidim/admin/components_controller.rb', line 17

def new
  enforce_permission_to :create, :component

  @component = Component.new(
    name: default_name(manifest),
    manifest_name: params[:type],
    participatory_space: current_participatory_space
  )

  @form = form(ComponentForm).from_model(@component)
end

#publishObject



90
91
92
93
94
95
96
97
98
99
100
# File 'app/controllers/decidim/admin/components_controller.rb', line 90

def publish
  @component = query_scope.find(params[:id])
  enforce_permission_to :publish, :component, component: @component

  PublishComponent.call(@component, current_user) do
    on(:ok) do
      flash[:notice] = I18n.t("components.publish.success", scope: "decidim.admin")
      redirect_to action: :index
    end
  end
end

#unpublishObject



102
103
104
105
106
107
108
109
110
111
112
# File 'app/controllers/decidim/admin/components_controller.rb', line 102

def unpublish
  @component = query_scope.find(params[:id])
  enforce_permission_to :unpublish, :component, component: @component

  UnpublishComponent.call(@component, current_user) do
    on(:ok) do
      flash[:notice] = I18n.t("components.unpublish.success", scope: "decidim.admin")
      redirect_to action: :index
    end
  end
end

#updateObject



53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
# File 'app/controllers/decidim/admin/components_controller.rb', line 53

def update
  @component = query_scope.find(params[:id])
  @form = form(ComponentForm).from_params(params)
  enforce_permission_to :update, :component, component: @component

  UpdateComponent.call(@form, @component) do
    on(:ok) do |settings_changed, previous_settings, current_settings|
      handle_component_settings_change(previous_settings, current_settings) if settings_changed

      flash[:notice] = I18n.t("components.update.success", scope: "decidim.admin")
      redirect_to action: :index
    end

    on(:invalid) do
      flash.now[:alert] = I18n.t("components.update.error", scope: "decidim.admin")
      render action: "new"
    end
  end
end