Add --checklist support (for dialog and whiptail)

This commit is contained in:
Santiago Lo Coco 2022-02-16 11:13:23 -03:00
parent 4cbd38e4be
commit bcbb5eb222
1 changed files with 49 additions and 0 deletions

View File

@ -5,6 +5,8 @@ displayDialogBox() {
whiptail) whiptail)
if [ "$1" = "--menu" ]; then if [ "$1" = "--menu" ]; then
useWhiptailMenu "$@" useWhiptailMenu "$@"
elif [ "$1" = "--checklist" ]; then
useWhiptailList "$@"
else else
if [ "$1" = "--infobox" ] && tty | grep -q "/dev/pts"; then if [ "$1" = "--infobox" ] && tty | grep -q "/dev/pts"; then
local TERM=ansi local TERM=ansi
@ -15,6 +17,8 @@ displayDialogBox() {
dialog) dialog)
if [ "$1" = "--menu" ]; then if [ "$1" = "--menu" ]; then
useDialogMenu "$@" useDialogMenu "$@"
elif [ "$1" = "--checklist" ]; then
useDialogList "$@"
else else
useDialog "$@" useDialog "$@"
fi fi
@ -184,6 +188,7 @@ getLastArgument() {
formatOptions() { formatOptions() {
options=(); found=false options=(); found=false
# [ "$1" = "LIST" ] && list-height="$1"
for item in "$@"; do for item in "$@"; do
if [ "$item" = "VALUES" ]; then if [ "$item" = "VALUES" ]; then
options+=("${height}") options+=("${height}")
@ -208,6 +213,50 @@ useDialogMenu() {
dialog --no-tags "${options[@]}" dialog --no-tags "${options[@]}"
} }
getListOptions() {
maxLen=0; i=1; j=1; notFound=true; msgLen=-1; argsQty=0
for item in "$@"; do
[ "${item:0:2}" = "--" ] && continue
[ $i -eq $j ] && [ $msgLen = -1 ] && msgLen=${#item}
if [ $notFound = true ]; then
[[ "${item}" == "VALUES" ]] && ((i+=3))
[[ "${item}" == +([0-9]) ]] && ((i++))
[ $i -le 3 ] && continue
fi
notFound=false
if [ $((j % 3)) -eq 0 ]; then
strLen=${#item}
[ $strLen -gt $maxLen ] && maxLen=$strLen
((argsQty++))
fi
((j++))
done
maxLen=$((maxLen+15)) && [ "$maxLen" -ge "$msgLen" ] || maxLen=$msgLen
argsQty=$((argsQty+8)) && [ "$argsQty" -le 20 ] || argsQty=20
listHeight=$((argsQty-8)) && [ "$argsQty" -ge 10 ] || listHeight=$((argsQty-8))
options=(); found=false
for item in "$@"; do
if [ "$item" = "VALUES" ]; then
options+=("${argsQty}")
options+=("${maxLen}")
options+=("${listHeight}")
found=true
continue
fi
options+=("${item}")
done
}
useDialogList() {
getListOptions "$@"
dialog --no-tags "${options[@]}"
}
useWhiptailList() {
getListOptions "$@"
whiptail --notags --separate-output "${options[@]}"
}
calcWidthWhiptail() { calcWidthWhiptail() {
width=${#1} width=${#1}
[ "$width" -gt 60 ] && echo 60 || echo $((width+2)) [ "$width" -gt 60 ] && echo 60 || echo $((width+2))