Minor cleanup

This commit is contained in:
styppo 2023-01-20 18:51:16 +00:00
parent 1b5033f3d9
commit 4654e36367
No known key found for this signature in database
GPG Key ID: 3AAA685C50724C28
6 changed files with 5 additions and 58 deletions

View File

@ -5,7 +5,6 @@
<script> <script>
import {defineComponent} from 'vue' import {defineComponent} from 'vue'
import {useNostrStore} from 'src/nostr/NostrStore' import {useNostrStore} from 'src/nostr/NostrStore'
// import TestLayout from 'layouts/TestLayout.vue'
import MainLayout from 'layouts/MainLayout.vue' import MainLayout from 'layouts/MainLayout.vue'
export default defineComponent({ export default defineComponent({

View File

@ -82,7 +82,7 @@ export default {
.filter(note => this.filterNote(note, this.feed.hideBots)) .filter(note => this.filterNote(note, this.feed.hideBots))
.map(note => [note]) // TODO Single element thread .map(note => [note]) // TODO Single element thread
items.sort(feedOrder) items.sort(feedOrder)
this.visible = items.slice(0, filters.limit) this.visible = items.slice(0, MAX_ITEMS_VISIBLE)
this.loading = false this.loading = false
// Wait a bit before showing the first unreads // Wait a bit before showing the first unreads

View File

@ -1,49 +0,0 @@
<template>
<q-layout>
Test
<div>Pubkey: {{ profile?.name }}</div>
<div>Pubkey: {{ profile2?.name }}</div>
<div>SignedIn: {{ app.isSignedIn }}</div>
</q-layout>
</template>
<script>
import {defineComponent} from 'vue'
import {useNostrStore} from 'src/nostr/NostrStore'
import {useAppStore} from 'stores/App'
export default defineComponent({
name: 'TestLayout',
props: {
pubkey: {
type: String,
default: '6f32dddf2d54f2c5e64e1570abcb9c7a05e8041bac0ee9f4235f694fccb68b5d',
},
pubkey2: {
type: String,
default: '6e468422dfb74a5738702a8823b9b28168abab8655faacb6853cd0ee15deee93',
}
},
computed: {
profile() {
console.log('profile')
return this.nostr.getProfile(this.pubkey)
},
profile2() {
console.log('profile2')
return this.nostr.getProfile(this.pubkey2)
}
},
setup() {
return {
nostr: useNostrStore(),
app: useAppStore(),
}
},
})
</script>
<style lang="scss" scoped>
</style>

View File

@ -58,8 +58,8 @@ const Feeds = {
let authors = contacts?.map(contact => contact.pubkey) let authors = contacts?.map(contact => contact.pubkey)
if (!authors || !authors.length) authors = [ZERO_PUBKEY] if (!authors || !authors.length) authors = [ZERO_PUBKEY]
return { return {
authors,
kinds: [EventKind.NOTE], kinds: [EventKind.NOTE],
authors,
limit: 50, limit: 50,
} }
}, },
@ -104,7 +104,6 @@ export default defineComponent({
}, },
watch: { watch: {
contacts() { contacts() {
console.log('following', this.$refs.following)
this.$refs.following?.[0]?.reload() this.$refs.following?.[0]?.reload()
}, },
}, },

View File

@ -223,7 +223,6 @@ export default defineComponent({
} }
}, },
mounted() { mounted() {
console.log('mounted', this.noteId)
this.startStream() this.startStream()
this.buildThread() this.buildThread()
@ -232,7 +231,6 @@ export default defineComponent({
setTimeout(() => this.resizeObserver.disconnect(), 2000) setTimeout(() => this.resizeObserver.disconnect(), 2000)
}, },
unmounted() { unmounted() {
console.log('unmounted', this.subId)
this.closeStream() this.closeStream()
this.resizeObserver.disconnect() this.resizeObserver.disconnect()
} }

View File

@ -14,14 +14,14 @@ export const useAppStore = defineStore('app', {
}, },
}), }),
getters: { getters: {
activeAccount(state) { activeAccount() {
const settings = useSettingsStore() const settings = useSettingsStore()
return settings.activeAccount return settings.activeAccount
}, },
isSignedIn(state) { isSignedIn() {
return !!this.activeAccount return !!this.activeAccount
}, },
myPubkey(state) { myPubkey() {
return this.activeAccount?.pubkey return this.activeAccount?.pubkey
}, },
}, },