2022-03-26 10:42:49 -07:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2014-12-09 13:35:11 -08:00
|
|
|
class NotificationsController < ApplicationController
|
2020-04-18 16:45:50 -07:00
|
|
|
before_action :authenticate_user!
|
2014-12-12 08:54:13 -08:00
|
|
|
|
2022-03-26 04:18:38 -07:00
|
|
|
TYPE_MAPPINGS = {
|
2022-07-21 07:30:04 -07:00
|
|
|
"answer" => Notification::QuestionAnswered.name,
|
|
|
|
"comment" => Notification::Commented.name,
|
|
|
|
"commentsmile" => Notification::CommentSmiled.name,
|
|
|
|
"relationship" => Notification::StartedFollowing.name,
|
2022-07-21 07:56:05 -07:00
|
|
|
"smile" => Notification::Smiled.name
|
2022-03-26 04:18:38 -07:00
|
|
|
}.freeze
|
|
|
|
|
2014-12-09 13:35:11 -08:00
|
|
|
def index
|
2022-03-26 04:18:38 -07:00
|
|
|
@type = TYPE_MAPPINGS[params[:type]] || params[:type]
|
2020-04-20 14:03:57 -07:00
|
|
|
@notifications = cursored_notifications_for(type: @type, last_id: params[:last_id])
|
|
|
|
@notifications_last_id = @notifications.map(&:id).min
|
|
|
|
@more_data_available = !cursored_notifications_for(type: @type, last_id: @notifications_last_id, size: 1).count.zero?
|
|
|
|
|
2015-01-08 09:22:27 -08:00
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
2022-09-08 14:30:21 -07:00
|
|
|
format.turbo_stream { render layout: false, status: :see_other }
|
2015-01-08 09:22:27 -08:00
|
|
|
end
|
2014-12-09 13:35:11 -08:00
|
|
|
end
|
2020-04-20 14:03:57 -07:00
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def cursored_notifications_for(type:, last_id:, size: nil)
|
|
|
|
cursor_params = { last_id: last_id, size: size }.compact
|
|
|
|
|
|
|
|
case type
|
2022-03-26 10:42:49 -07:00
|
|
|
when "all"
|
2020-04-20 14:03:57 -07:00
|
|
|
Notification.cursored_for(current_user, **cursor_params)
|
2022-03-26 10:42:49 -07:00
|
|
|
when "new"
|
2020-04-20 14:03:57 -07:00
|
|
|
Notification.cursored_for(current_user, new: true, **cursor_params)
|
|
|
|
else
|
|
|
|
Notification.cursored_for_type(current_user, type, **cursor_params)
|
|
|
|
end
|
|
|
|
end
|
2014-12-09 13:35:11 -08:00
|
|
|
end
|