From 267a653bf26d1d921797ae122b632766faab6d41 Mon Sep 17 00:00:00 2001 From: Santiago Lo Coco Date: Wed, 19 Jan 2022 18:00:22 -0300 Subject: [PATCH] Add usePlainText() and usePlainTextMenu() --- scripts/common.sh | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/scripts/common.sh b/scripts/common.sh index 96b2b35..eac96d7 100755 --- a/scripts/common.sh +++ b/scripts/common.sh @@ -19,6 +19,13 @@ displayDialogBox() { useDialog "$@" fi ;; + plain) + if [ "$1" = "--menu" ]; then + usePlainTextMenu "$@" + else + usePlainText "$@" + fi + ;; ?) echo "Unknown dialogBox variable" >&2 exit 1 @@ -84,6 +91,39 @@ useWhiptail() { fi } +usePlainText() { + inputbox=false; infobox=false; yesnobox=false + for item in "$@"; do + # TODO: Use case + [ "$item" = "--title" ] && shift && shift + [ "$item" = "--inputbox" ] && inputbox=true + [ "$item" = "--infobox" ] && infobox=true + [ "$item" = "--yesno" ] && yesnobox=true + done + printf "$2\n" + if [ $inputbox = true ]; then + read -r readVar + printf "$readVar" + elif [ $yesnobox = true ]; then + printf "[y/n] " + read -n 1 -r readVar + return $([[ "$readVar" =~ ^[Yy]$ ]]) + fi +} + +usePlainTextMenu() { + menuOptions=(); shift + printf "$1\n" + shift; shift + local i=1; for item in "$@"; do + echo "$item" | grep -qE '[0-9]+' && continue + printf '%s\n' "$i) $item" + ((i++)) + done + read -n 1 -r readVar + echo "$readVar" +} + getLastArgument() { local i=0 for i; do :; done