2011-10-08 17:36:38 -04:00
|
|
|
class DashboardController < ApplicationController
|
2012-01-14 14:44:08 -05:00
|
|
|
respond_to :html
|
2011-12-08 15:17:53 -05:00
|
|
|
|
2012-11-21 00:24:05 -05:00
|
|
|
before_filter :projects
|
2012-11-05 13:12:26 -05:00
|
|
|
before_filter :event_filter, only: :index
|
|
|
|
|
2011-10-11 16:00:00 -04:00
|
|
|
def index
|
2012-11-29 10:17:01 -05:00
|
|
|
@groups = current_user.authorized_groups
|
|
|
|
|
2012-12-04 04:18:13 -05:00
|
|
|
@has_authorized_projects = @projects.count > 0
|
|
|
|
|
2012-11-29 22:14:05 -05:00
|
|
|
@projects = case params[:scope]
|
|
|
|
when 'personal' then
|
|
|
|
@projects.personal(current_user)
|
|
|
|
when 'joined' then
|
|
|
|
@projects.joined(current_user)
|
|
|
|
else
|
|
|
|
@projects
|
|
|
|
end
|
|
|
|
|
2012-10-17 15:02:52 -04:00
|
|
|
@projects = @projects.page(params[:page]).per(30)
|
2012-11-29 10:17:01 -05:00
|
|
|
|
2013-01-02 12:00:00 -05:00
|
|
|
@events = Event.in_projects(current_user.authorized_projects.pluck(:id))
|
2012-11-05 13:12:26 -05:00
|
|
|
@events = @event_filter.apply_filter(@events)
|
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
|
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
|
2012-07-21 03:23:05 -04:00
|
|
|
format.js
|
2012-08-10 18:07:50 -04:00
|
|
|
format.atom { render layout: false }
|
2012-06-12 16:13:42 -04:00
|
|
|
end
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
|
|
|
|
2011-12-15 02:22:24 -05:00
|
|
|
# Get authored or assigned open merge requests
|
2011-12-08 15:17:53 -05:00
|
|
|
def merge_requests
|
2012-11-21 00:24:05 -05:00
|
|
|
@merge_requests = current_user.cared_merge_requests
|
|
|
|
@merge_requests = dashboard_filter(@merge_requests)
|
|
|
|
@merge_requests = @merge_requests.recent.page(params[:page]).per(20)
|
2011-12-08 15:17:53 -05:00
|
|
|
end
|
|
|
|
|
2011-12-15 02:22:24 -05:00
|
|
|
# Get only assigned issues
|
2011-12-08 15:17:53 -05:00
|
|
|
def issues
|
2012-11-21 00:24:05 -05:00
|
|
|
@issues = current_user.assigned_issues
|
|
|
|
@issues = dashboard_filter(@issues)
|
|
|
|
@issues = @issues.recent.page(params[:page]).per(20)
|
2011-12-08 15:17:53 -05:00
|
|
|
@issues = @issues.includes(:author, :project)
|
|
|
|
|
|
|
|
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
|
|
|
|
2012-11-21 00:24:05 -05:00
|
|
|
protected
|
|
|
|
|
|
|
|
def projects
|
2012-11-29 10:17:01 -05:00
|
|
|
@projects = current_user.authorized_projects.sorted_by_activity
|
2012-11-21 00:24:05 -05:00
|
|
|
end
|
|
|
|
|
2012-11-05 13:12:26 -05:00
|
|
|
def event_filter
|
|
|
|
@event_filter ||= EventFilter.new(params[:event_filter])
|
|
|
|
end
|
2012-11-21 00:24:05 -05:00
|
|
|
|
|
|
|
def dashboard_filter items
|
|
|
|
if params[:project_id]
|
|
|
|
items = items.where(project_id: params[:project_id])
|
|
|
|
end
|
|
|
|
|
|
|
|
if params[:search].present?
|
|
|
|
items = items.search(params[:search])
|
|
|
|
end
|
|
|
|
|
|
|
|
case params[:status]
|
|
|
|
when 'closed'
|
|
|
|
items.closed
|
|
|
|
when 'all'
|
|
|
|
items
|
|
|
|
else
|
|
|
|
items.opened
|
|
|
|
end
|
|
|
|
end
|
2011-10-08 17:36:38 -04:00
|
|
|
end
|