2019-12-05 05:27:40 +01:00
|
|
|
elixir:
|
2024-06-06 22:28:35 +02:00
|
|
|
watch_path = ~p"/channels/#{@channel}/subscription"
|
2019-12-05 05:27:40 +01:00
|
|
|
watch_class = if @watching, do: "hidden", else: ""
|
|
|
|
|
2024-06-06 22:28:35 +02:00
|
|
|
unwatch_path = ~p"/channels/#{@channel}/subscription"
|
2019-12-05 05:27:40 +01:00
|
|
|
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>
|
2023-11-23 17:07:49 +01:00
|
|
|
span.hidden--mobile
|
2019-12-05 05:27:40 +01:00
|
|
|
' 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>
|
2023-11-23 17:07:49 +01:00
|
|
|
span.hidden--mobile
|
2019-12-05 05:27:40 +01:00
|
|
|
' Unsubscribe
|
|
|
|
- else
|
2024-06-06 22:28:35 +02:00
|
|
|
a.media-box__header.media-box__header--channel.media-box__header--link href=~p"/sessions/new"
|
2019-12-05 05:32:01 +01:00
|
|
|
i.fa.fa-bell>
|
2023-11-23 17:07:49 +01:00
|
|
|
span.hidden--mobile
|
2020-07-28 22:56:26 +02:00
|
|
|
' Subscribe
|