2023-10-25 12:38:48 +00:00
|
|
|
import logging
|
2023-10-13 15:55:44 +00:00
|
|
|
import typing
|
|
|
|
|
|
|
|
import allure
|
|
|
|
|
|
|
|
import driver
|
|
|
|
from constants import UserCommunityInfo
|
|
|
|
from driver import objects_access
|
|
|
|
from gui.elements.button import Button
|
|
|
|
from gui.elements.object import QObject
|
|
|
|
from gui.elements.text_label import TextLabel
|
|
|
|
from gui.screens.community_settings import CommunitySettingsScreen
|
|
|
|
|
2023-10-25 12:38:48 +00:00
|
|
|
_logger = logging.getLogger(__name__)
|
|
|
|
|
2023-10-13 15:55:44 +00:00
|
|
|
|
|
|
|
class CommunitiesSettingsView(QObject):
|
|
|
|
|
|
|
|
def __init__(self):
|
|
|
|
super().__init__('mainWindow_CommunitiesView')
|
|
|
|
self._community_item = QObject('settingsContentBaseScrollView_listItem_StatusListItem')
|
|
|
|
self._community_template_image = QObject('settings_iconOrImage_StatusSmartIdenticon')
|
|
|
|
self._community_template_name = TextLabel('settings_Name_StatusTextWithLoadingState')
|
|
|
|
self._community_template_description = TextLabel('settings_statusListItemSubTitle')
|
|
|
|
self._community_template_members = TextLabel('settings_member_StatusTextWithLoadingState')
|
|
|
|
self._community_template_button = Button('settings_StatusFlatButton')
|
|
|
|
|
|
|
|
@property
|
|
|
|
@allure.step('Get communities')
|
|
|
|
def communities(self) -> typing.List[UserCommunityInfo]:
|
|
|
|
_communities = []
|
|
|
|
for obj in driver.findAllObjects(self._community_item.real_name):
|
|
|
|
container = driver.objectMap.realName(obj)
|
|
|
|
self._community_template_image.real_name['container'] = container
|
|
|
|
self._community_template_name.real_name['container'] = container
|
|
|
|
self._community_template_description.real_name['container'] = container
|
|
|
|
self._community_template_members.real_name['container'] = container
|
|
|
|
|
2023-10-25 12:38:48 +00:00
|
|
|
name = self._community_template_name.text
|
|
|
|
description = self._community_template_description.text
|
|
|
|
try:
|
|
|
|
members = self._community_template_members.text
|
|
|
|
except LookupError as err:
|
|
|
|
_logger.info(err)
|
|
|
|
members = 0
|
|
|
|
image = self._community_template_image.image
|
|
|
|
|
|
|
|
_communities.append(UserCommunityInfo(name, description, members, image))
|
2023-10-13 15:55:44 +00:00
|
|
|
return _communities
|
|
|
|
|
|
|
|
def _get_community_item(self, name: str):
|
|
|
|
for obj in driver.findAllObjects(self._community_item.real_name):
|
|
|
|
for item in objects_access.walk_children(obj):
|
|
|
|
if getattr(item, 'text', '') == name:
|
|
|
|
return obj
|
|
|
|
raise LookupError(f'Community item: {name} not found')
|
|
|
|
|
|
|
|
@allure.step('Open community info')
|
|
|
|
def get_community_info(self, name: str) -> UserCommunityInfo:
|
|
|
|
for community in self.communities:
|
|
|
|
if community.name == name:
|
|
|
|
return community
|
|
|
|
raise LookupError(f'Community item: {name} not found')
|
|
|
|
|
|
|
|
@allure.step('Open community overview settings')
|
|
|
|
def open_community_overview_settings(self, name: str):
|
|
|
|
driver.mouseClick(self._get_community_item(name))
|
|
|
|
return CommunitySettingsScreen().wait_until_appears()
|