OSDN Git Service

pass test
[pettanr/pettanr.git] / app / controllers / panels_controller.rb
index d84482f..527fcf0 100644 (file)
@@ -1,6 +1,6 @@
 class PanelsController < ApplicationController
-layout 'test'
-  before_filter :authenticate_user!, :only => [:index, :show, :create, :update, :destroy]
+  layout 'test' if Pettanr::TestLayout
+  before_filter :authenticate_user!, :only => [:index, :show, :new, :edit, :create, :update, :destroy]
   before_filter :authenticate_admin!, :only => [:list, :browse]
 
   private
@@ -14,39 +14,37 @@ layout 'test'
   # GET /panels
   # GET /panels.json
   def index
-    @panels = Panel.find(:all, :include => [:comic, :author], :order => 'updated_at', :limit => 20)
+    @page = Panel.page params[:page]
+    @page_size = Panel.page_size params[:page_size]
+    @panels = Panel.list({}, @page, @page_size)
 
     respond_to do |format|
       format.html # index.html.erb
-      format.json { render :json => @panels.to_json(
-        :include => [:comic, :author]
-      ) }
+      format.json { render json: @panels.to_json(Panel.list_json_opt) }
     end
   end
 
   # GET /panels/1
   # GET /panels/1.json
   def show
-    @panel = Panel.find(params[:id], include: [:comic, :panel_pictures => :resource_picture, :balloons => :speaches])# only: [:width, :height])
+    @panel = Panel.show(params[:id], @author)
 
     respond_to do |format|
       format.html # show.html.erb
-       format.json {
-        render :json => @panel.to_json(include: {
-          :comic => {}, :panel_pictures => {:include => :image}, :fukidashis => {:include => :serifus}
-        })
-      }
+      format.json { render json: @panel.to_json(Panel.show_json_include_opt) }
       format.jsonp {
-        render :json => "callback(" + @panel.to_json(include: {
-          :comic => {}, :panel_pictures => {:include => :image}, :fukidashis => {:include => :serifus}
-        }) + ");"
+        render :json => "callback(" + @panel.to_json(Panel.show_json_include_opt) + ");"
       }
-#      format.json { render :json => @frame.to_json(include: {
-#        :comic => {:only => :title}, :panel_pictures => {:include => {:image => {:only => [:width]}},:only => [:width, :height, :z, :image_id]}
-#      }, only: [:border]) }
     end
   end
 
+  def count
+    @panel = {:count => Panel.visible_count}
+    respond_to do |format|
+      format.json { render json: @panel.to_json }
+    end
+  end
+  
   def list
     @panels = Panel.all :order => 'updated_at'
 
@@ -64,6 +62,25 @@ layout 'test'
     end
   end
 
+  def new
+    @panel = Panel.new
+    @panel.supply_default @author
+
+    respond_to do |format|
+      format.html # new.html.erb
+      format.js
+      format.json { render json: @panel }
+    end
+  end
+
+  def edit
+    @panel = Panel.show(params[:id], @author)
+    respond_to do |format|
+      format.html
+      format.js
+    end
+  end
+
   # POST /panels
   # POST /panels.json
   def create
@@ -73,17 +90,15 @@ layout 'test'
     @prm = params[:panel] || jsn
     @panel = Panel.new(@prm)
     treat_param @panel
-    @comic = Comic.find @panel.comic_id
+#    @comic = Comic.find @panel.comic_id
 
     respond_to do |format|
-      Panel.transaction do
-        if @panel.vdt_save
-          format.html { redirect_to @panel, notice: 'Panel was successfully created.' }
-          format.json { render json: @panel, status: :created, location: @panel }
-        else
-          format.html { render action: "new" }
-          format.json { render json: @panel.errors, status: :unprocessable_entity }
-        end
+      if @panel.store
+        format.html { redirect_to @panel, notice: 'Panel was successfully created.' }
+        format.json { render json: @panel, status: :created, location: @panel }
+      else
+        format.html { render action: "new" }
+        format.json { render json: @panel.errors, status: :unprocessable_entity }
       end
     end
   end
@@ -93,12 +108,17 @@ layout 'test'
   def update
     @panel = Panel.find(params[:id])
     if @panel.own? @author
+      if params[:json]
+        jsn = JSON.parse(params[:json])
+      end
+      @prm = params[:panel] || jsn
       respond_to do |format|
         Panel.transaction do
           if params[:panel][:t] and params[:panel][:t].to_i != @panel.t
             @panel.move_to params[:panel][:t].to_i
           end
-          if @panel.update_attributes(params[:panel])
+          @panel.attributes = @prm
+          if @panel.store
             format.html { redirect_to @panel, notice: 'Panel was successfully updated.' }
             format.json { head :ok }
           else