links/app/controllers/web_resources_controller.rb

58 lines
1.4 KiB
Ruby
Raw Normal View History

2014-05-05 11:33:35 +00:00
class WebResourcesController < ApplicationController
def index
2014-12-01 06:28:46 +00:00
links = WebLink.where(:title.ne => "").can_display.filter_by_categories
2014-05-05 11:33:35 +00:00
web_link = links.collect do |link|
2014-06-18 10:07:48 +00:00
statuses = link.statuses_with_classname.collect do |status|
{
2014-06-18 10:07:48 +00:00
"status" => status["name"],
"status-class" => "status-#{status['classname']}"
}
end
2015-01-07 02:53:01 +00:00
if link.link_open == "new_window"
target = "_blank"
elsif link.link_open == "local"
target = "_self"
end
2014-05-05 11:33:35 +00:00
{
"title" => link.title,
"context" => link.context,
"statuses" => statuses,
2015-01-07 02:53:01 +00:00
"link_to_show" => link.url,
"target" => target
2014-05-05 11:33:35 +00:00
}
end
{
2014-05-26 03:05:29 +00:00
"web_link" => web_link,
2014-08-08 08:32:09 +00:00
"extras" => {
"widget-title"=>t(:web_resource)
},
"total_pages" => links.total_pages
2014-12-01 06:28:46 +00:00
}
2014-05-05 11:33:35 +00:00
end
def widget
2014-12-01 06:28:46 +00:00
links = WebLink.where(:title.ne => "").can_display.filter_by_widget_categories
2014-05-05 11:33:35 +00:00
web_link = links.collect do |link|
2014-06-18 10:07:48 +00:00
statuses = link.statuses_with_classname.collect do |status|
2014-06-06 09:45:39 +00:00
{
2014-06-18 10:07:48 +00:00
"status" => status["name"],
"status-class" => "status-#{status['classname']}"
2014-06-06 09:45:39 +00:00
}
end
2014-05-05 11:33:35 +00:00
{
"title" => link.title,
2014-06-06 09:45:39 +00:00
"context" => link.context,
"statuses" => statuses,
2014-05-05 11:33:35 +00:00
"link_to_show" => link.url
}
end
{
2014-05-26 03:05:29 +00:00
"web_link" => web_link,
"extras" => {"widget-title"=>t(:web_resource),"more_url" => OrbitHelper.widget_more_url}
2014-12-01 06:28:46 +00:00
}
2014-05-05 11:33:35 +00:00
end
2014-12-01 06:28:46 +00:00
2014-05-05 11:33:35 +00:00
end