Fix author text bug.
This commit is contained in:
parent
ffbf29d912
commit
6c7d7ad339
|
@ -3,27 +3,42 @@ module Admin::PersonalBooksHelper
|
|||
authors_text = Nokogiri::HTML(book.authors.to_s).text
|
||||
split_text = authors_text.match(/[、,,\/]/)
|
||||
split_text = split_text.nil? ? '/' : split_text[0]
|
||||
full_authors_names = get_member(book).collect(&:name)
|
||||
if authors_text.present?
|
||||
authors_names = authors_text.split(split_text).select{|a| !(full_authors_names.include?(a.strip()))}
|
||||
full_authors_names += authors_names
|
||||
authors_names = authors_text.split(split_text)
|
||||
else
|
||||
authors_names = []
|
||||
end
|
||||
full_authors_names = get_member(book).collect do |member|
|
||||
member_name = member.name
|
||||
idx = authors_names.index{|a| a.chomp('*') == member_name}
|
||||
if idx
|
||||
member_name = authors_names[idx]
|
||||
authors_names[idx] = nil
|
||||
end
|
||||
member_name
|
||||
end
|
||||
full_authors_names += authors_names.compact
|
||||
full_authors_names.join(split_text)
|
||||
end
|
||||
def get_authors_show(book)
|
||||
authors_text = Nokogiri::HTML(book.authors.to_s).text
|
||||
split_text = authors_text.match(/[、,,\/]/)
|
||||
split_text = split_text.nil? ? '/' : split_text[0]
|
||||
full_authors_names = []
|
||||
full_authors = get_member(book).collect{|member|
|
||||
member_name = member.name
|
||||
full_authors_names << member_name
|
||||
"<a href='#{OrbitHelper.url_to_plugin_show(member.to_param,'member')}' title='#{member_name}'>#{member_name}</a>"
|
||||
}
|
||||
if authors_text.present?
|
||||
authors_names = authors_text.split(split_text).select{|a| !(full_authors_names.include?(a.strip()))}
|
||||
full_authors += authors_names
|
||||
authors_names = authors_text.split(split_text)
|
||||
else
|
||||
authors_names = []
|
||||
end
|
||||
full_authors = get_member(book).collect do |member|
|
||||
member_name = member.name
|
||||
idx = authors_names.index{|a| a.chomp('*') == member_name}
|
||||
if idx
|
||||
member_name = authors_names[idx]
|
||||
authors_names[idx] = nil
|
||||
end
|
||||
"<a href='#{OrbitHelper.url_to_plugin_show(member.to_param,'member')}' title='#{member_name}'>#{member_name}</a>"
|
||||
end
|
||||
full_authors += authors_names.compact
|
||||
full_authors.join(split_text)
|
||||
end
|
||||
def get_member(book)
|
||||
|
|
Loading…
Reference in New Issue