funkwhale/front/src/views/channels/DetailBase.vue

559 wiersze
21 KiB
Vue

<script setup lang="ts">
import type { Channel } from '~/types'
import axios from 'axios'
import PlayButton from '~/components/audio/PlayButton.vue'
import EmbedWizard from '~/components/audio/EmbedWizard.vue'
import SemanticModal from '~/components/semantic/Modal.vue'
import TagsList from '~/components/tags/List.vue'
import SubscribeButton from '~/components/channels/SubscribeButton.vue'
import useReport from '~/composables/moderation/useReport'
import ChannelForm from '~/components/audio/ChannelForm.vue'
import { useStore } from '~/store'
import { onBeforeRouteUpdate, useRoute, useRouter } from 'vue-router'
import { computed, ref, reactive, watch, watchEffect } from 'vue'
import { useGettext } from 'vue3-gettext'
interface Props {
id: string
}
const props = defineProps<Props>()
const { report, getReportableObjects } = useReport()
const store = useStore()
const object = ref<Channel | null>(null)
const editForm = ref()
const totalTracks = ref(0)
const edit = reactive({
submittable: false,
loading: false
})
const showEmbedModal = ref(false)
const showEditModal = ref(false)
const showSubscribeModal = ref(false)
const isOwner = computed(() => store.state.auth.authenticated && object.value?.attributed_to.full_username === store.state.auth.fullUsername)
const isPodcast = computed(() => object.value?.artist?.content_category === 'podcast')
const isPlayable = computed(() => totalTracks.value > 0)
const externalDomain = computed(() => {
const parser = document.createElement('a')
parser.href = object.value?.url ?? object.value?.rss_url ?? ''
return parser.hostname
})
const { $pgettext } = useGettext()
const labels = computed(() => ({
title: $pgettext('*/*/*', 'Channel')
}))
onBeforeRouteUpdate((to) => {
to.meta.preserveScrollPosition = true
})
const router = useRouter()
const isLoading = ref(false)
const fetchData = async () => {
showEditModal.value = false
edit.loading = false
isLoading.value = true
try {
const response = await axios.get(`channels/${props.id}`, { params: { refresh: 'true' } })
object.value = response.data
totalTracks.value = response.data.artist.tracks_count
if (props.id === response.data.uuid && response.data.actor) {
// replace with the pretty channel url if possible
const actor = response.data.actor
if (actor.is_local) {
await router.replace({ name: 'channels.detail', params: { id: actor.preferred_username } })
} else {
await router.replace({ name: 'channels.detail', params: { id: actor.full_username } })
}
}
} catch (error) {
// TODO (wvffle): Handle error
}
isLoading.value = false
}
watch(() => props.id, fetchData, { immediate: true })
watchEffect(() => {
const publication = store.state.channels.latestPublication
if (publication?.uploads && publication.channel.uuid === object.value?.uuid) {
fetchData()
}
})
const route = useRoute()
watchEffect(() => {
if (!store.state.auth.authenticated && store.getters['instance/domain'] !== object.value?.actor.domain) {
router.push({ name: 'login', query: { next: route.fullPath } })
}
})
const emit = defineEmits(['deleted'])
const remove = async () => {
isLoading.value = true
try {
await axios.delete(`channels/${object.value?.uuid}`)
emit('deleted')
return router.push({ name: 'profile.overview', params: { username: store.state.auth.username } })
} catch (error) {
// TODO (wvffle): Handle error
}
}
const updateSubscriptionCount = (delta: number) => {
if (object.value) {
object.value.subscriptions_count += delta
}
}
</script>
<template>
<main
v-title="labels.title"
class="main pusher"
>
<div
v-if="isLoading"
class="ui vertical segment"
>
<div :class="['ui', 'centered', 'active', 'inline', 'loader']" />
</div>
<template v-if="object && !isLoading">
<section
v-title="object.artist?.name"
class="ui head vertical stripe segment container"
>
<div class="ui stackable grid">
<div class="seven wide column">
<div class="ui two column grid">
<div class="column">
<img
v-if="object.artist?.cover"
alt=""
class="huge channel-image"
:src="$store.getters['instance/absoluteUrl'](object.artist.cover.urls.medium_square_crop)"
>
<i
v-else
class="huge circular inverted users violet icon"
/>
</div>
<div class="ui column right aligned">
<tags-list
v-if="object.artist?.tags && object.artist?.tags.length > 0"
:tags="object.artist.tags"
/>
<actor-link
v-if="object.actor"
:avatar="false"
:actor="object.attributed_to"
:display-name="true"
/>
<template v-if="totalTracks > 0">
<div class="ui hidden very small divider" />
<translate
v-if="object.artist?.content_category === 'podcast'"
translate-context="Content/Channel/Paragraph"
translate-plural="%{ count } episodes"
:translate-n="totalTracks"
:translate-params="{count: totalTracks}"
>
%{ count } episode
</translate>
<translate
v-else
translate-context="*/*/*"
:translate-params="{count: totalTracks}"
:translate-n="totalTracks"
translate-plural="%{ count } tracks"
>
%{ count } track
</translate>
</template>
<template v-if="object.attributed_to.full_username === $store.state.auth.fullUsername || $store.getters['channels/isSubscribed'](object.uuid)">
<br><translate
translate-context="Content/Channel/Paragraph"
translate-plural="%{ count } subscribers"
:translate-n="object?.subscriptions_count"
:translate-params="{count: object?.subscriptions_count}"
>
%{ count } subscriber
</translate>
<br><translate
translate-context="Content/Channel/Paragraph"
translate-plural="%{ count } listenings"
:translate-n="object?.downloads_count"
:translate-params="{count: object?.downloads_count}"
>
%{ count } listening
</translate>
</template>
<div class="ui hidden small divider" />
<a
class="ui icon small basic button"
@click.stop.prevent="showSubscribeModal = true"
>
<i class="feed icon" />
</a>
<semantic-modal
v-model:show="showSubscribeModal"
class="tiny"
>
<h4 class="header">
<translate translate-context="Popup/Channel/Title/Verb">
Subscribe to this channel
</translate>
</h4>
<div class="scrollable content">
<div class="description">
<template v-if="$store.state.auth.authenticated">
<h3>
<i class="user icon" />
<translate translate-context="Content/Channels/Header">
Subscribe on Funkwhale
</translate>
</h3>
<subscribe-button
:channel="object"
@subscribed="updateSubscriptionCount(1)"
@unsubscribed="updateSubscriptionCount(-1)"
/>
</template>
<template v-if="object.rss_url">
<h3>
<i class="feed icon" />
<translate translate-context="Content/Channels/Header">
Subscribe via RSS
</translate>
</h3>
<p>
<translate translate-context="Content/Channels/Label">
Copy-paste the following URL in your favorite podcatcher:
</translate>
</p>
<copy-input :value="object.rss_url" />
</template>
<template v-if="object.actor">
<h3>
<i class="bell icon" />
<translate translate-context="Content/Channels/Header">
Subscribe on the Fediverse
</translate>
</h3>
<p>
<translate translate-context="Content/Channels/Label">
If you're using Mastodon or other fediverse applications, you can subscribe to this account:
</translate>
</p>
<copy-input
id="copy-tag"
:value="`@${object.actor.full_username}`"
/>
</template>
</div>
</div>
<div class="actions">
<button class="ui basic deny button">
<translate translate-context="*/*/Button.Label/Verb">
Cancel
</translate>
</button>
</div>
</semantic-modal>
<button
ref="dropdown"
v-dropdown="{direction: 'downward'}"
class="ui right floated pointing dropdown icon small basic button"
>
<i class="ellipsis vertical icon" />
<div class="menu">
<a
v-if="totalTracks > 0"
href=""
class="basic item"
@click.prevent="showEmbedModal = !showEmbedModal"
>
<i class="code icon" />
<translate translate-context="Content/*/Button.Label/Verb">Embed</translate>
</a>
<a
v-if="object.actor && object.actor.domain != $store.getters['instance/domain']"
:href="object.url"
target="_blank"
class="basic item"
>
<i class="external icon" />
<translate
:translate-params="{domain: object.actor.domain}"
translate-context="Content/*/Button.Label/Verb"
>View on %{ domain }</translate>
</a>
<div class="divider" />
<a
v-for="obj in getReportableObjects({account: object.attributed_to, channel: object})"
:key="obj.target.type + obj.target.id"
href=""
class="basic item"
@click.stop.prevent="report(obj)"
>
<i class="share icon" /> {{ obj.label }}
</a>
<template v-if="isOwner">
<div class="divider" />
<a
class="item"
href=""
@click.stop.prevent="showEditModal = true"
>
<i class="edit icon" />
<translate translate-context="*/*/*/Verb">Edit…</translate>
</a>
<dangerous-button
v-if="object"
:class="['ui', {loading: isLoading}, 'item']"
@confirm="remove()"
>
<i class="ui trash icon" />
<translate translate-context="*/*/*/Verb">
Delete…
</translate>
<template #modal-header>
<p>
<translate translate-context="Popup/Channel/Title">
Delete this Channel?
</translate>
</p>
</template>
<template #modal-content>
<div>
<p>
<translate translate-context="Content/Moderation/Paragraph">
The channel will be deleted, as well as any related files and data. This action is irreversible.
</translate>
</p>
</div>
</template>
<template #modal-confirm>
<p>
<translate translate-context="*/*/*/Verb">
Delete
</translate>
</p>
</template>
</dangerous-button>
</template>
<template v-if="$store.state.auth.availablePermissions['library']">
<div class="divider" />
<router-link
class="basic item"
:to="{name: 'manage.channels.detail', params: {id: object.uuid}}"
>
<i class="wrench icon" />
<translate translate-context="Content/Moderation/Link">
Open in moderation interface
</translate>
</router-link>
</template>
</div>
</button>
</div>
</div>
<h1 class="ui header">
<div
class="left aligned"
:title="object.artist?.name"
>
{{ object.artist?.name }}
<div class="ui hidden very small divider" />
<div
v-if="object.actor"
class="sub header ellipsis"
:title="object.actor.full_username"
>
{{ object.actor.full_username }}
</div>
<div
v-else
class="sub header ellipsis"
>
<a
:href="object.url || object.rss_url"
rel="noopener noreferrer"
target="_blank"
>
<i class="external link icon" />
<translate
:translate-params="{domain: externalDomain}"
translate-context="Content/Channel/Paragraph"
>Mirrored from %{ domain }</translate>
</a>
</div>
</div>
</h1>
<div class="header-buttons">
<div
v-if="isOwner"
class="ui buttons"
>
<button
class="ui basic labeled icon button"
@click.prevent.stop="$store.commit('channels/showUploadModal', {show: true, config: {channel: object}})"
>
<i class="upload icon" />
<translate translate-context="Content/Channels/Button.Label/Verb">
Upload
</translate>
</button>
</div>
<div class="ui buttons">
<play-button
:is-playable="isPlayable"
class="vibrant"
:artist="object.artist"
>
<translate translate-context="Content/Channels/Button.Label/Verb">
Play
</translate>
</play-button>
</div>
<div class="ui buttons">
<subscribe-button
:channel="object"
@subscribed="updateSubscriptionCount(1)"
@unsubscribed="updateSubscriptionCount(-1)"
/>
</div>
<semantic-modal
v-if="totalTracks > 0"
v-model:show="showEmbedModal"
>
<h4 class="header">
<translate translate-context="Popup/Artist/Title/Verb">
Embed this artist work on your website
</translate>
</h4>
<div class="scrolling content">
<div class="description">
<embed-wizard
:id="object.artist!.id"
type="artist"
/>
</div>
</div>
<div class="actions">
<button class="ui basic deny button">
<translate translate-context="*/*/Button.Label/Verb">
Cancel
</translate>
</button>
</div>
</semantic-modal>
<semantic-modal
v-if="isOwner"
v-model:show="showEditModal"
>
<h4 class="header">
<translate
v-if="object.artist?.content_category === 'podcast'"
translate-context="Content/Channel/*"
>
Podcast channel
</translate>
<translate
v-else
translate-context="Content/Channel/*"
>
Artist channel
</translate>
</h4>
<div class="scrolling content">
<channel-form
ref="editForm"
:object="object"
@loading="edit.loading = $event"
@submittable="edit.submittable = $event"
@updated="fetchData"
/>
<div class="ui hidden divider" />
</div>
<div class="actions">
<button class="ui left floated basic deny button">
<translate translate-context="*/*/Button.Label/Verb">
Cancel
</translate>
</button>
<button
:class="['ui', 'primary', 'confirm', {loading: edit.loading}, 'button']"
:disabled="!edit.submittable"
@click.stop="editForm?.submit"
>
<translate translate-context="*/Channels/Button.Label">
Update channel
</translate>
</button>
</div>
</semantic-modal>
</div>
<div v-if="$store.getters['ui/layoutVersion'] === 'large'">
<rendered-description
:content="object.artist?.description"
:update-url="`channels/${object.uuid}/`"
:can-update="false"
@updated="object = $event"
/>
</div>
</div>
<div class="nine wide column">
<div class="ui secondary pointing center aligned menu">
<router-link
class="item"
:to="{name: 'channels.detail', params: {id: id}}"
>
<translate translate-context="Content/Channels/Link">
Overview
</translate>
</router-link>
<router-link
class="item"
:to="{name: 'channels.detail.episodes', params: {id: id}}"
>
<translate
v-if="isPodcast"
translate-context="Content/Channels/*"
>
All Episodes
</translate>
<translate
v-else
translate-context="*/*/*"
>
Tracks
</translate>
</router-link>
</div>
<div class="ui hidden divider" />
<router-view
v-if="object"
:object="object"
@tracks-loaded="totalTracks = $event"
/>
</div>
</div>
</section>
</template>
</main>
</template>