Skip to content

Commit

Permalink
zfsbootmenu/lib/zfsbootmenu-ui.sh: add modal prompt
Browse files Browse the repository at this point in the history
  • Loading branch information
classabbyamp committed Mar 18, 2024
1 parent 4892743 commit 7436b1b
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions zfsbootmenu/lib/zfsbootmenu-ui.sh
Original file line number Diff line number Diff line change
Expand Up @@ -664,3 +664,53 @@ populate_be_list() {
done
return $ret
}

# arg1: header/title text
# arg2..N: prompt options in the form "action:display text"
# prints: selected action
# returns: nothing

draw_modal_prompt() {
local -i ROWS COLS LMARGIN TMARGIN maxlen=10 nopts=0
local PROMPT="" OUTPUT TITLE disp action text

TITLE=" ${1} "
if (( "${#TITLE}" > maxlen )); then
maxlen="${#TITLE}"
fi
shift

for itm; do
disp="${itm#*:}"
if (( "${#disp}" > maxlen )); then
maxlen="${#disp}"
fi
PROMPT+="${itm}"$'\n'
nopts=$(( nopts + 1 ))
done
PROMPT+=":Cancel"
nopts=$(( nopts + 1 ))

ROWS="$(tput lines)"
COLS="$(tput cols)"

LMARGIN=$(( (COLS - maxlen - 6) / 2 ))
TMARGIN=$(( (ROWS - nopts - 3) / 2 ))

if OUTPUT="$(echo -e "${PROMPT}" | \
fzf --no-info \
--with-nth="2.." \
--delimiter=":" \
--no-multi \
--no-sort \
${HAS_BORDER:+--border=sharp} \
${HAS_BORDER:+--border-label="${TITLE}"} \
--prompt="> " \
--layout=default \
--no-scrollbar \
--margin "${TMARGIN},${LMARGIN}")"; then
# shellcheck disable=SC2034
IFS=":" read -r action text <<< "${OUTPUT}"
printf "%s" "$action"
fi
}

0 comments on commit 7436b1b

Please sign in to comment.