Web Client #11

Merged
Simponic merged 19 commits from web into main 2023-01-19 16:04:10 -05:00
Showing only changes of commit 53041c74a5 - Show all commits

View File

@ -63,7 +63,6 @@ defmodule Chessh.SSH.Client.Menu do
%Chessh.SSH.Client.Game.State{player_session: player_session, game: game}}} %Chessh.SSH.Client.Game.State{player_session: player_session, game: game}}}
end) ++ end) ++
[ [
{"Settings", {}},
{"Help", {}} {"Help", {}}
] ]
end end
@ -130,7 +129,14 @@ defmodule Chessh.SSH.Client.Menu do
fn {i, {option, _}} -> fn {i, {option, _}} ->
[ [
ANSI.cursor(y + length(logo_lines) + i + 1, x), ANSI.cursor(y + length(logo_lines) + i + 1, x),
if(i == selected, do: ANSI.format([:bright, :light_cyan, "+ #{option}"]), else: option) if(i == selected,
do:
ANSI.format_fragment(
[:light_cyan, :bright, "> #{option} <", :reset],
true
),
else: option
)
] ]
end end
) ++ [ANSI.home()] ) ++ [ANSI.home()]