Update personal_books_controller.rb

fix coding style
This commit is contained in:
chiu 2019-08-20 12:17:59 +08:00
parent ea1be9befa
commit 8a8fe31ec3
1 changed files with 134 additions and 130 deletions

View File

@ -2,57 +2,59 @@ class PersonalBooksController < 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
books = Book.where(:is_hidden=>false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(page_data_count) books = Book.where(is_hidden: false).sort_for_frontend.page(OrbitHelper.params[:page_no]).per(page_data_count)
page = Page.where(:page_id => params[:page_id]).first rescue nil page = Page.where(page_id: params[:page_id]).first rescue nil
if page.custom_string_field == "table" if page.custom_string_field == 'table'
fields_to_show = page.custom_array_field rescue [] fields_to_show = page.custom_array_field rescue []
fields_to_show = [ if fields_to_show.blank?
"authors", fields_to_show = %w[
"book_title", authors
"extracted_chapters", book_title
"publisher", extracted_chapters
"isbn", publisher
"publish_date" isbn
] if fields_to_show.blank? publish_date
]
end
else else
fields_to_show = [ fields_to_show = %w[
"year", year
"book_title" book_title
] ]
end end
if params[:selectbox] !=nil if !params[:selectbox].nil?
books_temp = Book.where(:is_hidden=>false).sort_by{ |tp| [-tp[:year].to_i,-tp[:publication_date].to_i] } books_temp = Book.where(is_hidden: false).sort_by { |tp| [-tp[:year].to_i, -tp[:publication_date].to_i] }
case params[:selectbox] case params[:selectbox]
when "book_title", "extracted_chapters", "default" when 'book_title', 'extracted_chapters', 'default'
if params[:selectbox] == "default" search_temp = if params[:selectbox] == 'default'
search_temp = "book_title" 'book_title'
else
params[:selectbox]
end
if page.custom_string_field == 'table'
books_show = books_temp.select { |value| search_all_words(value.send(search_temp), params[:keywords]) }
else else
search_temp = params[:selectbox] books_show = books_temp.select { |value| search_all_words(value.create_link, params[:keywords]) }
end end
if page.custom_string_field == "table" when 'publish_date', 'publication_date'
books_show = books_temp.select {|value| search_all_words(value.send(search_temp), params[:keywords])} books_show = books_temp.select { |value| search_all_words((value.send(params[:selectbox]).strftime('%Y/%m/%d') rescue ''), params[:keywords]) }
else when 'author_type'
books_show = books_temp.select {|value| search_all_words(value.create_link, params[:keywords])} books_show = books_temp.select { |value| search_all_words(value.book_author_types.collect(&:title).join(', '), params[:keywords]) }
end when 'book_paper_type'
when "publish_date", "publication_date" books_show = books_temp.select { |value| search_all_words((value.book_type.title rescue ''), params[:keywords]) }
books_show = books_temp.select {|value| search_all_words((value.send(params[:selectbox]).strftime("%Y/%m/%d") rescue ""), params[:keywords])} when 'language'
when "author_type" books_show = books_temp.select { |value| search_all_words((!value.language.nil? ? t(value.language.to_s) : ''), params[:keywords]) }
books_show = books_temp.select {|value| search_all_words(value.book_author_types.collect{|bat| bat.title}.join(", "), params[:keywords])}
when "book_paper_type"
books_show = books_temp.select {|value| search_all_words((value.book_type.title rescue ""), params[:keywords])}
when "language"
books_show = books_temp.select {|value| search_all_words((!value.language.nil? ? t("#{value.language}") : ""), params[:keywords])}
else else
books_show = books_temp.select {|value| search_all_words(value.send(params[:selectbox]).to_s, params[:keywords])} books_show = books_temp.select { |value| search_all_words(value.send(params[:selectbox]).to_s, 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
books = books_show[(page_to_show-1)*page_data_count...page_to_show*page_data_count] books = books_show[(page_to_show - 1) * page_data_count...page_to_show * page_data_count]
books_total_pages = (books_show.length/page_data_count.to_f).ceil books_total_pages = (books_show.length / page_data_count.to_f).ceil
else else
books_total_pages = books.total_pages books_total_pages = books.total_pages
end end
@ -61,128 +63,130 @@ class PersonalBooksController < ApplicationController
t = [] t = []
fields_to_show.each do |fs| fields_to_show.each do |fs|
case fs case fs
when "book_title", "extracted_chapters" when 'book_title', 'extracted_chapters'
if page.custom_string_field == "table" t << if page.custom_string_field == 'table'
t << {"value" => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.send(fs)}</a>"} { 'value' => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.send(fs)}</a>" }
else else
t << {"value" => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.create_link}</a>"} { 'value' => "<a href='#{OrbitHelper.url_to_show(book.to_param)}'>#{book.create_link}</a>" }
end end
when "publish_date", "publication_date" when 'publish_date', 'publication_date'
t << {"value" => (!book.send(fs).nil? ? book.send(fs).strftime('%Y/%m') : "" rescue "")} t << { 'value' => (!book.send(fs).nil? ? book.send(fs).strftime('%Y/%m') : '' rescue '') }
when "author_type" when 'author_type'
t << {"value" => (book.book_author_types.collect{|bat| bat.title}.join(", ") rescue "")} t << { 'value' => (book.book_author_types.collect(&:title).join(', ') rescue '') }
when "language" when 'language'
t << {"value" => (!book.language.nil? ? t("#{book.language}") : "")} t << { 'value' => (!book.language.nil? ? t(book.language.to_s) : '') }
when "book_paper_type" when 'book_paper_type'
t << {"value" => (book.book_type.title rescue "")} t << { 'value' => (book.book_type.title rescue '') }
else else
t << {"value" => (book.send(fs) rescue "")} t << { 'value' => (book.send(fs) rescue '') }
end end
end end
book_list << {"books" => t} book_list << { 'books' => 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 == "paper_title" col = 3 if fs == 'paper_title'
headers << { headers << {
"head-title" => t("personal_book.#{fs}"), 'head-title' => t("personal_book.#{fs}"),
"col" => col 'col' => col
} }
choice_show << t("personal_book.#{fs}") choice_show << t("personal_book.#{fs}")
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_book.select_class") choice_default = t('personal_book.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_book.search_class") select_text = t('personal_book.search_class')
search_text = t("personal_book.word_to_search") search_text = t('personal_book.word_to_search')
{ {
"book_list" => book_list, 'book_list' => book_list,
"extras" => {"widget-title" => t("module_name.book"), 'extras' => { 'widget-title' => t('module_name.book'),
"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" => books_total_pages, 'total_pages' => books_total_pages,
"choice" => choice 'choice' => choice
} }
end end
def show def show
params = OrbitHelper.params params = OrbitHelper.params
plugin = Book.where(:is_hidden=>false).find_by(uid: params[:uid]) plugin = Book.where(is_hidden: false).find_by(uid: params[:uid])
fields_to_show = [ fields_to_show = %w[
"year", year
"book_title", book_title
"authors", authors
"book_paper_type", book_paper_type
"extracted_chapters", extracted_chapters
"publisher", publisher
"publish_date", publish_date
"pages", pages
"editor", editor
"author_type", author_type
"number_of_authors", number_of_authors
"isbn", isbn
"url", url
"file", file
"publication_date", publication_date
"language" language
] ]
{"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[
"year", year
"book_title", book_title
"authors", authors
"book_paper_type", book_paper_type
"extracted_chapters", extracted_chapters
"publisher", publisher
"publish_date", publish_date
"pages", pages
"editor", editor
"author_type", author_type
"number_of_authors", number_of_authors
"isbn", isbn
"url", url
"publication_date", publication_date
"language" language
] ]
@fields_to_show = @fields_to_show.map{|fs| [t("personal_book.#{fs}"), fs]} @fields_to_show = @fields_to_show.map { |fs| [t("personal_book.#{fs}"), fs] }
@default_fields_to_show = [ @default_fields_to_show = %w[
"authors", authors
"book_title", book_title
"extracted_chapters", extracted_chapters
"publisher", publisher
"isbn", isbn
"publish_date" publish_date
] ]
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