Skip to content

Commit

Permalink
add shortcuts
Browse files Browse the repository at this point in the history
  • Loading branch information
outscale-mal committed Sep 25, 2023
1 parent b2e92d2 commit c85b66a
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 7 deletions.
55 changes: 55 additions & 0 deletions osc_tui/mainForm.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,6 +331,36 @@ def build_line(size):
rely=2,
)

def create_new(self, _):
global MODE
if MODE == "Vms":
self.parentApp.addForm("CREATE_VM", createVm.CreateVm, name="osc-tui")
self.parentApp.switchForm("CREATE_VM")
elif MODE == "Security":
popup.newSecurityGroup(self)
elif MODE == "Volumes":
self.parentApp.addForm("CREATE_VOLUME", createVolume.CreateVolume, name="osc-tui")
self.parentApp.switchForm("CREATE_VOLUME")
elif MODE == "Snapshots":
self.parentApp.addForm("CREATE_SNAPSHOT", createSnapshot.CreateSnapshot, name="osc-tui")
self.parentApp.switchForm("CREATE_SNAPSHOT")
elif MODE == "Keypairs":
self.parentApp.addForm("CREATE_KEYPAIR", createKeyPair.CreateKeyPair, name="osc-tui")
self.parentApp.switchForm("CREATE_KEYPAIR")
elif MODE == "Images":
self.parentApp.addForm("CREATE_Images", createImage.CreateImage, name="osc-tui")
self.parentApp.switchForm("CREATE_Images")
elif MODE == "LoadBalancers":
self.parentApp.addForm("CREATE_LOADBALANCER", createLoadbalancer.CreateLoadbalancer, name="osc-tui")
self.parentApp.switchForm("CREATE_LOADBALANCER")
elif MODE == "Nets":
self.parentApp.addForm("CREATE_VPCS", createVpcs.CreateVpcs, name="osc-tui")
self.parentApp.switchForm("CREATE_VPCS")
elif MODE == "NetAccessPoints":
self.parentApp.addForm("CREATE_NET-ACCESS-POINT", createNetAccessPoint.CreateNetAccessPoint, name="osc-tui")
self.parentApp.switchForm("CREATE_NET-ACCESS-POINT")


def on_screen(self):
super().on_screen()

Expand All @@ -352,12 +382,37 @@ def quit_key(self, key_val):
def key_reload(self, _):
self.reload()

def switch_to_volumes(form, _):
global MODE
MODE = "Volumes"
form.reload()

def switch_to_instances(form, _):
global MODE
MODE = "Vms"
form.reload()

def switch_to_images(form, _):
global MODE
MODE = "Images"
form.reload()

def switch_to_security_grid(form, _):
global MODE
MODE = "Security"
form.reload()

def set_up_handlers(self):
super().set_up_handlers()
self.add_handlers({"q": self.quit_key})
self.add_handlers({"^Q": quit})
self.add_handlers({"h": popup.showHelp})
self.add_handlers({"/": popup.slashSearch})
self.add_handlers({"C": self.create_new})
self.add_handlers({"V": self.switch_to_volumes})
self.add_handlers({"I": self.switch_to_instances})
self.add_handlers({"M": self.switch_to_images})
self.add_handlers({"S": self.switch_to_security_grid})
self.add_handlers({
"r" : self.key_reload,
curses.KEY_F5 : self.key_reload
Expand Down
20 changes: 13 additions & 7 deletions osc_tui/popup.py
Original file line number Diff line number Diff line change
Expand Up @@ -819,7 +819,7 @@ def capsule():
" |/\n" +
" +\n",

r" \| \n" +
" \| \n" +
" +\n",

" \\ \n" +
Expand Down Expand Up @@ -1062,12 +1062,18 @@ def showHelp(arg):
oscscreen.Pager,
)
ft.values = [
"Return to profile : q",
"Exit : Ctrl+Q",
"Refresh : F5 or r",
"Search in Fields : /",
"search in Menu : l",
"Help : h\n",
"Return to profile : q",
"Exit : Ctrl+Q",
"Refresh : F5 or r",
"Search in Fields : /",
"search in Menu : l",
"Help : h",
"Switch to Vms : I",
"Switch to Volumes : V",
"Switch to Images : M",
"Switch to Security : S",
"Switch to Nets : T",
"Switch to Keypairs : K\n",
]

def ok():
Expand Down

0 comments on commit c85b66a

Please sign in to comment.