Skip to content

Commit 5ec335d

Browse files
committed
Show or hide streamed calendars on the client side based on their visibility field
1 parent d3fbe70 commit 5ec335d

File tree

3 files changed

+21
-1
lines changed

3 files changed

+21
-1
lines changed

lib/live_cal_web/components/core_components.ex

+1-1
Original file line numberDiff line numberDiff line change
@@ -510,7 +510,7 @@ defmodule LiveCalWeb.CoreComponents do
510510
phx-update={match?(%Phoenix.LiveView.LiveStream{}, @rows) && "stream"}
511511
class="relative divide-y divide-zinc-100 border-t border-zinc-200 text-sm leading-6 text-zinc-700"
512512
>
513-
<tr :for={row <- @rows} id={@row_id && @row_id.(row)} class="group hover:bg-zinc-50">
513+
<tr :for={row <- @rows} id={@row_id && @row_id.(row)} class="group hover:bg-zinc-50" data-visibility={elem(row, 1).visibility}>
514514
<td
515515
:for={{col, i} <- Enum.with_index(@col)}
516516
phx-click={@row_click && @row_click.(row)}

lib/live_cal_web/live/calendar_live/index.html.heex

+9
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,22 @@
77
</:actions>
88
</.header>
99

10+
<.button phx-click={JS.toggle(to: "[data-visibility='public']")}>
11+
Toggle visibility of public calendars
12+
</.button>
13+
14+
<.button phx-click={JS.toggle(to: "[data-visibility='private']")}>
15+
Toggle visibility of private calendars
16+
</.button>
17+
1018
<.table
1119
id="calendars"
1220
rows={@streams.calendars}
1321
row_click={fn {_id, calendar} -> JS.navigate(~p"/calendars/#{calendar}") end}
1422
>
1523
<:col :let={{_id, calendar}} label="Name"><%= calendar.name %></:col>
1624
<:col :let={{_id, calendar}} label="Description"><%= calendar.description %></:col>
25+
<:col :let={{_id, calendar}} label="Visibility"><%= calendar.visibility %></:col>
1726
<:action :let={{_id, calendar}}>
1827
<div class="sr-only">
1928
<.link navigate={~p"/calendars/#{calendar}"}>Show</.link>

priv/repo/seeds.exs

+11
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,14 @@
99
#
1010
# We recommend using the bang functions (`insert!`, `update!`
1111
# and so on) as they will fail if something goes wrong.
12+
13+
alias LiveCal.Repo
14+
alias LiveCal.Scheduling
15+
16+
[
17+
%Scheduling.Calendar{name: "Holidays", description: "time for an adventure", visibility: :public},
18+
%Scheduling.Calendar{name: "Birthdays", description: "remember to find gifts", visibility: :private},
19+
%Scheduling.Calendar{name: "Meetups", description: "channeling inner social butterfly", visibility: :private},
20+
%Scheduling.Calendar{name: "Sport Matches", description: "oggy oggy oggy, oi oi oi", visibility: :public}
21+
] |> Enum.map(&Repo.insert!/1)
22+

0 commit comments

Comments
 (0)