-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add confirmation modal to assignment content switches
- Loading branch information
1 parent
57cf6a1
commit 1295682
Showing
11 changed files
with
146 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
defmodule Systems.Assignment.ConfirmationModal do | ||
use CoreWeb, :live_component | ||
|
||
@impl true | ||
def update(_params, socket) do | ||
{ | ||
:ok, | ||
update_buttons(socket) | ||
} | ||
end | ||
|
||
defp update_buttons(%{assigns: %{myself: myself}} = socket) do | ||
confirm = %{ | ||
action: %{type: :send, target: myself, event: "confirm"}, | ||
face: %{type: :primary, label: dgettext("eyra-ui", "confirm.button")} | ||
} | ||
|
||
cancel = %{ | ||
action: %{type: :send, target: myself, event: "cancel"}, | ||
face: %{type: :secondary, label: dgettext("eyra-ui", "cancel.button")} | ||
} | ||
|
||
assign(socket, buttons: [confirm, cancel]) | ||
end | ||
|
||
def handle_event("confirm", _, socket) do | ||
{:noreply, socket |> send_event(:parent, "confirmed")} | ||
end | ||
|
||
def handle_event("cancel", _, socket) do | ||
{:noreply, socket |> send_event(:parent, "cancelled")} | ||
end | ||
|
||
@impl true | ||
@spec render(any()) :: Phoenix.LiveView.Rendered.t() | ||
def render(assigns) do | ||
~H""" | ||
<div> | ||
<Text.title2> | ||
<%= dgettext("eyra-assignment", "confirmation_modal.title") %> | ||
</Text.title2> | ||
<.spacing value="M" /> | ||
<Text.body_large> | ||
<%= dgettext("eyra-assignment", "confirmation_modal.body") %> | ||
</Text.body_large> | ||
<.spacing value="M" /> | ||
<div class="flex flex-row gap-4"> | ||
<%= for button <- @buttons do %> | ||
<Button.dynamic {button} /> | ||
<% end %> | ||
</div> | ||
</div> | ||
""" | ||
end | ||
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters