2011-10-08 23:36:38 +02:00
|
|
|
class DashboardController < ApplicationController
|
2012-01-14 20:44:08 +01:00
|
|
|
respond_to :html
|
2011-12-08 21:17:53 +01:00
|
|
|
|
2013-01-27 11:34:27 +01:00
|
|
|
before_filter :load_projects
|
2013-01-27 11:56:20 +01:00
|
|
|
before_filter :event_filter, only: :show
|
2012-11-05 19:12:26 +01:00
|
|
|
|
2013-01-27 11:56:20 +01:00
|
|
|
def show
|
2013-02-19 08:13:19 +01:00
|
|
|
@groups = current_user.authorized_groups.sort_by(&:human_name)
|
2012-12-04 10:18:13 +01:00
|
|
|
@has_authorized_projects = @projects.count > 0
|
2013-01-25 14:51:45 +01:00
|
|
|
@teams = current_user.authorized_teams
|
2013-01-27 11:34:27 +01:00
|
|
|
@projects_count = @projects.count
|
|
|
|
@projects = @projects.limit(20)
|
2012-11-29 16:17:01 +01:00
|
|
|
|
2013-01-02 18:00:00 +01:00
|
|
|
@events = Event.in_projects(current_user.authorized_projects.pluck(:id))
|
2012-11-05 19:12:26 +01:00
|
|
|
@events = @event_filter.apply_filter(@events)
|
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
|
2012-06-12 22:13:42 +02:00
|
|
|
@last_push = current_user.recent_push
|
2012-02-29 21:38:24 +01:00
|
|
|
|
2012-06-12 22:13:42 +02:00
|
|
|
respond_to do |format|
|
2012-10-02 19:42:15 +02:00
|
|
|
format.html
|
2012-07-21 09:23:05 +02:00
|
|
|
format.js
|
2012-08-11 00:07:50 +02:00
|
|
|
format.atom { render layout: false }
|
2012-06-12 22:13:42 +02:00
|
|
|
end
|
2011-12-08 21:17:53 +01:00
|
|
|
end
|
|
|
|
|
2013-01-27 11:34:27 +01:00
|
|
|
def projects
|
|
|
|
@projects = case params[:scope]
|
|
|
|
when 'personal' then
|
|
|
|
@projects.personal(current_user)
|
|
|
|
when 'joined' then
|
|
|
|
@projects.joined(current_user)
|
|
|
|
else
|
|
|
|
@projects
|
|
|
|
end
|
|
|
|
|
|
|
|
@projects = @projects.page(params[:page]).per(30)
|
|
|
|
end
|
|
|
|
|
2011-12-15 08:22:24 +01:00
|
|
|
# Get authored or assigned open merge requests
|
2011-12-08 21:17:53 +01:00
|
|
|
def merge_requests
|
2012-11-21 06:24:05 +01:00
|
|
|
@merge_requests = current_user.cared_merge_requests
|
2013-01-07 19:48:57 +01:00
|
|
|
@merge_requests = FilterContext.new(@merge_requests, params).execute
|
2012-11-21 06:24:05 +01:00
|
|
|
@merge_requests = @merge_requests.recent.page(params[:page]).per(20)
|
2011-12-08 21:17:53 +01:00
|
|
|
end
|
|
|
|
|
2011-12-15 08:22:24 +01:00
|
|
|
# Get only assigned issues
|
2011-12-08 21:17:53 +01:00
|
|
|
def issues
|
2012-11-21 06:24:05 +01:00
|
|
|
@issues = current_user.assigned_issues
|
2013-01-07 19:48:57 +01:00
|
|
|
@issues = FilterContext.new(@issues, params).execute
|
2012-11-21 06:24:05 +01:00
|
|
|
@issues = @issues.recent.page(params[:page]).per(20)
|
2011-12-08 21:17:53 +01:00
|
|
|
@issues = @issues.includes(:author, :project)
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2012-08-11 00:07:50 +02:00
|
|
|
format.atom { render layout: false }
|
2011-12-08 21:17:53 +01:00
|
|
|
end
|
2011-10-11 22:00:00 +02:00
|
|
|
end
|
2012-11-05 19:12:26 +01:00
|
|
|
|
2012-11-21 06:24:05 +01:00
|
|
|
protected
|
|
|
|
|
2013-01-27 11:34:27 +01:00
|
|
|
def load_projects
|
2012-11-29 16:17:01 +01:00
|
|
|
@projects = current_user.authorized_projects.sorted_by_activity
|
2012-11-21 06:24:05 +01:00
|
|
|
end
|
|
|
|
|
2012-11-05 19:12:26 +01:00
|
|
|
def event_filter
|
2012-12-03 01:29:07 +01:00
|
|
|
filters = cookies['event_filter'].split(',') if cookies['event_filter']
|
|
|
|
@event_filter ||= EventFilter.new(filters)
|
2012-11-05 19:12:26 +01:00
|
|
|
end
|
2011-10-08 23:36:38 +02:00
|
|
|
end
|