feat: add remove relays

This commit is contained in:
Vlad Stan 2023-07-17 14:14:19 +03:00
parent 0db0e74bf0
commit b02f050547
4 changed files with 97 additions and 33 deletions

View file

@ -2,7 +2,7 @@ async function marketConfig(path) {
const template = await loadTemplateAsync(path)
Vue.component('market-config', {
name: 'market-config',
props: ['merchants',],
props: ['merchants', 'relays'],
template,
data: function () {
@ -10,25 +10,63 @@ async function marketConfig(path) {
tab: 'merchants',
pubkeys: new Set(),
profiles: new Map(),
inputPubkey: null,
merchantPubkey: null,
relayUrl: null,
info: {
name: null,
description: null,
theme: null,
logo: null,
banner: null
}
}
},
methods: {
addMerchant: async function () {
if (!isValidKey(this.inputPubkey, 'npub')) {
if (!isValidKey(this.merchantPubkey, 'npub')) {
this.$q.notify({
message: 'Invalid Public Key!',
type: 'warning'
})
return
}
const publicKey = isValidKeyHex(this.inputPubkey) ? this.inputPubkey : NostrTools.nip19.decode(this.inputPubkey).data
const publicKey = isValidKeyHex(this.merchantPubkey) ? this.merchantPubkey : NostrTools.nip19.decode(this.merchantPubkey).data
this.$emit('add-merchant', publicKey)
this.inputPubkey = null
this.merchantPubkey = null
},
removeMerchant: async function (publicKey) {
this.$emit('remove-merchant', publicKey)
},
addRelay: async function () {
const relayUrl = (this.relayUrl || '').trim()
if (!relayUrl.startsWith('wss://') && !relayUrl.startsWith('ws://')) {
this.relayUrl = null
this.$q.notify({
timeout: 5000,
type: 'warning',
message: `Invalid relay URL.`,
caption: "Should start with 'wss://'' or 'ws://'"
})
return
}
try {
new URL(relayUrl);
this.$emit('add-relay', relayUrl)
} catch (error) {
this.$q.notify({
timeout: 5000,
type: 'warning',
message: `Invalid relay URL.`,
caption: `Error: ${error}`
})
}
this.relayUrl = null
},
removeRelay: async function (relay) {
this.$emit('remove-relay', relay)
},
},
created: async function () {