kivy: switch to send screen if a URI is passed

This commit is contained in:
ThomasV 2016-02-05 18:16:48 +01:00
parent 51ca7a056b
commit 84ac33f589
3 changed files with 25 additions and 12 deletions

View File

@ -190,7 +190,6 @@
id: panel id: panel
tab_height: '48dp' tab_height: '48dp'
tab_width: panel.width/3 tab_width: panel.width/3
default_tab: history_tab
strip_border: 0, 0, 0, 0 strip_border: 0, 0, 0, 0
InvoicesScreen: InvoicesScreen:
id: invoices_screen id: invoices_screen

View File

@ -158,7 +158,7 @@ class ElectrumWindow(App):
:data:`ui_mode` is a read only `AliasProperty` Defaults to 'phone' :data:`ui_mode` is a read only `AliasProperty` Defaults to 'phone'
''' '''
url = StringProperty('', allownone=True) uri = StringProperty('', allownone=True)
''' '''
''' '''
@ -193,11 +193,7 @@ class ElectrumWindow(App):
self.contacts = Contacts(self.electrum_config) self.contacts = Contacts(self.electrum_config)
self.invoices = InvoiceStore(self.electrum_config) self.invoices = InvoiceStore(self.electrum_config)
self.bind(url=self.set_URI) self.bind(uri=self.on_uri)
# were we sent a url?
url = self.electrum_config.get('url', None)
if url:
self.set_URI(url)
# create triggers so as to minimize updation a max of 2 times a sec # create triggers so as to minimize updation a max of 2 times a sec
self._trigger_update_wallet =\ self._trigger_update_wallet =\
@ -217,7 +213,8 @@ class ElectrumWindow(App):
def on_pr(self, pr): def on_pr(self, pr):
if pr.verify(self.contacts): if pr.verify(self.contacts):
key = self.invoices.add(pr) key = self.invoices.add(pr)
self.invoices_screen.update() if self.invoices_screen:
self.invoices_screen.update()
status = self.invoices.get_status(key) status = self.invoices.get_status(key)
if status == PR_PAID: if status == PR_PAID:
self.show_error("invoice already paid") self.show_error("invoice already paid")
@ -241,6 +238,11 @@ class ElectrumWindow(App):
return return
self.send_screen.set_URI(url) self.send_screen.set_URI(url)
def on_uri(self, instance, uri):
if uri:
Logger.info("on uri:", uri)
self.switch_to('send')
self.set_URI(uri)
def update_tab(self, name): def update_tab(self, name):
s = getattr(self, name + '_screen', None) s = getattr(self, name + '_screen', None)
@ -253,8 +255,13 @@ class ElectrumWindow(App):
self.update_tab(tab) self.update_tab(tab)
def switch_to(self, name): def switch_to(self, name):
s = getattr(self, name + '_screen', None)
if self.send_screen is None:
s = self.tabs.ids[name + '_screen']
s.load_screen()
panel = self.tabs.ids.panel
tab = self.tabs.ids[name + '_tab'] tab = self.tabs.ids[name + '_tab']
self.tabs.ids.panel.switch_to(tab) panel.switch_to(tab)
def show_request(self, addr): def show_request(self, addr):
self.receive_address = addr self.receive_address = addr
@ -310,11 +317,15 @@ class ElectrumWindow(App):
'gui/kivy/data/fonts/Roboto-Bold.ttf') 'gui/kivy/data/fonts/Roboto-Bold.ttf')
win.softinput_mode = 'below_target' win.softinput_mode = 'below_target'
self.on_size(win, win.size) self.on_size(win, win.size)
self.init_ui() self.init_ui()
self.load_wallet_by_name(self.electrum_config.get_wallet_path()) self.load_wallet_by_name(self.electrum_config.get_wallet_path())
# init plugins
run_hook('init_kivy', self) run_hook('init_kivy', self)
# were we sent a url?
self.uri = self.electrum_config.get('url')
# default tab
self.switch_to('send' if self.uri else 'history')
def load_wallet_by_name(self, wallet_path): def load_wallet_by_name(self, wallet_path):
if not wallet_path: if not wallet_path:
@ -405,9 +416,13 @@ class ElectrumWindow(App):
# load and focus the ui # load and focus the ui
self.root.manager = self.root.ids['manager'] self.root.manager = self.root.ids['manager']
self.recent_activity_card = None
self.history_screen = None self.history_screen = None
self.contacts_screen = None self.contacts_screen = None
self.send_screen = None
self.invoices_screen = None
self.receive_screen = None
self.requests_screen = None
self.icon = "icons/electrum.png" self.icon = "icons/electrum.png"

View File

@ -468,7 +468,6 @@ class TabbedCarousel(Factory.TabbedPanel):
scroll_x = 0 scroll_x = 0
else: else:
scroll_x = 1. * (n - idx - 1) / (n - 1) scroll_x = 1. * (n - idx - 1) / (n - 1)
mation = Factory.Animation(scroll_x=scroll_x, d=.25) mation = Factory.Animation(scroll_x=scroll_x, d=.25)
mation.cancel_all(scrlv) mation.cancel_all(scrlv)
mation.start(scrlv) mation.start(scrlv)