code-quality: Update code quality kivy/baseclass/inbox
This commit is contained in:
parent
41ce3ef1ba
commit
3eec0da204
|
@ -6,18 +6,14 @@
|
||||||
Kivy UI for inbox screen
|
Kivy UI for inbox screen
|
||||||
"""
|
"""
|
||||||
from kivy.clock import Clock
|
from kivy.clock import Clock
|
||||||
from kivy.properties import (
|
from kivy.properties import ListProperty, StringProperty
|
||||||
ListProperty,
|
|
||||||
StringProperty
|
|
||||||
)
|
|
||||||
from kivy.app import App
|
from kivy.app import App
|
||||||
from kivy.uix.screenmanager import Screen
|
from kivy.uix.screenmanager import Screen
|
||||||
|
|
||||||
from pybitmessage.bitmessagekivy.baseclass.common import kivy_state_variables, load_image_path
|
from pybitmessage.bitmessagekivy.baseclass.common import kivy_state_variables, load_image_path
|
||||||
|
|
||||||
|
|
||||||
class Inbox(Screen):
|
class Inbox(Screen):
|
||||||
"""Inbox Screen class for kivy Ui"""
|
"""Inbox Screen class for Kivy UI"""
|
||||||
|
|
||||||
queryreturn = ListProperty()
|
queryreturn = ListProperty()
|
||||||
has_refreshed = True
|
has_refreshed = True
|
||||||
|
@ -26,33 +22,32 @@ class Inbox(Screen):
|
||||||
label_str = "Yet no message for this account!"
|
label_str = "Yet no message for this account!"
|
||||||
|
|
||||||
def __init__(self, *args, **kwargs):
|
def __init__(self, *args, **kwargs):
|
||||||
"""Initialize kivy variables"""
|
"""Initialize Kivy variables and set up the UI"""
|
||||||
super(Inbox, self).__init__(*args, **kwargs)
|
super().__init__(*args, **kwargs)
|
||||||
self.kivy_running_app = App.get_running_app()
|
self.kivy_running_app = App.get_running_app()
|
||||||
self.kivy_state = kivy_state_variables()
|
self.kivy_state = kivy_state_variables()
|
||||||
self.image_dir = load_image_path()
|
self.image_dir = load_image_path()
|
||||||
Clock.schedule_once(self.init_ui, 0)
|
Clock.schedule_once(self.init_ui, 0)
|
||||||
|
|
||||||
def set_defaultAddress(self):
|
def set_default_address(self):
|
||||||
"""Set default address"""
|
"""Set the default address if none is selected"""
|
||||||
if self.kivy_state.selected_address == "":
|
if not self.kivy_state.selected_address and self.kivy_running_app.identity_list:
|
||||||
if self.kivy_running_app.identity_list:
|
self.kivy_state.selected_address = self.kivy_running_app.identity_list[0]
|
||||||
self.kivy_state.selected_address = self.kivy_running_app.identity_list[0]
|
|
||||||
|
|
||||||
def init_ui(self, dt=0):
|
def init_ui(self, dt=0):
|
||||||
"""loadMessagelist() call at specific interval"""
|
"""Initialize UI and load message list"""
|
||||||
self.loadMessagelist()
|
self.loadMessagelist()
|
||||||
|
|
||||||
def loadMessagelist(self, where="", what=""):
|
def loadMessagelist(self, where="", what=""):
|
||||||
"""Load inbox list for inbox messages"""
|
"""Load inbox messages"""
|
||||||
self.set_defaultAddress()
|
self.set_default_address()
|
||||||
self.account = self.kivy_state.selected_address
|
self.account = self.kivy_state.selected_address
|
||||||
|
|
||||||
def refresh_callback(self, *args):
|
def refresh_callback(self, *args):
|
||||||
"""Load inbox messages while wating-loader spins & called in inbox.kv"""
|
"""Refresh the inbox messages while showing a loading spinner"""
|
||||||
|
|
||||||
def refresh_on_scroll_down(interval):
|
def refresh_on_scroll_down(interval):
|
||||||
"""Reset fields and load data on scrolling upside down"""
|
"""Reset search fields and reload data on scroll"""
|
||||||
self.kivy_state.searching_text = ""
|
self.kivy_state.searching_text = ""
|
||||||
self.children[2].children[1].ids.search_field.text = ""
|
self.children[2].children[1].ids.search_field.text = ""
|
||||||
self.ids.ml.clear_widgets()
|
self.ids.ml.clear_widgets()
|
||||||
|
|
Reference in New Issue
Block a user