repod/src/App.vue
Michel Roux 668c377c33
All checks were successful
repod / xml (push) Successful in 27s
repod / php (push) Successful in 41s
repod / nodejs (push) Successful in 1m21s
repod / release (push) Successful in 1m23s
perf: move init loops to player store
2024-10-24 00:46:04 +02:00

42 lines
911 B
Vue

<template>
<NcContent app-name="repod">
<GPodder v-if="!gpodder" />
<Subscriptions v-if="gpodder" />
<router-view v-if="gpodder" :key="$route.path" />
<Bar />
</NcContent>
</template>
<script lang="ts">
import 'toastify-js/src/toastify.css'
import { mapActions, mapState } from 'pinia'
import Bar from './components/Player/Bar.vue'
import GPodder from './views/GPodder.vue'
import { NcContent } from '@nextcloud/vue'
import Subscriptions from './components/Sidebar/Subscriptions.vue'
import { loadState } from '@nextcloud/initial-state'
import { usePlayer } from './store/player.ts'
export default {
name: 'App',
components: {
Bar,
GPodder,
NcContent,
Subscriptions,
},
computed: {
...mapState(usePlayer, ['paused']),
gpodder() {
return loadState('repod', 'gpodder', false)
},
},
mounted() {
this.init()
},
methods: {
...mapActions(usePlayer, ['init']),
},
}
</script>