Update usePlainTextList()

This commit is contained in:
Santiago Lo Coco 2022-02-17 00:24:01 -03:00
parent b065b3a6b2
commit cc0ea0a113
1 changed files with 9 additions and 2 deletions

View File

@ -154,7 +154,11 @@ usePlainTextMenu() {
usePlainTextList() { usePlainTextList() {
clear clear
tput bold tput bold
shift; msg=${1:2}; printf '%s\n' "$msg"; shift; shift shift
msg="${1:2} To select an element you must enter its number"
msg="${msg} (which appears to the left of the element)."
msg="${msg} Also, you can deselect an item by re-entering its number."
printf '%s\n' "$msg"; shift; shift
tput sgr0 tput sgr0
options=() options=()
local i=2; j=0; for item in "$@"; do local i=2; j=0; for item in "$@"; do
@ -188,7 +192,10 @@ usePlainTextList() {
if [ $((i%3)) -eq 0 ]; then if [ $((i%3)) -eq 0 ]; then
printf '%s\n' "${selectedOptions[@]}" | grep -Fxq "${options[$j]}" printf '%s\n' "${selectedOptions[@]}" | grep -Fxq "${options[$j]}"
retVal=$? retVal=$?
if [ $((++j)) -eq $readVar ] || [ $retVal -eq 0 ]; then if [ $((++j)) -eq $readVar ] && [ $retVal -eq 0 ]; then
selectedOptions=(${selectedOptions[@]//${options[$((readVar-1))]}/})
printf '%s\n' "$j) $item"
elif [ $j -eq $readVar ] || [ $retVal -eq 0 ]; then
tput setab 2 tput setab 2
printf '%s\n' "$j) $item" printf '%s\n' "$j) $item"
[ $retVal -ne 0 ] && selectedOptions+=("${options[$((readVar-1))]}") [ $retVal -ne 0 ] && selectedOptions+=("${options[$((readVar-1))]}")