Class: Redditor::Admin::SliderBlocksController
- Inherits:
-
BaseController
- Object
- BaseController
- Redditor::Admin::SliderBlocksController
- Defined in:
- app/controllers/redditor/admin/slider_blocks_controller.rb
Instance Method Summary collapse
Instance Method Details
#change_view ⇒ Object
9 10 11 12 13 14 |
# File 'app/controllers/redditor/admin/slider_blocks_controller.rb', line 9 def change_view @content_block = @page..find(params[:id]) # оставляем только :kind и :object_id параметры, чтобы при возвращении к старому виду описания к фотографиям не сохранялись @content_block.update_attributes(params.require(:content_block).permit(:kind, :object_id)) render "redditor/admin/wrapper" end |
#create ⇒ Object
22 23 24 25 26 27 |
# File 'app/controllers/redditor/admin/slider_blocks_controller.rb', line 22 def create temp_last_postion = @page.try(:content_blocks).try(:last).try(:position).to_i + 1 @content_block = @page..build(content_block_params) @content_block.update_attributes(position: temp_last_postion) render "redditor/admin/new" end |
#destroy ⇒ Object
29 30 31 32 33 34 35 36 |
# File 'app/controllers/redditor/admin/slider_blocks_controller.rb', line 29 def destroy @content_block = @page..find(params[:id]) if @content_block.destroy render js: "$('#slider_block_#{@content_block.id}').closest('dd').remove();" else render js: "alert('Контент-блок не удален');" end end |
#new ⇒ Object
4 5 6 7 |
# File 'app/controllers/redditor/admin/slider_blocks_controller.rb', line 4 def new @content_block = @page..build(content_block_params) render "redditor/admin/new" end |
#update ⇒ Object
16 17 18 19 20 |
# File 'app/controllers/redditor/admin/slider_blocks_controller.rb', line 16 def update @content_block = @page..find(params[:id]) @content_block.update_attributes(content_block_params) render "redditor/admin/wrapper" end |