From 4b6335e340afe99e7a9f7f3d2a7e98a0e1c5a031 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 07:59:53 -0800 Subject: [PATCH 01/23] Update user-info-view.js Added trade button --- .../src/components/user-info-view/user-info-view.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/qortal-ui-core/src/components/user-info-view/user-info-view.js b/qortal-ui-core/src/components/user-info-view/user-info-view.js index 0d0818cf..17da98ae 100644 --- a/qortal-ui-core/src/components/user-info-view/user-info-view.js +++ b/qortal-ui-core/src/components/user-info-view/user-info-view.js @@ -1073,7 +1073,7 @@ class UserInfoView extends connect(store)(LitElement) {

${translate("explorerpage.exp2")}: ${this.displayBalance} QORT

- this.openMoreInfoDialog()}>${translate("explorerpage.exp3")} + this.openCompleteInfoDialog()}>${translate("explorerpage.exp3")} this.closeInfoDialog()} dialog-dismiss>${translate("general.close")}
@@ -1162,6 +1162,7 @@ class UserInfoView extends connect(store)(LitElement) {
+ this.openTrades()}>${translate("explorerpage.exp21")} this.closeCompleteInfoDialog()} dialog-dismiss>${translate("general.close")}
@@ -1179,7 +1180,6 @@ class UserInfoView extends connect(store)(LitElement) {
- this.openCompleteInfoDialog()}>

this.openUserBoughtDialog()}>

this.openUserSoldDialog()}>

