Browse Source

added wallet fields

pull/219/head
PhilReact 11 months ago
parent
commit
ce3129ae7e
  1. 3
      core/language/us.json
  2. 51
      core/src/components/friends-view/profile-modal-update.js

3
core/language/us.json

@ -1218,6 +1218,7 @@
"profile2": "Go to name registration",
"profile3": "Update profile",
"profile4": "Tagline",
"profile5": "Bio"
"profile5": "Bio",
"profile6": "Wallet Addresses"
}
}

51
core/src/components/friends-view/profile-modal-update.js

@ -23,8 +23,9 @@ class ProfileModalUpdate extends connect(store)(LitElement) {
onSubmit: { attribute: false },
editContent: { type: Object },
onClose: { attribute: false },
tagline: {type: String},
bio: {type: String}
tagline: { type: String },
bio: { type: String },
wallets: { type: Array },
};
}
@ -34,11 +35,21 @@ class ProfileModalUpdate extends connect(store)(LitElement) {
this.isLoading = false;
this.nodeUrl = this.getNodeUrl();
this.myNode = this.getMyNode();
this.tagline = "";
this.bio = "",
this.walletList = [
"btcWallet", "ltcWallet", "dogeWallet","dgbWallet", "rvnWallet", "arrrWallet"
]
this.tagline = '';
(this.bio = ''),
(this.walletList = [
'btc_Address',
'ltc_Address',
'doge_Address',
'dgb_Address',
'rvn_Address',
'arrr_Address',
]);
let wallets = {};
this.walletList.forEach((item) => {
wallets[item] = '';
});
this.wallets = wallets;
}
static get styles() {
@ -234,7 +245,7 @@ class ProfileModalUpdate extends connect(store)(LitElement) {
<textarea
class="input"
@change=${(e) => {
this.tagline = e.target.value
this.tagline = e.target.value;
}}
.value=${this.tagline}
?disabled=${this.isLoading}
@ -242,7 +253,6 @@ class ProfileModalUpdate extends connect(store)(LitElement) {
placeholder="${translate('profile.profile4')}"
rows="3"
></textarea>
</div>
<div style="height:15px"></div>
<div style="display: flex;flex-direction: column;">
@ -256,7 +266,7 @@ class ProfileModalUpdate extends connect(store)(LitElement) {
<textarea
class="input"
@change=${(e) => {
this.bio = e.target.value
this.bio = e.target.value;
}}
.value=${this.bio}
?disabled=${this.isLoading}
@ -264,7 +274,26 @@ class ProfileModalUpdate extends connect(store)(LitElement) {
placeholder="${translate('profile.profile5')}"
rows="3"
></textarea>
</div>
<div style="height:15px"></div>
<p>${get('profile.profile6')}</p>
<div style="display: flex;flex-direction: column;">
${Object.keys(this.wallets).map((key) => {
return html`
<input
id=${key}
placeholder=${key}
class="input"
.value=${this.wallets[key]}
@change=${(e) => {
this.wallets = {
...this.wallets,
[key]: e.target.value,
};
}}
/>
`;
})}
</div>
</div>
<div

Loading…
Cancel
Save