2015-04-30 13:06:18 -04:00
|
|
|
class DashboardController < Dashboard::ApplicationController
|
2015-09-02 13:17:04 -04:00
|
|
|
before_action :load_projects, except: :activity
|
2015-08-25 08:13:04 -04:00
|
|
|
before_action :event_filter, only: :activity
|
2015-05-16 09:04:45 -04:00
|
|
|
|
2015-04-30 13:06:18 -04:00
|
|
|
respond_to :html
|
2012-11-05 13:12:26 -05:00
|
|
|
|
2013-01-27 05:56:20 -05:00
|
|
|
def show
|
2015-03-04 20:22:55 -05:00
|
|
|
@projects = @projects.includes(:namespace)
|
2012-06-12 16:13:42 -04:00
|
|
|
@last_push = current_user.recent_push
|
2012-02-29 15:38:24 -05:00
|
|
|
|
2012-06-12 16:13:42 -04:00
|
|
|
respond_to do |format|
|
2012-10-02 13:42:15 -04:00
|
|
|
format.html
|
2015-02-18 12:38:46 -05:00
|
|
|
format.atom do
|
2015-08-25 08:13:04 -04:00
|
|
|
event_filter
|
2015-02-18 12:38:46 -05:00
|
|
|
load_events
|
|
|
|
render layout: false
|
|
|
|
end
|
2012-06-12 16:13:42 -04:00
|
|
|
end
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def merge_requests
|
2014-12-24 04:04:33 -05:00
|
|
|
@merge_requests = get_merge_requests_collection
|
2015-03-12 18:37:00 -04:00
|
|
|
@merge_requests = @merge_requests.page(params[:page]).per(PER_PAGE)
|
2014-02-25 11:15:11 -05:00
|
|
|
@merge_requests = @merge_requests.preload(:author, :target_project)
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
|
|
|
|
|
|
|
def issues
|
2014-12-24 04:04:33 -05:00
|
|
|
@issues = get_issues_collection
|
2015-03-12 18:37:00 -04:00
|
|
|
@issues = @issues.page(params[:page]).per(PER_PAGE)
|
2014-02-25 10:42:22 -05:00
|
|
|
@issues = @issues.preload(:author, :project)
|
2011-12-08 15:17:53 -05:00
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
2011-10-11 16:00:00 -04:00
|
|
|
end
|
2012-11-05 13:12:26 -05:00
|
|
|
|
2015-08-25 08:13:04 -04:00
|
|
|
def activity
|
|
|
|
@last_push = current_user.recent_push
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
|
|
|
|
format.json do
|
|
|
|
load_events
|
|
|
|
pager_json("events/_events", @events.count)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-11-21 00:24:05 -05:00
|
|
|
protected
|
|
|
|
|
2013-01-27 05:34:27 -05:00
|
|
|
def load_projects
|
2013-11-29 11:10:59 -05:00
|
|
|
@projects = current_user.authorized_projects.sorted_by_activity.non_archived
|
2012-11-21 00:24:05 -05:00
|
|
|
end
|
2015-02-18 12:38:46 -05:00
|
|
|
|
|
|
|
def load_events
|
2015-09-02 13:17:04 -04:00
|
|
|
project_ids =
|
|
|
|
if params[:filter] == "starred"
|
|
|
|
current_user.starred_projects
|
|
|
|
else
|
|
|
|
current_user.authorized_projects
|
|
|
|
end.pluck(:id)
|
|
|
|
|
|
|
|
@events = Event.in_projects(project_ids)
|
2015-02-18 12:38:46 -05:00
|
|
|
@events = @event_filter.apply_filter(@events).with_associations
|
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|