|
|
|
@ -37,15 +37,24 @@ module StoresHelper
|
|
|
|
|
|
|
|
|
|
WORD_LIMIT = 100
|
|
|
|
|
def come_from_local attachment
|
|
|
|
|
|
|
|
|
|
container = attachment.container
|
|
|
|
|
case container.class.to_s
|
|
|
|
|
when 'Message'
|
|
|
|
|
# binding.pry
|
|
|
|
|
# '项目 > zzz > 论坛 > 帖子xxx'
|
|
|
|
|
# topic_str = container.project.project_type == 0 ? l(:label_board) : l(:label_new_course)
|
|
|
|
|
topic_list = link_to l(:label_board), project_boards_path(container.project)
|
|
|
|
|
topic_item = link_to container.subject.truncate(WORD_LIMIT, omission: '...'), board_message_path(container.board, container), title: container.subject
|
|
|
|
|
project_link(container.project).push(topic_list, topic_item)
|
|
|
|
|
|
|
|
|
|
course = container.course
|
|
|
|
|
project = container.project
|
|
|
|
|
if course.nil? # container is belongs to Project
|
|
|
|
|
topic_list = link_to l(:label_board), project_boards_path(container.project)
|
|
|
|
|
topic_item = link_to container.subject.truncate(WORD_LIMIT, omission: '...'), board_message_path(container.board, container), title: container.subject
|
|
|
|
|
project_link(container.project).push(topic_list, topic_item)
|
|
|
|
|
else # container is belongs to Course
|
|
|
|
|
topic_list = link_to l(:label_course_news), course_boards_path(course)
|
|
|
|
|
topic_item = link_to container.try(:subject).to_s.truncate(WORD_LIMIT, omission: '...'), board_message_path(container.board, container), title: container.subject
|
|
|
|
|
project_link(course).push(topic_list, topic_item)
|
|
|
|
|
end
|
|
|
|
|
when 'Issue'
|
|
|
|
|
# '项目 > zzz > 缺陷 > 问题xxx'
|
|
|
|
|
issue_list = link_to l(:label_project_issues), project_issues_path(container.project)
|
|
|
|
@ -58,15 +67,26 @@ module StoresHelper
|
|
|
|
|
project_link(container.project).push(doc_list, doc_item)
|
|
|
|
|
when 'News'
|
|
|
|
|
# '课程 > zzz > 新闻 > 新闻xxx'
|
|
|
|
|
news_str = container.project.project_type == 0 ? l(:label_news) : l(:label_course_news)
|
|
|
|
|
news_list = link_to news_str, project_news_index_path(container.project)
|
|
|
|
|
news_item = link_to container.title.truncate(WORD_LIMIT, omission: '...'), news_path(container), title: container.title
|
|
|
|
|
project_link(container.project).push(news_list, news_item)
|
|
|
|
|
course = container.course
|
|
|
|
|
project = container.project
|
|
|
|
|
if course.nil? # container is belongs to Project
|
|
|
|
|
news_list = link_to l(:label_news), project_news_index_path(container.project)
|
|
|
|
|
news_item = link_to container.title.truncate(WORD_LIMIT, omission: '...'), news_path(container), title: container.title
|
|
|
|
|
project_link(container.project).push(news_list, news_item)
|
|
|
|
|
else # container is belongs to Course
|
|
|
|
|
news_list = link_to l(:label_course_news), course_news_index_path(course)
|
|
|
|
|
news_item = link_to container.title.truncate(WORD_LIMIT, omission: '...'), news_path(container), title: container.title
|
|
|
|
|
project_link(course).push(news_list, news_item)
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
when 'Project'
|
|
|
|
|
# '项目 > zzz '
|
|
|
|
|
file_str = container.project.project_type == 0 ? l(:project_module_files) : l(:label_course_file)
|
|
|
|
|
files_list = link_to file_str, project_files_path(container.project)
|
|
|
|
|
project_link(container).push(files_list)
|
|
|
|
|
when 'Course'
|
|
|
|
|
files_list = link_to l(:label_course_file), course_files_path(container)
|
|
|
|
|
project_link(container).push(files_list)
|
|
|
|
|
when 'Version'
|
|
|
|
|
# '项目 > zzz > 里程碑 > xxx'
|
|
|
|
|
ver_list = link_to l(:label_roadmap), project_roadmap_path(container.project)
|
|
|
|
@ -91,7 +111,8 @@ module StoresHelper
|
|
|
|
|
# '竞赛 > xxx '
|
|
|
|
|
bid_link(container)
|
|
|
|
|
else
|
|
|
|
|
Rails.logger.error "ERROR: attachment type unkown"
|
|
|
|
|
Rails.logger.error "ERROR: attachment type unkown. file:#{__FILE__}, line:#{__LINE__}"
|
|
|
|
|
Rails.logger.error "#{container.class.to_s}"
|
|
|
|
|
[link_to('unkown', '')]
|
|
|
|
|
end
|
|
|
|
|
rescue ActionController::RoutingError => e
|
|
|
|
@ -99,20 +120,6 @@ module StoresHelper
|
|
|
|
|
[link_to('unkown', '')]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def project_link project
|
|
|
|
|
if project.nil?
|
|
|
|
|
Rails.logger.error "ERROR: attachment type unkown #project_link project.nil?"
|
|
|
|
|
return [link_to('unkown', '')]
|
|
|
|
|
end
|
|
|
|
|
project_list = nil
|
|
|
|
|
if project.project_type == 0
|
|
|
|
|
project_list = link_to l(:label_project_plural), projects_path
|
|
|
|
|
else
|
|
|
|
|
project_list = link_to l(:label_new_course), course_path
|
|
|
|
|
end
|
|
|
|
|
project_item = link_to project.to_s, project_path(project)
|
|
|
|
|
[project_list, project_item]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
def bid_link bid
|
|
|
|
|
bid_list = nil
|
|
|
|
@ -129,7 +136,7 @@ module StoresHelper
|
|
|
|
|
Rails.logger.error "ERROR: attachment type unkown #bid_link/when 3"
|
|
|
|
|
return [link_to('unkown', '#')]
|
|
|
|
|
end
|
|
|
|
|
bid_list = link_to l(:label_homework), project_homework_path(bid.courses.first)
|
|
|
|
|
bid_list = link_to l(:label_homework), homework_course_path(bid.courses.first)
|
|
|
|
|
bid_item = link_to bid.name, respond_path(bid)
|
|
|
|
|
return project_link(bid.courses.first).push(bid_list, bid_item)
|
|
|
|
|
else
|
|
|
|
@ -137,4 +144,28 @@ module StoresHelper
|
|
|
|
|
end
|
|
|
|
|
[bid_list, bid_item]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
def project_link project
|
|
|
|
|
if project.nil?
|
|
|
|
|
Rails.logger.error "ERROR: attachment type unkown #project_link project.nil? file: #{__FILE__}, line: #{__LINE__}"
|
|
|
|
|
return [link_to('unkown', '')]
|
|
|
|
|
end
|
|
|
|
|
project_list = nil
|
|
|
|
|
klass = project.class.to_s
|
|
|
|
|
case klass
|
|
|
|
|
when "Project"
|
|
|
|
|
project_list = link_to l(:label_project_plural), projects_path
|
|
|
|
|
project_item = link_to project.to_s, project_path(project)
|
|
|
|
|
[project_list, project_item]
|
|
|
|
|
when "Course"
|
|
|
|
|
course_list = link_to l(:label_new_course), courses_path
|
|
|
|
|
course_item = link_to project.name, course_path(project)
|
|
|
|
|
[course_list, course_item]
|
|
|
|
|
else
|
|
|
|
|
Rails.logger.error "[StoresHelper]: #{klass} ======================================="
|
|
|
|
|
[]
|
|
|
|
|
end
|
|
|
|
|
|
|
|
|
|
end
|
|
|
|
|
end
|
|
|
|
|