Skip to content
Snippets Groups Projects
Commit 0e602266 authored by Ming Rui Zhang's avatar Ming Rui Zhang
Browse files

sip: recover call transfer contact picker

Gitlab: #455

Change-Id: Ib61d6e671d894608dc13b3583f935ebc98453504
parent 1e7f407e
No related branches found
No related tags found
No related merge requests found
......@@ -37,11 +37,9 @@ ContactAdapter::getContactSelectableModel(int type)
if (listModeltype_ == SmartListModel::Type::CONVERSATION) {
defaultModerators_ = lrcInstance_->accountModel().getDefaultModerators(
lrcInstance_->getCurrentAccountId());
smartListModel_.reset(new SmartListModel(this, listModeltype_, lrcInstance_));
smartListModel_->fillConversationsList();
} else {
smartListModel_.reset(new SmartListModel(this, listModeltype_, lrcInstance_));
}
smartListModel_.reset(new SmartListModel(this, listModeltype_, lrcInstance_));
selectableProxyModel_->setSourceModel(smartListModel_.get());
// Adjust filter.
......
......@@ -121,6 +121,8 @@ Popup {
delegate: ContactPickerItemDelegate {
id: contactPickerItemDelegate
showPresenceIndicator: type !== ContactList.TRANSFER
}
}
}
......
......@@ -29,6 +29,8 @@ import "../../commoncomponents"
ItemDelegate {
id: contactPickerItemDelegate
property alias showPresenceIndicator: contactPickerContactImage.showPresenceIndicator
AvatarImage {
id: contactPickerContactImage
......
......@@ -50,8 +50,7 @@ SmartListModel::rowCount(const QModelIndex& parent) const
lrcInstance_->getCurrentAccountId());
auto& convModel = accInfo.conversationModel;
if (listModelType_ == Type::TRANSFER) {
// auto filterType = accInfo.profileInfo.type;
// return convModel->getFilteredConversations(filterType).size();
return convModel->getFilteredConversations(accInfo.profileInfo.type).size();
} else if (listModelType_ == Type::CONFERENCE) {
auto calls = conferenceables_[ConferenceableItem::CALL];
auto contacts = conferenceables_[ConferenceableItem::CONTACT];
......@@ -80,10 +79,10 @@ SmartListModel::data(const QModelIndex& index, int role) const
auto& currentAccountInfo = lrcInstance_->accountModel().getAccountInfo(
lrcInstance_->getCurrentAccountId());
auto& convModel = currentAccountInfo.conversationModel;
auto filterType = currentAccountInfo.profileInfo.type;
return {};
// auto& item = convModel->getFilteredConversations(filterType).at(index.row());
// return dataForItem(item, role);
auto& item = convModel->getFilteredConversations(currentAccountInfo.profileInfo.type)
.at(index.row());
return dataForItem(item, role);
} catch (const std::exception& e) {
qWarning() << e.what();
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment