2015-04-30 13:06:18 -04:00
|
|
|
class Dashboard::ProjectsController < Dashboard::ApplicationController
|
2016-03-04 10:11:33 -05:00
|
|
|
include FilterProjects
|
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
def index
|
2017-02-13 09:19:03 -05:00
|
|
|
@projects = load_projects(current_user.authorized_projects)
|
2016-03-04 10:11:33 -05:00
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2016-03-19 17:37:54 -04:00
|
|
|
@projects = @projects.page(params[:page])
|
2016-02-03 16:33:01 -05:00
|
|
|
|
2015-09-08 09:49:20 -04:00
|
|
|
respond_to do |format|
|
2017-02-02 18:16:23 -05:00
|
|
|
format.html { @last_push = current_user.recent_push }
|
2015-09-08 09:49:20 -04:00
|
|
|
format.atom do
|
|
|
|
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
|
2017-02-13 09:19:03 -05:00
|
|
|
@projects = load_projects(current_user.viewable_starred_projects)
|
|
|
|
@projects = @projects.includes(:forked_from_project, :tags)
|
2015-03-09 17:12:03 -04:00
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2016-03-19 17:37:54 -04:00
|
|
|
@projects = @projects.page(params[: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
|
|
|
|
|
2017-02-13 09:19:03 -05:00
|
|
|
def load_projects(base_scope)
|
|
|
|
projects = base_scope.sorted_by_activity.includes(:namespace)
|
|
|
|
|
|
|
|
filter_projects(projects)
|
|
|
|
end
|
|
|
|
|
2015-03-09 17:12:03 -04:00
|
|
|
def load_events
|
2017-02-13 09:19:03 -05:00
|
|
|
@events = Event.in_projects(load_projects(current_user.authorized_projects))
|
|
|
|
@events = event_filter.apply_filter(@events).with_associations
|
2015-03-09 17:12:03 -04:00
|
|
|
@events = @events.limit(20).offset(params[:offset] || 0)
|
|
|
|
end
|
|
|
|
end
|