continues writing the string formating of multi page options
This commit is contained in:
parent
3a842920e8
commit
bbb2f0831b
@ -5,6 +5,9 @@ def search_pages():
|
|||||||
search = pages.Search("#a Happy Days")
|
search = pages.Search("#a Happy Days")
|
||||||
print("metadata", search.pages)
|
print("metadata", search.pages)
|
||||||
print("audio", search.audio_pages)
|
print("audio", search.audio_pages)
|
||||||
|
|
||||||
|
print()
|
||||||
|
print(search._current_option)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
@ -4,7 +4,7 @@ from typing import Tuple, List, Set, Dict, Type
|
|||||||
from . import page_attributes
|
from . import page_attributes
|
||||||
from ..abstract import Page
|
from ..abstract import Page
|
||||||
|
|
||||||
from ...objects import Options
|
from ...objects import Options, DatabaseObject
|
||||||
|
|
||||||
|
|
||||||
class MultiPageOptions:
|
class MultiPageOptions:
|
||||||
@ -27,10 +27,22 @@ class MultiPageOptions:
|
|||||||
def __repr__(self) -> str:
|
def __repr__(self) -> str:
|
||||||
lines: List[str] = []
|
lines: List[str] = []
|
||||||
|
|
||||||
|
page_name_fill = "-"
|
||||||
|
max_page_len = 21
|
||||||
|
|
||||||
j = 0
|
j = 0
|
||||||
for page, options in self._current_option_dict.items():
|
for page, options in self._current_option_dict.items():
|
||||||
lines.append(f"----------{page.__name__}----------")
|
lines.append(f"----------{page.__name__:{page_name_fill}<{max_page_len}}----------")
|
||||||
|
|
||||||
|
option_obj: DatabaseObject
|
||||||
|
for i, option_obj in enumerate(options):
|
||||||
|
if i >= self.max_displayed_options:
|
||||||
|
lines.append("...")
|
||||||
|
break
|
||||||
|
|
||||||
|
lines.append(f"{j+i:0{self.option_digits}} {option_obj.option_string}")
|
||||||
|
|
||||||
|
j += i + 1
|
||||||
|
|
||||||
return "\n".join(lines)
|
return "\n".join(lines)
|
||||||
|
|
||||||
@ -99,5 +111,4 @@ class Search:
|
|||||||
for page in self.pages:
|
for page in self.pages:
|
||||||
self._current_option[page] = page.search_by_query(query=query)
|
self._current_option[page] = page.search_by_query(query=query)
|
||||||
|
|
||||||
print(self._current_option)
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user