Class: Comfy::Admin::Cms::SnippetsController

Inherits:
BaseController
  • Object
show all
Defined in:
app/controllers/comfy/admin/cms/snippets_controller.rb

Instance Method Summary collapse

Instance Method Details

#createObject



20
21
22
23
24
25
26
27
# File 'app/controllers/comfy/admin/cms/snippets_controller.rb', line 20

def create
  @snippet.save!
  flash[:success] = I18n.t('comfy.admin.cms.snippets.created')
  redirect_to action: :edit, id: @snippet
rescue ActiveRecord::RecordInvalid
  flash.now[:danger] = I18n.t('comfy.admin.cms.snippets.creation_failure')
  render action: :new
end

#destroyObject



38
39
40
41
42
# File 'app/controllers/comfy/admin/cms/snippets_controller.rb', line 38

def destroy
  @snippet.destroy
  flash[:success] = I18n.t('comfy.admin.cms.snippets.deleted')
  redirect_to action: :index
end

#editObject



16
17
18
# File 'app/controllers/comfy/admin/cms/snippets_controller.rb', line 16

def edit
  @snippet.attributes = snippet_params
end

#indexObject



7
8
9
10
# File 'app/controllers/comfy/admin/cms/snippets_controller.rb', line 7

def index
  return redirect_to action: :new if @site.snippets.count == 0
  @snippets = @site.snippets.includes(:categories).for_category(params[:categories]).order(:position)
end

#newObject



12
13
14
# File 'app/controllers/comfy/admin/cms/snippets_controller.rb', line 12

def new
  render
end

#reorderObject



44
45
46
47
48
49
# File 'app/controllers/comfy/admin/cms/snippets_controller.rb', line 44

def reorder
  (params[:comfy_cms_snippet] || []).each_with_index do |id, index|
    ::Comfy::Cms::Snippet.where(id: id).update_all(position: index)
  end
  head :ok
end

#updateObject



29
30
31
32
33
34
35
36
# File 'app/controllers/comfy/admin/cms/snippets_controller.rb', line 29

def update
  @snippet.update_attributes!(snippet_params)
  flash[:success] = I18n.t('comfy.admin.cms.snippets.updated')
  redirect_to action: :edit, id: @snippet
rescue ActiveRecord::RecordInvalid
  flash.now[:danger] = I18n.t('comfy.admin.cms.snippets.update_failure')
  render action: :edit
end