2015-04-30 13:06:18 -04:00
|
|
|
class Dashboard::ProjectsController < Dashboard::ApplicationController
|
2016-03-04 10:11:33 -05:00
|
|
|
include FilterProjects
|
|
|
|
|
2015-04-16 08:03:37 -04:00
|
|
|
before_action :event_filter
|
2015-03-09 17:12:03 -04:00
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
def index
|
2016-03-04 10:11:33 -05:00
|
|
|
@projects = current_user.authorized_projects.sorted_by_activity
|
|
|
|
@projects = filter_projects(@projects)
|
2015-09-08 09:49:20 -04:00
|
|
|
@projects = @projects.includes(:namespace)
|
2016-03-04 10:11:33 -05:00
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2016-03-09 20:58:41 -05:00
|
|
|
@projects = @projects.page(params[:page]).per(PER_PAGE)
|
2016-02-03 16:33:01 -05:00
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
@last_push = current_user.recent_push
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
format.atom do
|
|
|
|
event_filter
|
|
|
|
load_events
|
|
|
|
render layout: false
|
|
|
|
end
|
2016-02-03 16:33:01 -05:00
|
|
|
format.json do
|
|
|
|
render json: {
|
2016-02-03 18:21:14 -05:00
|
|
|
html: view_to_html_string("dashboard/projects/_projects", locals: { projects: @projects })
|
2016-02-03 16:33:01 -05:00
|
|
|
}
|
|
|
|
end
|
2015-09-08 09:49:20 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2015-03-09 17:12:03 -04:00
|
|
|
def starred
|
2016-03-03 10:00:09 -05:00
|
|
|
@projects = current_user.starred_projects.sorted_by_activity
|
2016-03-04 10:11:33 -05:00
|
|
|
@projects = filter_projects(@projects)
|
2015-03-09 17:12:03 -04:00
|
|
|
@projects = @projects.includes(:namespace, :forked_from_project, :tags)
|
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2016-03-09 20:58:41 -05:00
|
|
|
@projects = @projects.page(params[:page]).per(PER_PAGE)
|
2016-02-03 18:21:14 -05:00
|
|
|
|
2015-09-15 16:33:44 -04:00
|
|
|
@last_push = current_user.recent_push
|
2015-03-09 17:12:03 -04:00
|
|
|
@groups = []
|
|
|
|
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
|
|
|
|
format.json do
|
2016-02-03 18:21:14 -05:00
|
|
|
render json: {
|
2016-02-05 10:27:59 -05:00
|
|
|
html: view_to_html_string("dashboard/projects/_projects", locals: { projects: @projects })
|
2016-02-03 18:21:14 -05:00
|
|
|
}
|
2015-03-09 17:12:03 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def load_events
|
2016-01-25 10:56:23 -05:00
|
|
|
@events = Event.in_projects(@projects)
|
2015-03-09 17:12:03 -04:00
|
|
|
@events = @event_filter.apply_filter(@events).with_associations
|
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
end
|
|
|
|
end
|