personal-project/app/controllers/personal_projects_controlle...

110 lines
2.7 KiB
Ruby
Raw Normal View History

2014-07-04 06:14:37 +00:00
class PersonalProjectsController < ApplicationController
def index
2016-03-18 18:06:06 +00:00
params = OrbitHelper.params
2017-12-19 08:44:42 +00:00
projects = Project.where(:project_title.ne => nil,:project_title.ne => "").sort_for_frontend.page(OrbitHelper.params[:page_no]).per(OrbitHelper.page_data_count)
2016-03-18 18:06:06 +00:00
fields_to_show = Page.where(:page_id => params[:page_id]).first.custom_array_field rescue []
if fields_to_show.blank?
fields_to_show = [
"project_type",
"year",
"project_title",
"participator",
"job_title",
"period",
"unit"
]
end
project_list = []
projects.each do |project|
t = []
fields_to_show.each do |fs|
case fs
when "project_type"
t << {"value" => (project.send(fs).title rescue "")}
when "project_title"
t << {"value" => "<a href='#{OrbitHelper.url_to_show(project.to_param)}'>" + (project.send(fs) rescue "") + "</a>"}
2016-03-30 08:40:25 +00:00
when "period"
t << {"value" => (project.send("duration") rescue "")}
2016-03-18 18:06:06 +00:00
else
t << {"value" => (project.send(fs) rescue "")}
end
end
project_list << {"project" => t}
end
headers = []
fields_to_show.each do |fs|
col = 2
col = 3 if fs == "project_title"
headers << {
"head-title" => t("personal_project.#{fs}"),
"col" => col
2014-07-04 06:14:37 +00:00
}
end
{
"projects" => project_list,
2016-03-18 18:06:06 +00:00
"headers" => headers,
"extras" => {"widget-title" => t("module_name.personal_project")},
2014-07-18 07:06:04 +00:00
"total_pages" => projects.total_pages
2014-07-04 06:14:37 +00:00
}
end
def show
params = OrbitHelper.params
2014-08-01 11:49:10 +00:00
plugin = Project.where(:is_hidden=>false).find_by(uid: params[:uid])
fields_to_show = [
2015-01-09 07:40:06 +00:00
"year",
2014-08-01 11:49:10 +00:00
"project_type",
2015-01-09 07:40:06 +00:00
"project_title",
2014-08-01 11:49:10 +00:00
"participator",
2015-01-09 07:40:06 +00:00
"job_title",
"period",
2014-08-01 11:49:10 +00:00
"unit",
"abstract",
"url",
2015-01-09 07:40:06 +00:00
"file",
"language",
2014-08-01 11:49:10 +00:00
]
2014-07-04 06:14:37 +00:00
2014-08-01 11:49:10 +00:00
{"plugin_datas"=>plugin.get_plugin_data(fields_to_show)}
2016-03-18 18:06:06 +00:00
end
2014-07-04 06:14:37 +00:00
2016-03-18 18:06:06 +00:00
def get_fields_for_index
@page = Page.find(params[:page_id]) rescue nil
@fields_to_show = [
"year",
"project_type",
"project_title",
"participator",
"job_title",
"period",
"unit",
"abstract",
"url",
"file",
"language",
]
@fields_to_show = @fields_to_show.map{|fs| [t("personal_project.#{fs}"), fs]}
@default_fields_to_show = [
"project_type",
"year",
"project_title",
"participator",
"job_title",
"period",
"unit"
]
render :layout => false
end
2014-07-04 06:14:37 +00:00
2016-03-18 18:06:06 +00:00
def save_index_fields
page = Page.find(params[:page_id]) rescue nil
page.custom_array_field = params[:keys]
page.save
render :json => {"success" => true}.to_json
end
2014-07-04 06:14:37 +00:00
2016-03-18 18:06:06 +00:00
end
2014-08-01 11:49:10 +00:00