Sha256: 34c3a43dde8e3360436eedde2c5be9263fbdb01659df82d895356a6836bccccf

Contents?: true

Size: 1.59 KB

Versions: 2

Compression:

Stored size: 1.59 KB

Contents

class Admin::PhotoAlbumsController < Admin::ApplicationController

  before_filter :get_album, :only => [:show, :edit, :update, :destroy, :library]
  add_breadcrumb 'Photo Albums', :admin_photo_albums_path
  layout 'admin/spud_photos'
  cache_sweeper :spud_photo_sweeper, :only => [:create, :update, :destroy]

  def index
    @photo_albums = SpudPhotoAlbum.all
    respond_with @photo_albums
  end

  def show
    respond_with @photo_album
  end

  def new
    @photo_album = SpudPhotoAlbum.new
    respond_with @photo_album
  end

  def create
    @photo_album = SpudPhotoAlbum.new(params[:spud_photo_album])
    if @photo_album.save
      set_photo_order
    end
    respond_with @photo_album, :location => admin_photo_albums_path
  end

  def edit
    respond_with @photo_album
  end

  def update
    @photo_album.update_attributes(params[:spud_photo_album])
    if @photo_album.save
      set_photo_order
      flash[:notice] = 'SpudPhotoAlbum updated successfully' 
    end
    respond_with @photo_album, :location => admin_photo_albums_path
  end

  def destroy
    flash[:notice] = 'SpudPhotoAlbum deleted successfully' if @photo_album.destroy
    respond_with @photo_album, :location => admin_photo_albums_path
  end

  def get_album
    @photo_album = SpudPhotoAlbum.find(params[:id])
  end

  private

  def set_photo_order
    order_ids = params[:spud_photo_album][:photo_ids] || []
    @photo_album.spud_photo_albums_photos.each do |obj|
      logger.debug "##### ID: #{obj.spud_photo_id.to_s}"
      index = order_ids.index(obj.spud_photo_id.to_s)
      obj.update_attribute(:sort_order, index)
    end
  end

end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
tb_photos-1.0.3 app/controllers/admin/photo_albums_controller.rb
tb_photos-1.0.1 app/controllers/admin/photo_albums_controller.rb