2022-08-14 10:30:57 -04:00
|
|
|
<%= if @delete_shift do %>
|
2022-08-14 12:49:25 -04:00
|
|
|
<.live_component
|
|
|
|
module={Shift73kWeb.ModalComponent}
|
|
|
|
id="modal"
|
|
|
|
component={Shift73kWeb.ShiftLive.DeleteComponent}
|
|
|
|
opts={[
|
2022-08-14 10:30:57 -04:00
|
|
|
id: @delete_shift.id,
|
|
|
|
title: "Delete Shift Template",
|
2022-08-14 12:49:25 -04:00
|
|
|
delete_shift: @delete_shift
|
|
|
|
]}
|
|
|
|
/>
|
2022-08-14 10:30:57 -04:00
|
|
|
<% end %>
|
|
|
|
|
|
|
|
|
2021-03-20 12:45:50 -04:00
|
|
|
<div class="row justify-content-start justify-content-sm-center">
|
|
|
|
<div class="col-md-10 col-xl-10">
|
|
|
|
|
2021-03-21 10:47:53 -04:00
|
|
|
<h2 class="mb-3 mb-sm-0">
|
2022-08-14 10:30:57 -04:00
|
|
|
<i class="bi bi-card-list me-1"></i> My Shifts
|
2021-03-21 10:47:53 -04:00
|
|
|
</h2>
|
2021-03-20 12:45:50 -04:00
|
|
|
|
2021-03-21 10:47:53 -04:00
|
|
|
<div class="row justify-content-start justify-content-sm-center">
|
|
|
|
<div class="col-md-10 col-xl-10">
|
2021-03-20 12:45:50 -04:00
|
|
|
|
2021-03-21 10:47:53 -04:00
|
|
|
<%# month navigation %>
|
|
|
|
<div class="d-flex justify-content-between align-items-end my-4">
|
|
|
|
<h3 class="text-muted mb-0">
|
|
|
|
<%= Calendar.strftime(@cursor_date, "%B %Y") %>
|
|
|
|
</h3>
|
|
|
|
<div>
|
2022-08-14 10:30:57 -04:00
|
|
|
<button type="button" phx-click="month-nav" phx-value-month="now" class="btn btn-info text-white" disabled={if Map.get(@cursor_date, :month) == Map.get(Date.utc_today(), :month), do: :true, else: :false}>
|
|
|
|
<i class="bi bi-asterisk me-sm-1"></i>
|
2021-03-21 10:47:53 -04:00
|
|
|
<span class="d-none d-sm-inline">Today</span>
|
|
|
|
</button>
|
|
|
|
<button type="button" phx-click="month-nav" phx-value-month="prev" class="btn btn-primary">
|
2022-08-14 10:30:57 -04:00
|
|
|
<i class="bi bi-chevron-left me-sm-1"></i>
|
2021-03-21 10:47:53 -04:00
|
|
|
<span class="d-none d-sm-inline">Prev</span>
|
|
|
|
</button>
|
|
|
|
<button type="button" phx-click="month-nav" phx-value-month="next" class="btn btn-primary">
|
|
|
|
<span class="d-none d-sm-inline">Next</span>
|
2022-08-14 10:30:57 -04:00
|
|
|
<i class="bi bi-chevron-right ms-sm-1"></i>
|
2021-03-21 10:47:53 -04:00
|
|
|
</button>
|
2021-03-20 12:45:50 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-03-21 10:47:53 -04:00
|
|
|
<%= for day <- Enum.to_list(@date_range) do %>
|
|
|
|
<%= if Date.day_of_week(day, @current_user.week_start_at) == 1 do %>
|
|
|
|
<div class="border-top mt-4 mb-4"></div>
|
|
|
|
<% end %>
|
2021-03-25 15:52:24 -04:00
|
|
|
<h4>
|
2021-03-21 10:47:53 -04:00
|
|
|
<%= Calendar.strftime(day, "%A, %b %-d") %>
|
2021-03-25 15:52:24 -04:00
|
|
|
</h4>
|
2021-03-21 10:47:53 -04:00
|
|
|
<% day_shifts = Enum.filter(@shifts, fn s -> s.date == day end) %>
|
|
|
|
<%= if !Enum.empty?(day_shifts) do %>
|
2021-03-25 15:52:24 -04:00
|
|
|
|
|
|
|
<%= for shift <- day_shifts do %>
|
|
|
|
|
2022-08-14 10:30:57 -04:00
|
|
|
<div class="card mt-2 mb-4 col-12 ms-sm-3 ms-md-4 col-lg-10 ms-lg-5 col-xxl-8" id={"shift-#{shift.id}"}>
|
2021-03-25 15:52:24 -04:00
|
|
|
<div class="card-body">
|
|
|
|
<h5 class="card-title">
|
2022-08-14 10:30:57 -04:00
|
|
|
<i class="bi bi-tag text-muted me-1"></i>
|
2021-03-21 10:47:53 -04:00
|
|
|
<%= shift.subject %>
|
2021-03-25 15:52:24 -04:00
|
|
|
</h5>
|
|
|
|
|
|
|
|
<table class="table table-borderless table-nonfluid table-sm">
|
|
|
|
<tbody>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<th scope="row" class="text-end">
|
2022-08-14 10:30:57 -04:00
|
|
|
<i class="bi bi-hourglass text-muted"></i>
|
2021-03-25 15:52:24 -04:00
|
|
|
<span class="visually-hidden">Hours:</span>
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
<%= format_shift_time(shift.time_start) %>
|
|
|
|
—
|
|
|
|
<%= format_shift_time(shift.time_end) %>
|
|
|
|
<span class="text-muted">
|
|
|
|
<span class="visually-hidden">Shift length:</span>
|
|
|
|
(<%= format_shift_length(shift) %>)
|
|
|
|
</span>
|
|
|
|
<span class="valid-feedback d-block text-muted mt-n1">TZ: <%= shift.time_zone %></span>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
|
|
|
|
<tr>
|
|
|
|
<th scope="row" class="text-end">
|
2022-08-14 10:30:57 -04:00
|
|
|
<i class="bi bi-geo text-muted"></i>
|
2021-03-25 15:52:24 -04:00
|
|
|
<span class="visually-hidden">Location:</span>
|
|
|
|
</th>
|
|
|
|
<td>
|
|
|
|
<%= if shift.location do %>
|
|
|
|
<%= shift.location %>
|
|
|
|
<% else %>
|
|
|
|
<span class="text-muted fst-italic">none</span>
|
|
|
|
<% end %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<th scope="row" class="text-end">
|
2022-08-14 10:30:57 -04:00
|
|
|
<i class="bi bi-justify-left text-muted"></i>
|
2021-03-25 15:52:24 -04:00
|
|
|
<span class="visually-hidden">Description:</span>
|
|
|
|
</th>
|
|
|
|
<td class="shift-description">
|
|
|
|
<%= if shift.description do %>
|
|
|
|
<%= text_to_html shift.description %>
|
|
|
|
<% else %>
|
|
|
|
<span class="text-muted fst-italic">none</span>
|
|
|
|
<% end %>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2022-08-14 10:30:57 -04:00
|
|
|
<button class="btn btn-outline-danger btn-sm text-nowrap" phx-click="delete-modal" phx-value-id={shift.id}>
|
|
|
|
<i class="bi bi-trash me-1"></i> Delete
|
|
|
|
</button>
|
2021-03-25 15:52:24 -04:00
|
|
|
|
2021-03-21 10:47:53 -04:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2021-03-25 15:52:24 -04:00
|
|
|
<% end %>
|
|
|
|
|
2021-03-21 10:47:53 -04:00
|
|
|
<% else %>
|
2021-03-25 15:52:24 -04:00
|
|
|
<p class="text-muted"><em>Nothing scheduled</em></p>
|
2021-03-21 10:47:53 -04:00
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
2021-03-20 12:45:50 -04:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|