philomena/lib/philomena_web/templates/channel/subscription/_subscription.html.slime

24 lines
985 B
Text
Raw Normal View History

2019-12-05 05:27:40 +01:00
elixir:
watch_path = Routes.channel_subscription_path(@conn, :create, @channel)
watch_class = if @watching, do: "hidden", else: ""
unwatch_path = Routes.channel_subscription_path(@conn, :delete, @channel)
unwatch_class = if @watching, do: "", else: "hidden"
= if @conn.assigns.current_user do
2024-03-03 06:31:06 +01:00
span.js-subscription-target
2019-12-05 05:32:01 +01:00
a.js-subscription-link.media-box__header.media-box__header--channel.media-box__header--link href=watch_path class=watch_class data-remote="true" data-method="post"
2019-12-05 05:27:40 +01:00
i.fa.fa-bell>
span.hide-mobile
' Subscribe
2019-12-05 05:32:01 +01:00
a.js-subscription-link.media-box__header.media-box__header--channel.media-box__header--link href=unwatch_path class=unwatch_class data-remote="true" data-method="delete"
2019-12-05 05:27:40 +01:00
i.fa.fa-bell-slash>
span.hide-mobile
' Unsubscribe
- else
a.media-box__header.media-box__header--channel.media-box__header--link href=Routes.session_path(@conn, :new)
2019-12-05 05:32:01 +01:00
i.fa.fa-bell>
span.hide-mobile
' Subscribe