2019-11-17 18:50:42 +01:00
|
|
|
elixir:
|
|
|
|
watch_path = Routes.image_subscription_path(@conn, :create, @image)
|
|
|
|
watch_class = if @watching, do: "hidden", else: ""
|
|
|
|
|
|
|
|
unwatch_path = Routes.image_subscription_path(@conn, :delete, @image)
|
|
|
|
unwatch_class = if @watching, do: "", else: "hidden"
|
|
|
|
|
|
|
|
= if @conn.assigns.current_user do
|
2019-11-29 20:29:01 +01:00
|
|
|
span#js-subscription-target
|
2019-11-17 18:50:42 +01:00
|
|
|
a.js-subscription-link href=watch_path class=watch_class data-remote="true" data-method="post"
|
|
|
|
i.fa.fa-bell>
|
2019-12-19 07:51:21 +01:00
|
|
|
' Subscribe
|
2019-11-17 18:50:42 +01:00
|
|
|
|
|
|
|
a.js-subscription-link href=unwatch_path class=unwatch_class data-remote="true" data-method="delete"
|
|
|
|
i.fa.fa-bell-slash>
|
2019-12-19 07:51:21 +01:00
|
|
|
' Unsubscribe
|
2019-11-17 18:50:42 +01:00
|
|
|
- else
|
|
|
|
a href=Routes.pow_session_path(@conn, :new)
|
|
|
|
i.fa.fa-bell>
|
2019-12-19 07:51:21 +01:00
|
|
|
' Subscribe
|