Browse Source

remove fixed username

resolve-20231003
PhilReact 1 year ago
parent
commit
063b4649b2
  1. 6
      plugins/plugins/core/components/ChatPage.js
  2. 20
      plugins/plugins/core/components/ChatScroller.js
  3. 15
      plugins/plugins/core/messaging/q-chat/q-chat.src.js

6
plugins/plugins/core/components/ChatPage.js

@ -126,7 +126,9 @@ class ChatPage extends LitElement {
updateMessageHash: { type: Object},
oldMessages: {type: Array},
messageQueue: {type: Array},
isInProcessQueue: {type: Boolean}
isInProcessQueue: {type: Boolean},
loggedInUserName: {type: String},
loggedInUserAddress: {type: String}
}
}
@ -2610,6 +2612,8 @@ class ChatPage extends LitElement {
.updateMessageHash=${this.updateMessageHash}
.clearUpdateMessageHashmap=${this.clearUpdateMessageHashmap}
.messageQueue=${this.messageQueue}
loggedInUserName=${this.loggedInUserName}
loggedInUserAddress=${this.loggedInUserAddress}
>
</chat-scroller>
`

20
plugins/plugins/core/components/ChatScroller.js

@ -46,6 +46,8 @@ const getApiKey = () => {
return apiKey
}
const extractComponents = async (url) => {
if (!url.startsWith("qortal://")) {
return null
@ -246,7 +248,9 @@ class ChatScroller extends LitElement {
disableFetching: {type: Boolean},
isLoadingBefore: {type: Boolean},
isLoadingAfter: {type: Boolean},
messageQueue: {type: Array}
messageQueue: {type: Array},
loggedInUserName: {type: String},
loggedInUserAddress: {type: String}
}
}
@ -744,12 +748,10 @@ class ChatScroller extends LitElement {
.escapeHTML=${this.escapeHTML}
.messageObj=${{
decodedMessage: message.messageText,
"timestamp": message.timestamp,
"sender": "QWxEcmZxnM8yb1p92C1YKKRsp8svSVbFEs",
"senderName": "palmas",
"signature": "4B6hHMHTnSvXTMmQb73P4Yr2o772zu7XxiTiRQv8GsgysNaoc9UCUqb9x7ihz2Su6xCREZUvgACmFpHY2gzUbYHf",
"sender": this.loggedInUserAddress,
"senderName": this.loggedInUserName,
"signature": "",
}}
.hideMessages=${this.hideMessages}
.setRepliedToMessageObj=${this.setRepliedToMessageObj}
@ -796,6 +798,9 @@ class ChatScroller extends LitElement {
if (changedProperties.has('userName')) {
return true
}
if(changedProperties.has('loggedInUserName')){
return true
}
if (changedProperties.has('updateMessageHash')) {
return true
}
@ -1557,6 +1562,7 @@ class MessageTemplate extends LitElement {
</div>
</div>
</div>
${this.isInProgress ? '' : html`
<chat-menu
tabindex="0"
class="chat-hover"
@ -1584,6 +1590,8 @@ class MessageTemplate extends LitElement {
.gif=${!!gif}
>
</chat-menu>
`}
</div>
<div class="message-reactions" style="${reactions.length > 0 &&
'margin-top: 10px; margin-bottom: 5px;'}">

15
plugins/plugins/core/messaging/q-chat/q-chat.src.js

@ -53,7 +53,9 @@ class Chat extends LitElement {
userFoundModalOpen: { type: Boolean },
userSelected: { type: Object },
editor: {type: Object},
groupInvites: { type: Array }
groupInvites: { type: Array },
loggedInUserName: {type: String},
loggedInUserAddress: {type: String},
}
}
@ -92,6 +94,7 @@ class Chat extends LitElement {
this.userFoundModalOpen = false
this.userSelected = {}
this.groupInvites = []
this.loggedInUserName = ""
}
async setActiveChatHeadUrl(url) {
@ -145,6 +148,8 @@ class Chat extends LitElement {
this.unsubscribeStore = window.parent.reduxStore.subscribe(() => {
try {
const currentState = window.parent.reduxStore.getState();
if(window.parent.location && window.parent.location.search) {
const queryString = window.parent.location.search
const params = new URLSearchParams(queryString)
@ -156,6 +161,12 @@ class Chat extends LitElement {
this.setActiveChatHeadUrl(chat)
}
}
if(currentState.app.accountInfo && currentState.app.accountInfo.names && currentState.app.accountInfo.names.length > 0 && this.loggedInUserName !== currentState.app.accountInfo.names[0].name){
this.loggedInUserName = currentState.app.accountInfo.names[0].name
}
if(currentState.app.accountInfo && currentState.app.accountInfo.addressInfo && currentState.app.accountInfo.addressInfo.address && this.loggedInUserAddress !== currentState.app.accountInfo.addressInfo.address){
this.loggedInUserAddress = currentState.app.accountInfo.addressInfo.address
}
} catch (error) {
}
})
@ -831,6 +842,8 @@ class Chat extends LitElement {
.setOpenPrivateMessage=${(val) => this.setOpenPrivateMessage(val)}
.setActiveChatHeadUrl=${(val)=> this.setActiveChatHeadUrl(val)}
balance=${this.balance}
loggedInUserName=${this.loggedInUserName}
loggedInUserAddress=${this.loggedInUserAddress}
>
</chat-page>
`

Loading…
Cancel
Save