@@ -1782,7 +1782,7 @@ class UserInfoView extends connect(store)(LitElement) { }).filter(item => !!item) } - openMoreInfoDialog() { + openTrades() { this.shadowRoot.getElementById('userMoreInfoDialog').open() this.shadowRoot.getElementById('userInfoDialog').close() } @@ -1895,4 +1895,4 @@ class UserInfoView extends connect(store)(LitElement) { } } -window.customElements.define('user-info-view', UserInfoView) \ No newline at end of file +window.customElements.define('user-info-view', UserInfoView) From 0fe5ac9ca8861c8d05c364761b89a13af68d13fb Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:00:47 -0800 Subject: [PATCH 02/23] Update us.json --- qortal-ui-core/language/us.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qortal-ui-core/language/us.json b/qortal-ui-core/language/us.json index eff34218..41370e8d 100644 --- a/qortal-ui-core/language/us.json +++ b/qortal-ui-core/language/us.json @@ -714,6 +714,7 @@ "exp17":"ALL PAYMENTS", "exp18":"Payments", "exp19":"Sent", - "exp20":"Received" + "exp20":"Received", + "exp21":"Trades" } } From 6f67ba3cdaadf6949cbec651be06a18f2d4fae35 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:01:59 -0800 Subject: [PATCH 03/23] Update de.json --- qortal-ui-core/language/de.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qortal-ui-core/language/de.json b/qortal-ui-core/language/de.json index 0e2cd415..64abc7ff 100644 --- a/qortal-ui-core/language/de.json +++ b/qortal-ui-core/language/de.json @@ -714,6 +714,7 @@ "exp17":"ALLE ZAHLUNGEN", "exp18":"Zahlungen", "exp19":"Gesendet", - "exp20":"Empfangen" + "exp20":"Empfangen", + "exp21":"Trades" } } From 2615d6a132b4cc2fdcd93aac4edd556dc5c80e81 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:17:53 -0800 Subject: [PATCH 04/23] Update user-info-view.js --- .../user-info-view/user-info-view.js | 37 +++++++------------ 1 file changed, 13 insertions(+), 24 deletions(-) diff --git a/qortal-ui-core/src/components/user-info-view/user-info-view.js b/qortal-ui-core/src/components/user-info-view/user-info-view.js index 17da98ae..24245058 100644 --- a/qortal-ui-core/src/components/user-info-view/user-info-view.js +++ b/qortal-ui-core/src/components/user-info-view/user-info-view.js @@ -1063,21 +1063,6 @@ class UserInfoView extends connect(store)(LitElement) { render() { return html` - -
- ${translate("mintingpage.mchange27")} ${this.displayLevel} - ${this.founderBadge()} - ${this.avatarImage()} -

${this.infoAccountName}

-

${this.displayAddress}

-

${translate("explorerpage.exp2")}: ${this.displayBalance} QORT

-
-
- this.openCompleteInfoDialog()}>${translate("explorerpage.exp3")} - this.closeInfoDialog()} dialog-dismiss>${translate("general.close")} -
-
-

${this.infoAccountName}

@@ -1518,6 +1503,19 @@ class UserInfoView extends connect(store)(LitElement) { this.shadowRoot.getElementById('showTxDetailsDialog').open() } + async getAllWithAddress(myAddress) { + await this.getAddressUserInfo(myAddress) + await this.getAddressUserAvatar(myAddress) + await this.getAddressUserBalance(myAddress) + this.displayAddress = this.addressResult.address + this.displayLevel = this.addressResult.level + this.isLoadingCompleteInfo = true + this.shadowRoot.getElementById('userFullInfoDialog').open() + await this.getStartMint() + await this.getPaymentsGridItems() + this.isLoadingCompleteInfo = false + } + async getBoughtBTCGridItems() { const myNode = store.getState().app.nodeConfig.knownNodes[store.getState().app.nodeConfig.node] const nodeUrl = myNode.protocol + '://' + myNode.domain + ':' + myNode.port @@ -1787,15 +1785,6 @@ class UserInfoView extends connect(store)(LitElement) { this.shadowRoot.getElementById('userInfoDialog').close() } - async openCompleteInfoDialog() { - this.isLoadingCompleteInfo = true - this.shadowRoot.getElementById('userFullInfoDialog').open() - this.shadowRoot.getElementById('userMoreInfoDialog').close() - await this.getStartMint() - await this.getPaymentsGridItems() - this.isLoadingCompleteInfo = false - } - async openUserBoughtDialog() { this.shadowRoot.getElementById('userBoughtDialog').open() this.explorerBoughtBTCTrades = [] From 988980f5d364cbd2c7a4babff6370b3e59898875 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:20:03 -0800 Subject: [PATCH 05/23] Update es.json --- qortal-ui-core/language/es.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/qortal-ui-core/language/es.json b/qortal-ui-core/language/es.json index 00ccd4ea..44ec6802 100644 --- a/qortal-ui-core/language/es.json +++ b/qortal-ui-core/language/es.json @@ -715,5 +715,6 @@ "exp18":"Pagos", "exp19":"Enviado", "exp20":"Recibido" + "exp21":"Oficios" } -} \ No newline at end of file +} From 518738e15ff9e48c68d40e4d5f56025967138971 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:20:44 -0800 Subject: [PATCH 06/23] Update fr.json --- qortal-ui-core/language/fr.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/fr.json b/qortal-ui-core/language/fr.json index 047ad02a..a96d51f3 100644 --- a/qortal-ui-core/language/fr.json +++ b/qortal-ui-core/language/fr.json @@ -714,6 +714,7 @@ "exp17":"TOUS LES PAIEMENTS", "exp18":"Paiements", "exp19":"Envoyé", - "exp20":"Reçu" + "exp20":"Reçu", + "exp21":"Métiers" } -} \ No newline at end of file +} From 3d4d01a6cf32e01761318ced19ebb08becffc219 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:21:06 -0800 Subject: [PATCH 07/23] Update es.json --- qortal-ui-core/language/es.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qortal-ui-core/language/es.json b/qortal-ui-core/language/es.json index 44ec6802..ea86f955 100644 --- a/qortal-ui-core/language/es.json +++ b/qortal-ui-core/language/es.json @@ -714,7 +714,7 @@ "exp17":"TODOS LOS PAGOS", "exp18":"Pagos", "exp19":"Enviado", - "exp20":"Recibido" + "exp20":"Recibido", "exp21":"Oficios" } } From 200d14e4344c79f419d6b4da699bd1c20244437c Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:22:01 -0800 Subject: [PATCH 08/23] Update hr.json --- qortal-ui-core/language/hr.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/hr.json b/qortal-ui-core/language/hr.json index 3172d663..c877db78 100644 --- a/qortal-ui-core/language/hr.json +++ b/qortal-ui-core/language/hr.json @@ -715,6 +715,7 @@ "exp17":"SVA PLAĆANJA", "exp18":"Plaćanja", "exp19":"Poslano", - "exp20":"Primljeno" + "exp20":"Primljeno", + "exp21":"Obrta", } -} \ No newline at end of file +} From 1881858c3a4c15ed0d371ec28cb1d24c6e899c8c Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:22:43 -0800 Subject: [PATCH 09/23] Update hu.json --- qortal-ui-core/language/hu.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/hu.json b/qortal-ui-core/language/hu.json index 67274c4d..5d4d4af1 100644 --- a/qortal-ui-core/language/hu.json +++ b/qortal-ui-core/language/hu.json @@ -714,6 +714,7 @@ "exp17":"MINDEN FIZETÉS", "exp18":"Kifizetések", "exp19":"Elküldve", - "exp20":"Fogadott" + "exp20":"Fogadott", + "exp21":"Passzátszelek" } -} \ No newline at end of file +} From ac94fdd53fbc081316d2bba199a0cd4ad4723e6c Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:23:50 -0800 Subject: [PATCH 10/23] Update hindi.json --- qortal-ui-core/language/hindi.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/hindi.json b/qortal-ui-core/language/hindi.json index ac18e0fc..2c1a7ea4 100644 --- a/qortal-ui-core/language/hindi.json +++ b/qortal-ui-core/language/hindi.json @@ -715,6 +715,7 @@ "exp17":"सभी भुगतान", "exp18":"भुगतान", "exp19":"भेजा गया", - "exp20":"प्राप्त" + "exp20":"प्राप्त", + "exp21":"ट्रेडों" } -} \ No newline at end of file +} From 6dd061d6405dd854f096c4c7960c6cbfdbafc7ee Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:24:30 -0800 Subject: [PATCH 11/23] Update it.json --- qortal-ui-core/language/it.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/it.json b/qortal-ui-core/language/it.json index 6d583861..79c748e4 100644 --- a/qortal-ui-core/language/it.json +++ b/qortal-ui-core/language/it.json @@ -714,6 +714,7 @@ "exp17":"TUTTI I PAGAMENTI", "exp18":"Pagamenti", "exp19":"Inviato", - "exp20":"Ricevuto" + "exp20":"Ricevuto", + "exp21":"Mestieri" } -} \ No newline at end of file +} From 5f096e0761d0189ab9878ec8a74db20518bce6ef Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:25:13 -0800 Subject: [PATCH 12/23] Update ko.json --- qortal-ui-core/language/ko.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/ko.json b/qortal-ui-core/language/ko.json index 2a9779b9..de167a31 100644 --- a/qortal-ui-core/language/ko.json +++ b/qortal-ui-core/language/ko.json @@ -714,6 +714,7 @@ "exp17":"모든 결제", "exp18":"결제", "exp19":"보냈습니다", - "exp20":"수신됨" + "exp20":"수신됨", + "exp21":"거래" } -} \ No newline at end of file +} From c05f8388e54f138f1f90352b30c24cddabbbebca Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:26:00 -0800 Subject: [PATCH 13/23] Update no.json --- qortal-ui-core/language/no.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/no.json b/qortal-ui-core/language/no.json index 5dc9a729..79ebccab 100644 --- a/qortal-ui-core/language/no.json +++ b/qortal-ui-core/language/no.json @@ -714,6 +714,7 @@ "exp17":"ALLE BETALINGER", "exp18":"Betalinger", "exp19":"Sendt", - "exp20":"Motta" + "exp20":"Motta", + "exp21":"Handler" } -} \ No newline at end of file +} From c0df55dc7e8acd73de10d520ce981b07051a28a5 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:26:57 -0800 Subject: [PATCH 14/23] Update pl.json --- qortal-ui-core/language/pl.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/pl.json b/qortal-ui-core/language/pl.json index dfc77238..460cc01c 100644 --- a/qortal-ui-core/language/pl.json +++ b/qortal-ui-core/language/pl.json @@ -714,6 +714,7 @@ "exp17":"WSZYSTKIE PŁATNOŚCI", "exp18":"Płatności", "exp19":"Wysłane", - "exp20":"Otrzymano" + "exp20":"Otrzymano", + "exp21":"Transakcji" } -} \ No newline at end of file +} From 8121d56a09236dea75abcf818d16430561ef0351 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:27:52 -0800 Subject: [PATCH 15/23] Update pt.json --- qortal-ui-core/language/pt.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/pt.json b/qortal-ui-core/language/pt.json index 334d23a7..56754f31 100644 --- a/qortal-ui-core/language/pt.json +++ b/qortal-ui-core/language/pt.json @@ -714,6 +714,7 @@ "exp17":"TODOS OS PAGAMENTOS", "exp18":"Pagamentos", "exp19":"Enviado", - "exp20":"Recebido" + "exp20":"Recebido", + "exp21":"Comércios" } -} \ No newline at end of file +} From 03a58d9e6f661a0c95b21944de5244d96ccc63ce Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:28:41 -0800 Subject: [PATCH 16/23] Update rs.json --- qortal-ui-core/language/rs.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/rs.json b/qortal-ui-core/language/rs.json index 0b383550..df8042b6 100644 --- a/qortal-ui-core/language/rs.json +++ b/qortal-ui-core/language/rs.json @@ -714,6 +714,7 @@ "exp17": "SVA PLAĆANJA", "exp18":"Plaćanja", "exp19":"Poslato", - "exp20":"Primljeno" + "exp20":"Primljeno", + "exp21":"Trgovine" } -} \ No newline at end of file +} From b687ce547eb7020d96c9bd6ef8dfd6d3c5ecfc57 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:29:35 -0800 Subject: [PATCH 17/23] Update ro.json --- qortal-ui-core/language/ro.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/ro.json b/qortal-ui-core/language/ro.json index 50913767..a1321514 100644 --- a/qortal-ui-core/language/ro.json +++ b/qortal-ui-core/language/ro.json @@ -714,6 +714,7 @@ "exp17":"TOATE PLĂTILE", "exp18":"Plăti", "exp19":"Trimis", - "exp20":"Primit" + "exp20":"Primit", + "exp21":"Meserii" } -} \ No newline at end of file +} From f9377b8772af72db332994e16d55eef412a3bc6d Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:30:17 -0800 Subject: [PATCH 18/23] Update ru.json --- qortal-ui-core/language/ru.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/ru.json b/qortal-ui-core/language/ru.json index 059f3341..5278e99c 100644 --- a/qortal-ui-core/language/ru.json +++ b/qortal-ui-core/language/ru.json @@ -714,6 +714,7 @@ "exp17":"ВСЕ ПЛАТЕЖИ", "exp18":"Платежи", "exp19":"Отправлено", - "exp20":"Получено" + "exp20":"Получено", + "exp21":"Сделок" } -} \ No newline at end of file +} From aa237190ace74137ea2094cec9fc2fb88bd0af90 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:30:58 -0800 Subject: [PATCH 19/23] Update zhc.json --- qortal-ui-core/language/zhc.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/zhc.json b/qortal-ui-core/language/zhc.json index 34bdfb6b..33e55ba5 100644 --- a/qortal-ui-core/language/zhc.json +++ b/qortal-ui-core/language/zhc.json @@ -714,6 +714,7 @@ "exp17":"所有付款", "exp18":"付款", "exp19":"已发送", - "exp20":"收到" + "exp20":"收到", + "exp21":"行业" } -} \ No newline at end of file +} From 5f2cd8f6a3c8eaa43884a9a37c31f074ea9fbab3 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:31:40 -0800 Subject: [PATCH 20/23] Update zht.json --- qortal-ui-core/language/zht.json | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qortal-ui-core/language/zht.json b/qortal-ui-core/language/zht.json index 0acf6dd8..a7275455 100644 --- a/qortal-ui-core/language/zht.json +++ b/qortal-ui-core/language/zht.json @@ -714,6 +714,7 @@ "exp17":"所有付款", "exp18":"付款", "exp19":"已發送", - "exp20":"收到" + "exp20":"收到", + "exp21":"行業" } -} \ No newline at end of file +} From 6f51ab39ff9d7b095b491a5cbe0c83b2361385e9 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 08:46:20 -0800 Subject: [PATCH 21/23] Update user-info-view.js --- .../src/components/user-info-view/user-info-view.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/qortal-ui-core/src/components/user-info-view/user-info-view.js b/qortal-ui-core/src/components/user-info-view/user-info-view.js index 24245058..646d5a43 100644 --- a/qortal-ui-core/src/components/user-info-view/user-info-view.js +++ b/qortal-ui-core/src/components/user-info-view/user-info-view.js @@ -1841,10 +1841,6 @@ class UserInfoView extends connect(store)(LitElement) { this.isLoadingSoldTradesARRR = false } - closeInfoDialog() { - this.shadowRoot.getElementById('userInfoDialog').close() - } - closeErrorDialog() { this.shadowRoot.getElementById('userErrorDialog').close() } From faad4181d556cd96be4c4a13d134ebd254a312e4 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 09:03:15 -0800 Subject: [PATCH 22/23] Update user-info-view.js --- .../user-info-view/user-info-view.js | 35 +++++++------------ 1 file changed, 13 insertions(+), 22 deletions(-) diff --git a/qortal-ui-core/src/components/user-info-view/user-info-view.js b/qortal-ui-core/src/components/user-info-view/user-info-view.js index 646d5a43..53421bae 100644 --- a/qortal-ui-core/src/components/user-info-view/user-info-view.js +++ b/qortal-ui-core/src/components/user-info-view/user-info-view.js @@ -1147,7 +1147,7 @@ class UserInfoView extends connect(store)(LitElement) {
- this.openTrades()}>${translate("explorerpage.exp21")} + this.openTrades()}>${translate("explorerpage.exp3")} this.closeCompleteInfoDialog()} dialog-dismiss>${translate("general.close")}
@@ -1163,17 +1163,17 @@ class UserInfoView extends connect(store)(LitElement) {
- +
this.openUserBoughtDialog()}>

this.openUserSoldDialog()}>

- this.closeMoreInfoDialog()} dialog-dismiss>${translate("general.close")} + this.closeTrades()} dialog-dismiss>${translate("general.close")}
- +
${this.boughtBTCTemplate()} @@ -1193,7 +1193,7 @@ class UserInfoView extends connect(store)(LitElement) {
- +
${this.soldBTCTemplate()} @@ -1313,7 +1313,11 @@ class UserInfoView extends connect(store)(LitElement) { await this.getAddressUserBalance(myAddress) this.displayAddress = this.addressResult.address this.displayLevel = this.addressResult.level - this.shadowRoot.getElementById('userInfoDialog').open() + this.isLoadingCompleteInfo = true + this.shadowRoot.getElementById('userFullInfoDialog').open() + await this.getStartMint() + await this.getPaymentsGridItems() + this.isLoadingCompleteInfo = false } async getAddressUserInfo(infoAddress) { @@ -1503,19 +1507,6 @@ class UserInfoView extends connect(store)(LitElement) { this.shadowRoot.getElementById('showTxDetailsDialog').open() } - async getAllWithAddress(myAddress) { - await this.getAddressUserInfo(myAddress) - await this.getAddressUserAvatar(myAddress) - await this.getAddressUserBalance(myAddress) - this.displayAddress = this.addressResult.address - this.displayLevel = this.addressResult.level - this.isLoadingCompleteInfo = true - this.shadowRoot.getElementById('userFullInfoDialog').open() - await this.getStartMint() - await this.getPaymentsGridItems() - this.isLoadingCompleteInfo = false - } - async getBoughtBTCGridItems() { const myNode = store.getState().app.nodeConfig.knownNodes[store.getState().app.nodeConfig.node] const nodeUrl = myNode.protocol + '://' + myNode.domain + ':' + myNode.port @@ -1781,7 +1772,7 @@ class UserInfoView extends connect(store)(LitElement) { } openTrades() { - this.shadowRoot.getElementById('userMoreInfoDialog').open() + this.shadowRoot.getElementById('userTrades').open() this.shadowRoot.getElementById('userInfoDialog').close() } @@ -1845,8 +1836,8 @@ class UserInfoView extends connect(store)(LitElement) { this.shadowRoot.getElementById('userErrorDialog').close() } - closeMoreInfoDialog() { - this.shadowRoot.getElementById('userMoreInfoDialog').close() + closeTrades() { + this.shadowRoot.getElementById('userTrades').close() } closeCompleteInfoDialog() { From f5e0bdcccd88d3b033a25ea728265de98bd7c277 Mon Sep 17 00:00:00 2001 From: Pigpig105 <81789882+Pigpig105@users.noreply.github.com> Date: Tue, 29 Nov 2022 09:07:32 -0800 Subject: [PATCH 23/23] Update user-info-view.js --- qortal-ui-core/src/components/user-info-view/user-info-view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qortal-ui-core/src/components/user-info-view/user-info-view.js b/qortal-ui-core/src/components/user-info-view/user-info-view.js index 53421bae..ada00969 100644 --- a/qortal-ui-core/src/components/user-info-view/user-info-view.js +++ b/qortal-ui-core/src/components/user-info-view/user-info-view.js @@ -1147,7 +1147,7 @@ class UserInfoView extends connect(store)(LitElement) {
- this.openTrades()}>${translate("explorerpage.exp3")} + this.openTrades()}>${translate("explorerpage.exp21")} this.closeCompleteInfoDialog()} dialog-dismiss>${translate("general.close")}