status-desktop/libs/Wallet/src/WalletController.cpp

88 lines
2.4 KiB
C++
Raw Normal View History

#include "Status/Wallet/WalletController.h"
#include <QJSEngine>
2022-10-19 13:41:53 +00:00
#include <QQmlEngine>
#include <StatusGo/Wallet/WalletApi.h>
#include <StatusGo/Accounts/Accounts.h>
2022-10-19 13:41:53 +00:00
#include <StatusGo/Accounts/AccountsAPI.h>
#include <StatusGo/Accounts/accounts_types.h>
#include <StatusGo/Metadata/api_response.h>
#include <StatusGo/Types.h>
2022-10-19 13:41:53 +00:00
#include <StatusGo/Utils.h>
#include <Onboarding/Common/Constants.h>
#include "AccountAssetsController.h"
2022-10-19 13:41:53 +00:00
#include "NewWalletAccountController.h"
#include "SavedAddressesController.h"
namespace GoAccounts = Status::StatusGo::Accounts;
namespace WalletGo = Status::StatusGo::Wallet;
namespace UtilsSG = Status::StatusGo::Utils;
namespace StatusGo = Status::StatusGo;
2022-10-19 13:41:53 +00:00
namespace Status::Wallet
{
WalletController::WalletController()
: m_accounts(Helpers::makeSharedQObject<AccountsModel>(std::move(getWalletAccounts()), "account"))
, m_currentAccount(m_accounts->get(0))
2022-10-19 13:41:53 +00:00
{ }
2022-10-19 13:41:53 +00:00
WalletController* WalletController::create(QQmlEngine* qmlEngine, QJSEngine* jsEngine)
{
return new WalletController();
}
NewWalletAccountController* WalletController::createNewWalletAccountController() const
{
return new NewWalletAccountController(m_accounts);
}
2022-10-19 13:41:53 +00:00
SavedAddressesController* WalletController::createSavedAddressesController() const
{
return new SavedAddressesController();
}
QAbstractListModel* WalletController::accountsModel() const
{
return m_accounts.get();
}
2022-10-19 13:41:53 +00:00
WalletAccount* WalletController::currentAccount() const
{
return m_currentAccount.get();
}
void WalletController::setCurrentAccountIndex(int index)
{
assert(index >= 0 && index < m_accounts->size());
auto newCurrentAccount = m_accounts->get(index);
2022-10-19 13:41:53 +00:00
if(m_currentAccount == newCurrentAccount) return;
m_currentAccount = newCurrentAccount;
emit currentAccountChanged();
}
2022-10-19 13:41:53 +00:00
AccountAssetsController* WalletController::createAccountAssetsController(WalletAccount* account)
{
return new AccountAssetsController(account);
}
std::vector<WalletAccountPtr> WalletController::getWalletAccounts(bool rootWalletAccountsOnly) const
{
auto all = GoAccounts::getAccounts();
std::vector<WalletAccountPtr> result;
2022-10-19 13:41:53 +00:00
for(auto account : all)
{
if(!account.isChat && (!rootWalletAccountsOnly || account.isWallet))
result.push_back(Helpers::makeSharedQObject<WalletAccount>(std::move(account)));
}
return result;
}
2022-10-19 13:41:53 +00:00
} // namespace Status::Wallet