mirror of
https://github.com/LBRYFoundation/LBRY-Vault.git
synced 2025-08-26 23:13:25 +00:00
kivy: requests/invoices dialogs improvements
This commit is contained in:
parent
beac1c4ddc
commit
d19fc56eb8
4 changed files with 29 additions and 11 deletions
|
@ -20,6 +20,7 @@ Builder.load_string('''
|
|||
amount: 0
|
||||
title: ''
|
||||
data: ''
|
||||
description:''
|
||||
status_color: 1,1,1,1
|
||||
status_str:''
|
||||
warning: ''
|
||||
|
@ -34,7 +35,14 @@ Builder.load_string('''
|
|||
padding: '10dp'
|
||||
spacing: '10dp'
|
||||
TopLabel:
|
||||
text: root.data
|
||||
text: _('Invoice data')+ ':'
|
||||
RefLabel:
|
||||
data: root.data
|
||||
name: _('Data')
|
||||
TopLabel:
|
||||
text: _('Description') + ':'
|
||||
RefLabel:
|
||||
data: root.description or _('No description')
|
||||
TopLabel:
|
||||
text: _('Amount') + ': ' + app.format_amount_and_units(root.amount)
|
||||
TopLabel:
|
||||
|
@ -86,6 +94,7 @@ class InvoiceDialog(Factory.Popup):
|
|||
self.key = key
|
||||
r = self.app.wallet.get_invoice(key)
|
||||
self.amount = r.get('amount')
|
||||
self.description = r.get('message') or r.get('memo','')
|
||||
self.is_lightning = r.get('type') == PR_TYPE_LN
|
||||
self.update_status()
|
||||
self.log = self.app.wallet.lnworker.logs[self.key] if self.is_lightning else []
|
||||
|
|
|
@ -14,6 +14,7 @@ Builder.load_string('''
|
|||
id: popup
|
||||
amount: 0
|
||||
title: ''
|
||||
description:''
|
||||
data: ''
|
||||
warning: ''
|
||||
status_str: ''
|
||||
|
@ -35,7 +36,14 @@ Builder.load_string('''
|
|||
touch = args[1]
|
||||
if self.collide_point(*touch.pos): self.shaded = not self.shaded
|
||||
TopLabel:
|
||||
text: root.data
|
||||
text: _('Data')+ ':'
|
||||
RefLabel:
|
||||
data: root.data
|
||||
name: _('Request data')
|
||||
TopLabel:
|
||||
text: _('Description') + ':'
|
||||
RefLabel:
|
||||
data: root.description or _('No description')
|
||||
TopLabel:
|
||||
text: _('Amount') + ': ' + app.format_amount_and_units(root.amount)
|
||||
TopLabel:
|
||||
|
@ -82,6 +90,7 @@ class RequestDialog(Factory.Popup):
|
|||
self.key = key
|
||||
r = self.app.wallet.get_request(key)
|
||||
self.amount = r.get('amount')
|
||||
self.description = r.get('message', '')
|
||||
self.is_lightning = r.get('type') == PR_TYPE_LN
|
||||
self.update_status()
|
||||
|
||||
|
|
|
@ -217,8 +217,6 @@ class SendScreen(CScreen):
|
|||
self.payment_request_queued = None
|
||||
_list = self.app.wallet.get_invoices()
|
||||
_list.reverse()
|
||||
lnworker_logs = self.app.wallet.lnworker.logs if self.app.wallet.lnworker else {}
|
||||
_list = [x for x in _list if x and x.get('status') != PR_PAID or x.get('rhash') in lnworker_logs]
|
||||
payments_container = self.ids.payments_container
|
||||
payments_container.data = [self.get_card(item) for item in _list]
|
||||
|
||||
|
@ -478,8 +476,8 @@ class ReceiveScreen(CScreen):
|
|||
ci['key'] = key
|
||||
ci['amount'] = self.app.format_amount_and_units(amount) if amount else ''
|
||||
ci['memo'] = description
|
||||
ci['status'] = status_str
|
||||
ci['is_expired'] = status == PR_EXPIRED
|
||||
ci['status'] = status
|
||||
ci['status_str'] = status_str
|
||||
return ci
|
||||
|
||||
def update(self):
|
||||
|
@ -488,7 +486,7 @@ class ReceiveScreen(CScreen):
|
|||
_list = self.app.wallet.get_sorted_requests()
|
||||
_list.reverse()
|
||||
requests_container = self.ids.requests_container
|
||||
requests_container.data = [self.get_card(item) for item in _list if item.get('status') != PR_PAID]
|
||||
requests_container.data = [self.get_card(item) for item in _list]
|
||||
|
||||
def show_item(self, obj):
|
||||
self.app.show_request(obj.is_lightning, obj.key)
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
#:import _ electrum.gui.kivy.i18n._
|
||||
#:import pr_color electrum.util.pr_color
|
||||
#:import PR_UNKNOWN electrum.util.PR_UNKNOWN
|
||||
#:import Factory kivy.factory.Factory
|
||||
#:import Decimal decimal.Decimal
|
||||
#:set btc_symbol chr(171)
|
||||
|
@ -13,11 +15,11 @@
|
|||
valign: 'top'
|
||||
|
||||
<RequestItem@CardItem>
|
||||
is_expired: False
|
||||
address: ''
|
||||
memo: ''
|
||||
amount: ''
|
||||
status: ''
|
||||
status_str: ''
|
||||
status: PR_UNKNOWN
|
||||
BoxLayout:
|
||||
spacing: '8dp'
|
||||
height: '32dp'
|
||||
|
@ -44,10 +46,10 @@
|
|||
font_size: '15sp'
|
||||
Widget
|
||||
RequestLabel:
|
||||
text: root.status
|
||||
text: root.status_str
|
||||
halign: 'right'
|
||||
font_size: '13sp'
|
||||
color: (1., .2, .2, 1) if root.is_expired else (.7, .7, .7, 1)
|
||||
color: pr_color[root.status]
|
||||
Widget
|
||||
|
||||
<RequestRecycleView>:
|
||||
|
|
Loading…
Add table
Reference in a new issue