Module: ActivityNotification::ViewHelpers
- Defined in:
- lib/activity_notification/helpers/view_helpers.rb
Overview
Provides a shortcut from views to the rendering method. Module extending ActionView::Base and adding ‘render_notification` helper.
Instance Method Summary collapse
-
#move_notification_path_for(notification, params = {}) ⇒ String
Returns move_notification_path for the target of specified notification.
-
#move_notification_url_for(notification, params = {}) ⇒ String
Returns move_notification_url for the target of specified notification.
-
#notification_path_for(notification, params = {}) ⇒ String
Returns notification_path for the notification.
-
#notification_url_for(notification, params = {}) ⇒ String
Returns notification_url for the target of specified notification.
-
#notifications_path_for(target, params = {}) ⇒ String
Returns notifications_path for the target.
-
#notifications_url_for(target, params = {}) ⇒ String
Returns notifications_url for the target.
-
#open_all_notifications_path_for(target, params = {}) ⇒ String
Returns open_all_notifications_path for the target.
-
#open_all_notifications_url_for(target, params = {}) ⇒ String
Returns open_all_notifications_url for the target of specified notification.
-
#open_notification_path_for(notification, params = {}) ⇒ String
Returns open_notification_path for the target of specified notification.
-
#open_notification_url_for(notification, params = {}) ⇒ String
Returns open_notification_url for the target of specified notification.
-
#render_notification(notifications, options = {}) ⇒ String
(also: #render_notifications)
View helper for rendering an notification, calls Notification#render internally.
-
#render_notification_of(target, options = {}) ⇒ String
(also: #render_notifications_of)
View helper for rendering on notifications of the target to embedded partial template.
-
#subscribe_subscription_path_for(subscription, params = {}) ⇒ String
(also: #subscribe_path_for)
Returns subscribe_subscription_path for the target of specified subscription.
-
#subscribe_subscription_url_for(subscription, params = {}) ⇒ String
(also: #subscribe_url_for)
Returns subscribe_subscription_url for the target of specified subscription.
-
#subscribe_to_email_subscription_path_for(subscription, params = {}) ⇒ String
(also: #subscribe_to_email_path_for)
Returns subscribe_to_email_subscription_path for the target of specified subscription.
-
#subscribe_to_email_subscription_url_for(subscription, params = {}) ⇒ String
(also: #subscribe_to_email_url_for)
Returns subscribe_to_email_subscription_url for the target of specified subscription.
-
#subscribe_to_optional_target_subscription_path_for(subscription, params = {}) ⇒ String
(also: #subscribe_to_optional_target_path_for)
Returns subscribe_to_optional_target_subscription_path for the target of specified subscription.
-
#subscribe_to_optional_target_subscription_url_for(subscription, params = {}) ⇒ String
(also: #subscribe_to_optional_target_url_for)
Returns subscribe_to_optional_target_subscription_url for the target of specified subscription.
-
#subscription_path_for(subscription, params = {}) ⇒ String
Returns subscription_path for the subscription.
-
#subscription_url_for(subscription, params = {}) ⇒ String
Returns subscription_url for the subscription.
-
#subscriptions_path_for(target, params = {}) ⇒ String
Returns subscriptions_path for the target.
-
#subscriptions_url_for(target, params = {}) ⇒ String
Returns subscriptions_url for the target.
-
#unsubscribe_subscription_path_for(subscription, params = {}) ⇒ String
(also: #unsubscribe_path_for)
Returns unsubscribe_subscription_path for the target of specified subscription.
-
#unsubscribe_subscription_url_for(subscription, params = {}) ⇒ String
(also: #unsubscribe_url_for)
Returns unsubscribe_subscription_url for the target of specified subscription.
-
#unsubscribe_to_email_subscription_path_for(subscription, params = {}) ⇒ String
(also: #unsubscribe_to_email_path_for)
Returns unsubscribe_to_email_subscription_path for the target of specified subscription.
-
#unsubscribe_to_email_subscription_url_for(subscription, params = {}) ⇒ String
(also: #unsubscribe_to_email_url_for)
Returns unsubscribe_to_email_subscription_url for the target of specified subscription.
-
#unsubscribe_to_optional_target_subscription_path_for(subscription, params = {}) ⇒ String
(also: #unsubscribe_to_optional_target_path_for)
Returns unsubscribe_to_optional_target_subscription_path for the target of specified subscription.
-
#unsubscribe_to_optional_target_subscription_url_for(subscription, params = {}) ⇒ String
(also: #unsubscribe_to_optional_target_url_for)
Returns unsubscribe_to_optional_target_subscription_url for the target of specified subscription.
Instance Method Details
#move_notification_path_for(notification, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns move_notification_path for the target of specified notification
113 114 115 116 117 118 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 113 def move_notification_path_for(notification, params = {}) = params.dup .delete(:devise_default_routes) ? send("move_#{routing_scope()}notification_path", notification, ) : send("move_#{routing_scope()}#{notification.target.to_resource_name}_notification_path", notification.target, notification, ) end |
#move_notification_url_for(notification, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns move_notification_url for the target of specified notification
183 184 185 186 187 188 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 183 def move_notification_url_for(notification, params = {}) = params.dup .delete(:devise_default_routes) ? send("move_#{routing_scope()}notification_url", notification, ) : send("move_#{routing_scope()}#{notification.target.to_resource_name}_notification_url", notification.target, notification, ) end |
#notification_path_for(notification, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns notification_path for the notification
99 100 101 102 103 104 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 99 def notification_path_for(notification, params = {}) = params.dup .delete(:devise_default_routes) ? send("#{routing_scope()}notification_path", notification, ) : send("#{routing_scope()}#{notification.target.to_resource_name}_notification_path", notification.target, notification, ) end |
#notification_url_for(notification, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns notification_url for the target of specified notification
169 170 171 172 173 174 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 169 def notification_url_for(notification, params = {}) = params.dup .delete(:devise_default_routes) ? send("#{routing_scope()}notification_url", notification, ) : send("#{routing_scope()}#{notification.target.to_resource_name}_notification_url", notification.target, notification, ) end |
#notifications_path_for(target, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns notifications_path for the target
85 86 87 88 89 90 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 85 def notifications_path_for(target, params = {}) = params.dup .delete(:devise_default_routes) ? send("#{routing_scope()}notifications_path", ) : send("#{routing_scope()}#{target.to_resource_name}_notifications_path", target, ) end |
#notifications_url_for(target, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns notifications_url for the target
155 156 157 158 159 160 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 155 def notifications_url_for(target, params = {}) = params.dup .delete(:devise_default_routes) ? send("#{routing_scope()}notifications_url", ) : send("#{routing_scope()}#{target.to_resource_name}_notifications_url", target, ) end |
#open_all_notifications_path_for(target, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns open_all_notifications_path for the target
141 142 143 144 145 146 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 141 def open_all_notifications_path_for(target, params = {}) = params.dup .delete(:devise_default_routes) ? send("open_all_#{routing_scope()}notifications_path", ) : send("open_all_#{routing_scope()}#{target.to_resource_name}_notifications_path", target, ) end |
#open_all_notifications_url_for(target, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns open_all_notifications_url for the target of specified notification
211 212 213 214 215 216 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 211 def open_all_notifications_url_for(target, params = {}) = params.dup .delete(:devise_default_routes) ? send("open_all_#{routing_scope()}notifications_url", ) : send("open_all_#{routing_scope()}#{target.to_resource_name}_notifications_url", target, ) end |
#open_notification_path_for(notification, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns open_notification_path for the target of specified notification
127 128 129 130 131 132 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 127 def open_notification_path_for(notification, params = {}) = params.dup .delete(:devise_default_routes) ? send("open_#{routing_scope()}notification_path", notification, ) : send("open_#{routing_scope()}#{notification.target.to_resource_name}_notification_path", notification.target, notification, ) end |
#open_notification_url_for(notification, params = {}) ⇒ String
Needs any other better implementation
Must handle devise namespace
Returns open_notification_url for the target of specified notification
197 198 199 200 201 202 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 197 def open_notification_url_for(notification, params = {}) = params.dup .delete(:devise_default_routes) ? send("open_#{routing_scope()}notification_url", notification, ) : send("open_#{routing_scope()}#{notification.target.to_resource_name}_notification_url", notification.target, notification, ) end |
#render_notification(notifications, options = {}) ⇒ String Also known as: render_notifications
View helper for rendering an notification, calls Notification#render internally.
19 20 21 22 23 24 25 26 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 19 def render_notification(notifications, = {}) if notifications.is_a? ActivityNotification::Notification notifications.render self, elsif notifications.respond_to?(:map) return nil if (notifications.respond_to?(:empty?) ? notifications.empty? : notifications.to_a.empty?) notifications.map {|notification| notification.render self, .dup }.join.html_safe end end |
#render_notification_of(target, options = {}) ⇒ String Also known as: render_notifications_of
Show examples
View helper for rendering on notifications of the target to embedded partial template. It calls Notification#render to prepare view as ‘content_for :index_content` and render partial index calling `yield :index_content` internally. For example, this method can be used for notification index as dropdown in common header.
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 60 def render_notification_of(target, = {}) return unless target.is_a? ActivityNotification::Target # Prepare content for notifications index = .merge( target: target.to_resources_name, partial: [:notification_partial], layout: [:notification_layout] ) = .slice( :limit, :reverse, :with_group_members, :as_latest_group_member, :filtered_by_group, :filtered_by_group_type, :filtered_by_group_id, :filtered_by_type, :filtered_by_key, :custom_filter ) notification_index = load_notification_index(target, [:index_content], ) prepare_content_for(target, notification_index, ) # Render partial index render_partial_index(target, ) end |
#subscribe_subscription_path_for(subscription, params = {}) ⇒ String Also known as: subscribe_path_for
Needs any other better implementation
Returns subscribe_subscription_path for the target of specified subscription
250 251 252 253 254 255 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 250 def subscribe_subscription_path_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("subscribe_#{routing_scope()}subscription_path", subscription, ) : send("subscribe_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_path", subscription.target, subscription, ) end |
#subscribe_subscription_url_for(subscription, params = {}) ⇒ String Also known as: subscribe_url_for
Needs any other better implementation
Returns subscribe_subscription_url for the target of specified subscription
360 361 362 363 364 365 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 360 def subscribe_subscription_url_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("subscribe_#{routing_scope()}subscription_url", subscription, ) : send("subscribe_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_url", subscription.target, subscription, ) end |
#subscribe_to_email_subscription_path_for(subscription, params = {}) ⇒ String Also known as: subscribe_to_email_path_for
Needs any other better implementation
Returns subscribe_to_email_subscription_path for the target of specified subscription
278 279 280 281 282 283 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 278 def subscribe_to_email_subscription_path_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("subscribe_to_email_#{routing_scope()}subscription_path", subscription, ) : send("subscribe_to_email_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_path", subscription.target, subscription, ) end |
#subscribe_to_email_subscription_url_for(subscription, params = {}) ⇒ String Also known as: subscribe_to_email_url_for
Needs any other better implementation
Returns subscribe_to_email_subscription_url for the target of specified subscription
388 389 390 391 392 393 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 388 def subscribe_to_email_subscription_url_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("subscribe_to_email_#{routing_scope()}subscription_url", subscription, ) : send("subscribe_to_email_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_url", subscription.target, subscription, ) end |
#subscribe_to_optional_target_subscription_path_for(subscription, params = {}) ⇒ String Also known as: subscribe_to_optional_target_path_for
Needs any other better implementation
Returns subscribe_to_optional_target_subscription_path for the target of specified subscription
306 307 308 309 310 311 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 306 def subscribe_to_optional_target_subscription_path_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("subscribe_to_optional_target_#{routing_scope()}subscription_path", subscription, ) : send("subscribe_to_optional_target_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_path", subscription.target, subscription, ) end |
#subscribe_to_optional_target_subscription_url_for(subscription, params = {}) ⇒ String Also known as: subscribe_to_optional_target_url_for
Needs any other better implementation
Returns subscribe_to_optional_target_subscription_url for the target of specified subscription
416 417 418 419 420 421 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 416 def subscribe_to_optional_target_subscription_url_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("subscribe_to_optional_target_#{routing_scope()}subscription_url", subscription, ) : send("subscribe_to_optional_target_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_url", subscription.target, subscription, ) end |
#subscription_path_for(subscription, params = {}) ⇒ String
Needs any other better implementation
Returns subscription_path for the subscription
237 238 239 240 241 242 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 237 def subscription_path_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("#{routing_scope()}subscription_path", subscription, ) : send("#{routing_scope()}#{subscription.target.to_resource_name}_subscription_path", subscription.target, subscription, ) end |
#subscription_url_for(subscription, params = {}) ⇒ String
Needs any other better implementation
Returns subscription_url for the subscription
347 348 349 350 351 352 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 347 def subscription_url_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("#{routing_scope()}subscription_url", subscription, ) : send("#{routing_scope()}#{subscription.target.to_resource_name}_subscription_url", subscription.target, subscription, ) end |
#subscriptions_path_for(target, params = {}) ⇒ String
Needs any other better implementation
Returns subscriptions_path for the target
224 225 226 227 228 229 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 224 def subscriptions_path_for(target, params = {}) = params.dup .delete(:devise_default_routes) ? send("#{routing_scope()}subscriptions_path", ) : send("#{routing_scope()}#{target.to_resource_name}_subscriptions_path", target, ) end |
#subscriptions_url_for(target, params = {}) ⇒ String
Needs any other better implementation
Returns subscriptions_url for the target
334 335 336 337 338 339 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 334 def subscriptions_url_for(target, params = {}) = params.dup .delete(:devise_default_routes) ? send("#{routing_scope()}subscriptions_url", ) : send("#{routing_scope()}#{target.to_resource_name}_subscriptions_url", target, ) end |
#unsubscribe_subscription_path_for(subscription, params = {}) ⇒ String Also known as: unsubscribe_path_for
Needs any other better implementation
Returns unsubscribe_subscription_path for the target of specified subscription
264 265 266 267 268 269 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 264 def unsubscribe_subscription_path_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("unsubscribe_#{routing_scope()}subscription_path", subscription, ) : send("unsubscribe_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_path", subscription.target, subscription, ) end |
#unsubscribe_subscription_url_for(subscription, params = {}) ⇒ String Also known as: unsubscribe_url_for
Needs any other better implementation
Returns unsubscribe_subscription_url for the target of specified subscription
374 375 376 377 378 379 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 374 def unsubscribe_subscription_url_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("unsubscribe_#{routing_scope()}subscription_url", subscription, ) : send("unsubscribe_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_url", subscription.target, subscription, ) end |
#unsubscribe_to_email_subscription_path_for(subscription, params = {}) ⇒ String Also known as: unsubscribe_to_email_path_for
Needs any other better implementation
Returns unsubscribe_to_email_subscription_path for the target of specified subscription
292 293 294 295 296 297 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 292 def unsubscribe_to_email_subscription_path_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("unsubscribe_to_email_#{routing_scope()}subscription_path", subscription, ) : send("unsubscribe_to_email_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_path", subscription.target, subscription, ) end |
#unsubscribe_to_email_subscription_url_for(subscription, params = {}) ⇒ String Also known as: unsubscribe_to_email_url_for
Needs any other better implementation
Returns unsubscribe_to_email_subscription_url for the target of specified subscription
402 403 404 405 406 407 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 402 def unsubscribe_to_email_subscription_url_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("unsubscribe_to_email_#{routing_scope()}subscription_url", subscription, ) : send("unsubscribe_to_email_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_url", subscription.target, subscription, ) end |
#unsubscribe_to_optional_target_subscription_path_for(subscription, params = {}) ⇒ String Also known as: unsubscribe_to_optional_target_path_for
Needs any other better implementation
Returns unsubscribe_to_optional_target_subscription_path for the target of specified subscription
320 321 322 323 324 325 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 320 def unsubscribe_to_optional_target_subscription_path_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("unsubscribe_to_optional_target_#{routing_scope()}subscription_path", subscription, ) : send("unsubscribe_to_optional_target_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_path", subscription.target, subscription, ) end |
#unsubscribe_to_optional_target_subscription_url_for(subscription, params = {}) ⇒ String Also known as: unsubscribe_to_optional_target_url_for
Needs any other better implementation
Returns unsubscribe_to_optional_target_subscription_url for the target of specified subscription
430 431 432 433 434 435 |
# File 'lib/activity_notification/helpers/view_helpers.rb', line 430 def unsubscribe_to_optional_target_subscription_url_for(subscription, params = {}) = params.dup .delete(:devise_default_routes) ? send("unsubscribe_to_optional_target_#{routing_scope()}subscription_url", subscription, ) : send("unsubscribe_to_optional_target_#{routing_scope()}#{subscription.target.to_resource_name}_subscription_url", subscription.target, subscription, ) end |