2014-05-06 09:20:15 +00:00
|
|
|
class Admin::PageContentsController < OrbitAdminController
|
2014-12-01 10:06:31 +00:00
|
|
|
before_action ->(module_app = @app_title) { set_variables module_app }
|
2014-05-05 07:05:59 +00:00
|
|
|
def index
|
2014-12-01 10:06:31 +00:00
|
|
|
@table_fields = [:page_id, :name,:version,:update_at,:last_modified, :category]
|
2014-08-07 10:48:51 +00:00
|
|
|
@filter_fields = {}
|
|
|
|
@pages = Page.where(:module=>"page_content").order_by(sort)
|
2014-12-01 13:20:08 +00:00
|
|
|
@categories = @module_app.categories.enabled.authorized(current_user).collect{|c| [c.title, c.id]}
|
2014-08-07 10:48:51 +00:00
|
|
|
@pages = search_data(@pages,[:name, :page_id]).page(params[:page]).per(10)
|
|
|
|
|
|
|
|
render :partial => "index" if request.xhr?
|
2014-05-06 09:20:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def show
|
|
|
|
@page_context = PageContext.find(params[:id])
|
|
|
|
end
|
|
|
|
|
|
|
|
def new
|
2014-12-01 13:07:00 +00:00
|
|
|
@page = Page.find(params[:page_id])
|
|
|
|
if can_edit_or_delete?(@page)
|
2014-07-31 12:42:42 +00:00
|
|
|
@page_content = PageContext.new
|
|
|
|
else
|
|
|
|
render_401
|
|
|
|
end
|
2014-05-06 09:20:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def create
|
2014-08-05 06:45:30 +00:00
|
|
|
@page_content = PageContext.new(update_params)
|
2014-05-06 09:20:15 +00:00
|
|
|
@page_content.update_user_id = current_user.id
|
2014-08-05 06:45:30 +00:00
|
|
|
@page_content.save
|
|
|
|
redirect_to params['referer_url']
|
2014-05-06 09:20:15 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
def view
|
|
|
|
@table_fields = ["Name","Version","Updated At","Last Modified By"]
|
|
|
|
@page = Page.find(params[:id])
|
|
|
|
@page_contexts = @page.page_contexts.desc(:version)
|
|
|
|
end
|
|
|
|
|
2014-12-01 10:06:31 +00:00
|
|
|
def save_category
|
|
|
|
page_id = params[:page_id]
|
|
|
|
category_id = params[:category_id]
|
|
|
|
page = Page.find(page_id) rescue nil
|
|
|
|
if !page.nil?
|
|
|
|
page.category_id = category_id
|
|
|
|
page.save
|
|
|
|
end
|
|
|
|
render :json => {"success" => true}.to_json
|
|
|
|
end
|
|
|
|
|
2014-05-06 09:20:15 +00:00
|
|
|
private
|
|
|
|
|
|
|
|
def update_params
|
2014-08-07 10:48:51 +00:00
|
|
|
params.require(:page_context).permit!
|
2014-05-05 07:05:59 +00:00
|
|
|
end
|
|
|
|
end
|