2018-03-04 02:25:42 +00:00
|
|
|
{ content_for :title, 'Notifications | Metamaps' }
|
|
|
|
{ content_for :mobile_title, 'Notifications' }
|
2016-11-01 03:18:27 +00:00
|
|
|
|
|
|
|
<div id="yield">
|
|
|
|
<div class="centerContent notificationsPage">
|
2016-12-12 21:07:34 +00:00
|
|
|
<header class="page-header">
|
2016-12-16 04:57:37 +00:00
|
|
|
<h2 class="title">Notifications</h4>
|
2016-12-12 21:07:34 +00:00
|
|
|
</header>
|
2016-11-01 03:18:27 +00:00
|
|
|
<ul class="notifications">
|
2018-03-04 02:25:42 +00:00
|
|
|
{ blacklist = [MAP_ACCESS_REQUEST, MAP_ACCESS_APPROVED, MAP_INVITE_TO_EDIT] }
|
|
|
|
{ notifications = @notifications.to_a.delete_if{|n| blacklist.include?(n.notification_code) && (n.notified_object.nil? || n.notified_object.map.nil?) }}
|
|
|
|
{ notifications.each do |notification| }
|
|
|
|
{ receipt = @receipts.find_by(notification_id: notification.id) }
|
|
|
|
<li class="notification { receipt.is_read? ? 'read' : 'unread' }" id="notification-{ notification.id }">
|
|
|
|
{ link_to notification_path(notification.id) do }
|
2016-12-16 04:57:37 +00:00
|
|
|
<div class="notification-actor">
|
2018-03-04 02:25:42 +00:00
|
|
|
{ image_tag notification.sender.image(:thirtytwo) }
|
2016-11-01 03:18:27 +00:00
|
|
|
</div>
|
|
|
|
<div class="notification-body">
|
2018-03-04 02:25:42 +00:00
|
|
|
<div class="in-bold">{ notification.sender.name }</div>
|
|
|
|
{
|
2017-02-11 05:20:42 +00:00
|
|
|
case notification.notification_code
|
2018-03-04 02:25:42 +00:00
|
|
|
when MAP_ACCESS_APPROVED }
|
|
|
|
{ map = notification.notified_object.map }
|
|
|
|
granted your request to edit map <span class="in-bold">{ map.name }</span>
|
|
|
|
{ when MAP_ACCESS_REQUEST }
|
|
|
|
{ map = notification.notified_object.map }
|
|
|
|
wants permission to map with you on <span class="in-bold">{ map.name }</span>
|
|
|
|
{ if !notification.notified_object.answered }
|
2017-02-11 14:06:01 +00:00
|
|
|
<div class="action">Offer a response</div>
|
2018-03-04 02:25:42 +00:00
|
|
|
{ end }
|
|
|
|
{ when MAP_INVITE_TO_EDIT }
|
|
|
|
{ map = notification.notified_object.map }
|
|
|
|
gave you edit access to map <span class="in-bold">{ map.name }</span>
|
|
|
|
{ when TOPIC_ADDED_TO_MAP }
|
|
|
|
{ topic = notification.notified_object.eventable
|
|
|
|
map = notification.notified_object.map }
|
|
|
|
added topic <span class="in-bold">{ topic.name }</span> to map <span class="in-bold">{ map.name }</span>
|
|
|
|
{ when TOPIC_CONNECTED_1 }
|
|
|
|
{ topic1 = notification.notified_object&.topic1 }
|
|
|
|
{ topic2 = notification.notified_object&.topic2 }
|
|
|
|
connected <span class="in-bold">{ topic1&.name }</span> to <span class="in-bold">{ topic2&.name }</span>
|
|
|
|
{ when TOPIC_CONNECTED_2 }
|
|
|
|
{ topic1 = notification.notified_object&.topic1 }
|
|
|
|
{ topic2 = notification.notified_object&.topic2 }
|
|
|
|
connected <span class="in-bold">{ topic2&.name }</span> to <span class="in-bold">{ topic1&.name }</span>
|
|
|
|
{ when MESSAGE_FROM_DEVS }
|
|
|
|
{ notification.subject }
|
|
|
|
{ end }
|
2016-11-01 03:18:27 +00:00
|
|
|
</div>
|
2018-03-04 02:25:42 +00:00
|
|
|
{ end }
|
2016-11-01 03:18:27 +00:00
|
|
|
<div class="notification-read-unread">
|
2018-03-04 02:25:42 +00:00
|
|
|
{ if receipt.is_read? }
|
|
|
|
{ link_to 'mark as unread', mark_unread_notification_path(notification.id), remote: true, method: :put }
|
|
|
|
{ else }
|
|
|
|
{ link_to 'mark as read', mark_read_notification_path(notification.id), remote: true, method: :put }
|
|
|
|
{ end }
|
2016-11-01 03:18:27 +00:00
|
|
|
</div>
|
2016-12-16 04:57:37 +00:00
|
|
|
<div class="notification-date">
|
2018-03-04 02:25:42 +00:00
|
|
|
{ notification.created_at.strftime("%b %d") }
|
2016-12-16 04:57:37 +00:00
|
|
|
</div>
|
2016-12-12 21:07:34 +00:00
|
|
|
<div class="clearfloat"></div>
|
2016-11-01 03:18:27 +00:00
|
|
|
</li>
|
2018-03-04 02:25:42 +00:00
|
|
|
{ end }
|
|
|
|
{ if notifications.count == 0 }
|
2016-12-13 07:42:33 +00:00
|
|
|
<div class="emptyInbox">
|
2016-12-15 22:34:42 +00:00
|
|
|
You have no notifications. More time for dancing.
|
2016-12-13 07:42:33 +00:00
|
|
|
</div>
|
2018-03-04 02:25:42 +00:00
|
|
|
{ end }
|
2016-11-01 03:18:27 +00:00
|
|
|
</ul>
|
|
|
|
</div>
|
2016-12-11 22:29:48 +00:00
|
|
|
|
2018-03-04 02:25:42 +00:00
|
|
|
{ if @notifications.total_pages > 1 }
|
2016-12-12 21:07:34 +00:00
|
|
|
<div class="centerContent withPadding pagination">
|
2018-03-04 02:25:42 +00:00
|
|
|
{ paginate @notifications }
|
2016-12-11 22:29:48 +00:00
|
|
|
</div>
|
2018-03-04 02:25:42 +00:00
|
|
|
{ end }
|
2016-11-01 03:18:27 +00:00
|
|
|
</div>
|