2015-04-30 13:06:18 -04:00
|
|
|
class Dashboard::ProjectsController < Dashboard::ApplicationController
|
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
|
|
|
|
@projects = current_user.authorized_projects.sorted_by_activity.non_archived
|
2016-02-03 14:13:26 -05:00
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2015-09-08 09:49:20 -04:00
|
|
|
@projects = @projects.includes(:namespace)
|
2016-02-03 16:33:01 -05:00
|
|
|
|
|
|
|
terms = params['filter_projects']
|
|
|
|
|
|
|
|
if terms.present?
|
|
|
|
@projects = @projects.search(terms)
|
|
|
|
end
|
|
|
|
|
2016-02-08 20:34:54 -05:00
|
|
|
@projects = @projects.page(params[:page]).per(PER_PAGE) if terms.blank?
|
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
|
|
|
|
@projects = current_user.starred_projects
|
|
|
|
@projects = @projects.includes(:namespace, :forked_from_project, :tags)
|
|
|
|
@projects = @projects.sort(@sort = params[:sort])
|
2016-02-03 18:21:14 -05:00
|
|
|
|
|
|
|
terms = params['filter_projects']
|
|
|
|
|
|
|
|
if terms.present?
|
|
|
|
@projects = @projects.search(terms)
|
|
|
|
end
|
|
|
|
|
2016-02-08 20:34:54 -05:00
|
|
|
@projects = @projects.page(params[:page]).per(PER_PAGE) if terms.blank?
|
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
|