Files
herolib/examples/ui/telegram/flow1.v
2025-10-12 12:30:19 +03:00

50 lines
1.1 KiB
V

module main
import incubaid.herolib.ui.console
struct RoomOrderFlow {
current_product string
ui UserInterface
}
fn (mut f RoomOrderFlow) room_choice() ! {
i := ui.ask_dropdown(
description: 'Which type of room do you want?'
items: ['penthouse', 'normal', 'single', 'appartment_room']
warning: 'Please select your right type of room'
reset: true
)
// match
smoker := console.ask_yesno(description: 'Are you a smoker?')
if smoker {
smoke := console.ask_yesno(description: 'Do you want to smoke in your room?')
if smoke == false {
println('Please realize if we detect you have smoked in your room we will charge 100USD to deep clean the room.')
}
}
if smoker == false {
// TODO check there is a non smoking room.
if false {
println("We are very sorry, we didn't find a non smoking room, do you want another room or you are ok.")
}
}
}
fn do() ! {
// all bool // means user can choose all of them
// description string
// items []string
// warning string
// reset bool = true
mut f := RoomOrderFlow{}
f.room_choice()!
// println(i)
}
fn main() {
do() or { panic(err) }
}