Replace ifs with case

This commit is contained in:
Santiago Lo Coco 2022-01-19 18:07:29 -03:00
parent 3b6b3c20f1
commit e0826f18ac
1 changed files with 8 additions and 7 deletions

View File

@ -92,19 +92,20 @@ useWhiptail() {
} }
usePlainText() { usePlainText() {
inputbox=false; infobox=false; yesnobox=false inputbox=false; infobox=false; yesno=false
for item in "$@"; do for item in "$@"; do
# TODO: Use case case $item in
[ "$item" = "--title" ] && shift && shift --title) shift && shift ;;
[ "$item" = "--inputbox" ] && inputbox=true --inputbox) inputbox=true ;;
[ "$item" = "--infobox" ] && infobox=true --infobox) infobox=true ;;
[ "$item" = "--yesno" ] && yesnobox=true --yesno) yesno=true ;;
esac
done done
printf "$2\n" printf "$2\n"
if [ $inputbox = true ]; then if [ $inputbox = true ]; then
read -r readVar read -r readVar
printf "$readVar" 1>&2 printf "$readVar" 1>&2
elif [ $yesnobox = true ]; then elif [ $yesno = true ]; then
printf "[y/n] " printf "[y/n] "
read -n 1 -r readVar read -n 1 -r readVar
return $([[ "$readVar" =~ ^[Yy]$ ]]) return $([[ "$readVar" =~ ^[Yy]$ ]])