parent
dc1e3a6d0a
commit
7f4e00f991
|
@ -2,40 +2,40 @@ class PersonalPatentsController < ApplicationController
|
||||||
def index
|
def index
|
||||||
params = OrbitHelper.params
|
params = OrbitHelper.params
|
||||||
page_data_count = OrbitHelper.page_data_count
|
page_data_count = OrbitHelper.page_data_count
|
||||||
patents = Patent.where(:is_hidden=>false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(page_data_count)
|
patents = Patent.where(is_hidden: false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(page_data_count)
|
||||||
fields_to_show = Page.where(:page_id => params[:page_id]).first.custom_array_field rescue []
|
fields_to_show = Page.where(page_id: params[:page_id]).first.custom_array_field rescue []
|
||||||
if fields_to_show.blank?
|
if fields_to_show.blank?
|
||||||
fields_to_show = [
|
fields_to_show = %w[
|
||||||
"publish_date",
|
publish_date
|
||||||
"patent_title",
|
patent_title
|
||||||
"patent_no",
|
patent_no
|
||||||
"patent_country",
|
patent_country
|
||||||
"authors"
|
authors
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
if params[:selectbox] !=nil
|
if !params[:selectbox].nil?
|
||||||
patents_temp = Patent.where(:is_hidden=>false).sort_by{ |tp| [-tp[:year].to_i,-tp[:publication_date].to_i] }
|
patents_temp = Patent.where(is_hidden: false).sort_by { |tp| [-tp[:year].to_i, -tp[:publication_date].to_i] }
|
||||||
case params[:selectbox]
|
case params[:selectbox]
|
||||||
when "patent_title","default"
|
when 'patent_title', 'default'
|
||||||
patents_show = patents_temp.select {|value| search_all_words((value.patent_title rescue ""), params[:keywords])}
|
patents_show = patents_temp.select { |value| search_all_words((value.patent_title rescue ''), params[:keywords]) }
|
||||||
when "publish_date", "application_date", "end_date"
|
when 'publish_date', 'application_date', 'end_date'
|
||||||
patents_show = patents_temp.select {|value| search_all_words((value.send(params[:selectbox]).strftime("%Y/%m/%d") rescue ""), params[:keywords])}
|
patents_show = patents_temp.select { |value| search_all_words((value.send(params[:selectbox]).strftime('%Y/%m/%d') rescue ''), params[:keywords]) }
|
||||||
when "patent_category"
|
when 'patent_category'
|
||||||
patents_show = patents_temp.select {|value| search_all_words((value.patent_types.collect{|pt| pt.title}.join(", ").to_s rescue ""), params[:keywords])}
|
patents_show = patents_temp.select { |value| search_all_words((value.patent_types.collect(&:title).join(', ').to_s rescue ''), params[:keywords]) }
|
||||||
when "author_type"
|
when 'author_type'
|
||||||
patents_show = patents_temp.select {|value| search_all_words(value.patent_author_types.collect{|pt| pt.title}.join(", "), params[:keywords])}
|
patents_show = patents_temp.select { |value| search_all_words(value.patent_author_types.collect(&:title).join(', '), params[:keywords]) }
|
||||||
when "language"
|
when 'language'
|
||||||
patents_show = patents_temp.select {|value| search_all_words((!value.language.nil? ? t("#{value.language}") : ""), params[:keywords])}
|
patents_show = patents_temp.select { |value| search_all_words((!value.language.nil? ? t(value.language.to_s) : ''), params[:keywords]) }
|
||||||
else
|
else
|
||||||
patents_show = patents_temp.select {|value| search_all_words((value.send(params[:selectbox]).to_s rescue ""), params[:keywords])}
|
patents_show = patents_temp.select { |value| search_all_words((value.send(params[:selectbox]).to_s rescue ''), params[:keywords]) }
|
||||||
end
|
end
|
||||||
if params[:page_no].nil?
|
page_to_show = if params[:page_no].nil?
|
||||||
page_to_show = 1
|
1
|
||||||
else
|
else
|
||||||
page_to_show = params[:page_no].to_i
|
params[:page_no].to_i
|
||||||
end
|
end
|
||||||
patents = patents_show[(page_to_show-1)*page_data_count...page_to_show*page_data_count]
|
patents = patents_show[(page_to_show - 1) * page_data_count...page_to_show * page_data_count]
|
||||||
patents_total_pages = (patents_show.length/page_data_count.to_f).ceil
|
patents_total_pages = (patents_show.length / page_data_count.to_f).ceil
|
||||||
else
|
else
|
||||||
patents_total_pages = patents.total_pages
|
patents_total_pages = patents.total_pages
|
||||||
end
|
end
|
||||||
|
@ -44,132 +44,133 @@ class PersonalPatentsController < ApplicationController
|
||||||
t = []
|
t = []
|
||||||
fields_to_show.each do |fs|
|
fields_to_show.each do |fs|
|
||||||
case fs
|
case fs
|
||||||
when "patent_title"
|
when 'patent_title'
|
||||||
t << {"value" => "<a href='#{OrbitHelper.url_to_show(patent.to_param)}' target='_blank'>" + (patent.send(fs) rescue "") + "</a>"}
|
t << { 'value' => "<a href='#{OrbitHelper.url_to_show(patent.to_param)}' target='_blank'>" + (patent.send(fs) rescue '') + '</a>' }
|
||||||
when "publish_date"
|
when 'publish_date'
|
||||||
t << {"value" => (patent.publish_date.strftime("%Y/%m/%d") rescue "")}
|
t << { 'value' => (patent.publish_date.strftime('%Y/%m/%d') rescue '') }
|
||||||
when "application_date"
|
when 'application_date'
|
||||||
t << {"value" => (patent.application_date.strftime("%Y/%m/%d") rescue "")}
|
t << { 'value' => (patent.application_date.strftime('%Y/%m/%d') rescue '') }
|
||||||
when "end_date"
|
when 'end_date'
|
||||||
t << {"value" => (patent.end_date.strftime("%Y/%m/%d") rescue "")}
|
t << { 'value' => (patent.end_date.strftime('%Y/%m/%d') rescue '') }
|
||||||
when "patent_category"
|
when 'patent_category'
|
||||||
t << {"value" => (patent.patent_types.collect{|pt| pt.title}.join(", ") rescue "")}
|
t << { 'value' => (patent.patent_types.collect(&:title).join(', ') rescue '') }
|
||||||
when "author_type"
|
when 'author_type'
|
||||||
t << {"value" => (patent.patent_author_types.collect{|pt| pt.title}.join(", ") rescue "")}
|
t << { 'value' => (patent.patent_author_types.collect(&:title).join(', ') rescue '') }
|
||||||
when "language"
|
when 'language'
|
||||||
t << {"value" => (!patent.language.nil? ? t("#{patent.language}") : "")}
|
t << { 'value' => (!patent.language.nil? ? t(patent.language.to_s) : '') }
|
||||||
else
|
else
|
||||||
t << {"value" => patent.send(fs)}
|
t << { 'value' => patent.send(fs) }
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
patent_list << {"patent_list" => t}
|
patent_list << { 'patent_list' => t }
|
||||||
end
|
end
|
||||||
choice_show = []
|
choice_show = []
|
||||||
headers = []
|
headers = []
|
||||||
fields_to_show.each do |fs|
|
fields_to_show.each do |fs|
|
||||||
col = 2
|
col = 2
|
||||||
col = 3 if fs == "patent_title"
|
col = 3 if fs == 'patent_title'
|
||||||
header = fs == "authors" ? t("users.name") : t("personal_patent.#{fs}")
|
header = fs == 'authors' ? t('users.name') : t("personal_patent.#{fs}")
|
||||||
headers << {
|
headers << {
|
||||||
"head-title" => header,
|
'head-title' => header,
|
||||||
"col" => col
|
'col' => col
|
||||||
}
|
}
|
||||||
choice_show << header
|
choice_show << header
|
||||||
end
|
end
|
||||||
choice_value = fields_to_show
|
choice_value = fields_to_show
|
||||||
choice_value.unshift("default")
|
choice_value.unshift('default')
|
||||||
choice_select=choice_value.map{|iter| iter==params[:selectbox] ? "selected" : ""}
|
choice_select = choice_value.map { |iter| iter == params[:selectbox] ? 'selected' : '' }
|
||||||
choice_select=choice_select.map{|value| {"choice_select" => value}}
|
choice_select = choice_select.map { |value| { 'choice_select' => value } }
|
||||||
choice_value=choice_value.map{|value| {"choice_value" => value}}
|
choice_value = choice_value.map { |value| { 'choice_value' => value } }
|
||||||
choice_default = t("personal_patent.select_class")
|
choice_default = t('personal_patent.select_class')
|
||||||
choice_show.unshift(choice_default)
|
choice_show.unshift(choice_default)
|
||||||
choice_show=choice_show.map{|value| {"choice_show" => value}}
|
choice_show = choice_show.map { |value| { 'choice_show' => value } }
|
||||||
choice=choice_value.zip(choice_show,choice_select)
|
choice = choice_value.zip(choice_show, choice_select)
|
||||||
choice=choice.map{|value| value.inject:merge}
|
choice = choice.map { |value| value.inject :merge }
|
||||||
select_text = t("personal_patent.search_class")
|
select_text = t('personal_patent.search_class')
|
||||||
search_text = t("personal_patent.word_to_search")
|
search_text = t('personal_patent.word_to_search')
|
||||||
{
|
{
|
||||||
"patents" => patent_list,
|
'patents' => patent_list,
|
||||||
"extras" => { "widget-title" => t("module_name.personal_patent"),
|
'extras' => { 'widget-title' => t('module_name.personal_patent'),
|
||||||
"url" => "/"+params[:locale]+params[:url],
|
'url' => '/' + params[:locale] + params[:url],
|
||||||
"select_text" => select_text,
|
'select_text' => select_text,
|
||||||
"search_text" => search_text,
|
'search_text' => search_text,
|
||||||
"search_value" => params[:keywords] },
|
'search_value' => params[:keywords] },
|
||||||
"headers" => headers,
|
'headers' => headers,
|
||||||
"total_pages" => patents_total_pages,
|
'total_pages' => patents_total_pages,
|
||||||
"choice" => choice
|
'choice' => choice
|
||||||
}
|
}
|
||||||
end
|
end
|
||||||
|
|
||||||
def show
|
def show
|
||||||
params = OrbitHelper.params
|
params = OrbitHelper.params
|
||||||
plugin = Patent.where(:is_hidden=>false).find_by(uid: params[:uid])
|
plugin = Patent.where(is_hidden: false).find_by(uid: params[:uid])
|
||||||
fields_to_show = [
|
fields_to_show = %w[
|
||||||
"patent_title",
|
patent_title
|
||||||
"patent_no",
|
patent_no
|
||||||
"patent_category",
|
patent_category
|
||||||
"patent_country",
|
patent_country
|
||||||
"progress_status",
|
progress_status
|
||||||
"author_type",
|
author_type
|
||||||
"application_date",
|
application_date
|
||||||
"publish_date",
|
publish_date
|
||||||
"end_date",
|
end_date
|
||||||
"patent_organization",
|
patent_organization
|
||||||
"year",
|
year
|
||||||
"authors",
|
authors
|
||||||
"url",
|
url
|
||||||
"language",
|
language
|
||||||
"keywords",
|
keywords
|
||||||
"note",
|
note
|
||||||
"file"
|
file
|
||||||
]
|
]
|
||||||
|
|
||||||
{"plugin_datas"=>plugin.get_plugin_data(fields_to_show)}
|
{ 'plugin_datas' => plugin.get_plugin_data(fields_to_show) }
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
||||||
def get_fields_for_index
|
def get_fields_for_index
|
||||||
@page = Page.find(params[:page_id]) rescue nil
|
@page = Page.find(params[:page_id]) rescue nil
|
||||||
@fields_to_show = [
|
@fields_to_show = %w[
|
||||||
"patent_category",
|
patent_category
|
||||||
"year",
|
year
|
||||||
"publish_date",
|
publish_date
|
||||||
"patent_title",
|
patent_title
|
||||||
"patent_no",
|
patent_no
|
||||||
"patent_organization",
|
patent_organization
|
||||||
"progress_status",
|
progress_status
|
||||||
"application_date",
|
application_date
|
||||||
"end_date",
|
end_date
|
||||||
"publish_date",
|
publish_date
|
||||||
"author_type",
|
author_type
|
||||||
"patent_country",
|
patent_country
|
||||||
"authors",
|
authors
|
||||||
"url",
|
url
|
||||||
"language",
|
language
|
||||||
"keywords",
|
keywords
|
||||||
"note"
|
note
|
||||||
]
|
]
|
||||||
@fields_to_show = @fields_to_show.map{|fs| [(fs == "authors" ? t("users.name") : t("personal_patent.#{fs}")), fs]}
|
@fields_to_show = @fields_to_show.map { |fs| [(fs == 'authors' ? t('users.name') : t("personal_patent.#{fs}")), fs] }
|
||||||
@default_fields_to_show = [
|
@default_fields_to_show = %w[
|
||||||
"publish_date",
|
publish_date
|
||||||
"patent_title",
|
patent_title
|
||||||
"patent_no",
|
patent_no
|
||||||
"patent_country",
|
patent_country
|
||||||
"authors"
|
authors
|
||||||
]
|
]
|
||||||
render :layout => false
|
render layout: false
|
||||||
end
|
end
|
||||||
|
|
||||||
def save_index_fields
|
def save_index_fields
|
||||||
page = Page.find(params[:page_id]) rescue nil
|
page = Page.find(params[:page_id]) rescue nil
|
||||||
page.custom_array_field = params[:keys]
|
page.custom_array_field = params[:keys]
|
||||||
page.save
|
page.save
|
||||||
render :json => {"success" => true}.to_json
|
render json: { 'success' => true }.to_json
|
||||||
end
|
end
|
||||||
private
|
|
||||||
def search_all_words(target,word)
|
private
|
||||||
target=target.upcase
|
|
||||||
words=word.upcase.split(' ')
|
def search_all_words(target, word)
|
||||||
return words.select{|value| target.include? value}==words
|
target = target.upcase
|
||||||
|
words = word.upcase.split(' ')
|
||||||
|
words.select { |value| target.include? value } == words
|
||||||
end
|
end
|
||||||
end
|
end
|
Loading…
Reference in New Issue