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

chatview: use recipient's name in the send message input placeholder

for LRC issue:
Gitlab: #443

Change-Id: I761901acc2dfca698cbb3bb4776924b58b0724da
parent 0d5361fc
No related branches found
No related tags found
No related merge requests found
......@@ -71,15 +71,16 @@ MessagesAdapter::setupChatView(const QString& convUid)
auto selectedAccountId = LRCInstance::getCurrAccId();
auto& accountInfo = LRCInstance::accountModel().getAccountInfo(selectedAccountId);
lrc::api::profile::Type contactType = lrc::api::profile::Type::INVALID;
lrc::api::contact::Info contactInfo;
try {
auto contactInfo = accountInfo.contactModel->getContact(contactURI);
contactType = contactInfo.profileInfo.type;
contactInfo = accountInfo.contactModel->getContact(contactURI);
} catch (...) {
}
bool shouldShowSendContactRequestBtn = (contactType == lrc::api::profile::Type::PENDING
|| contactType == lrc::api::profile::Type::TEMPORARY);
bool shouldShowSendContactRequestBtn = (contactInfo.profileInfo.type
== lrc::api::profile::Type::PENDING
|| contactInfo.profileInfo.type
== lrc::api::profile::Type::TEMPORARY);
QMetaObject::invokeMethod(qmlObj_,
"setSendContactRequestButtonVisible",
......@@ -111,6 +112,10 @@ MessagesAdapter::setupChatView(const QString& convUid)
requestSendMessageContent();
currentConvUid_ = convUid;
QString s = QString::fromLatin1("reset_message_bar_input(`%1`);")
.arg(accountInfo.contactModel->bestNameForContact(contactURI));
QMetaObject::invokeMethod(qmlObj_, "webViewRunJavaScript", Q_ARG(QVariant, s));
}
void
......
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