mirror of
https://github.com/VueTubeApp/VueTube
synced 2024-11-05 11:05:07 +00:00
48 lines
1.1 KiB
Vue
48 lines
1.1 KiB
Vue
<template>
|
|
<div class="description">
|
|
<template v-for="(text, index) in render.description.runs">
|
|
<template
|
|
v-if="
|
|
text.navigationEndpoint && text.navigationEndpoint.webviewEndpoint
|
|
"
|
|
>
|
|
<a
|
|
@click="openExternal($rendererUtils.getNavigationEndpoints(text))"
|
|
:key="index"
|
|
>{{ text.text }}</a
|
|
>
|
|
</template>
|
|
<template v-else-if="$rendererUtils.checkInternal(text)">
|
|
<a
|
|
@click="openInternal($rendererUtils.getNavigationEndpoints(text))"
|
|
:key="index"
|
|
>{{ text.text }}</a
|
|
>
|
|
</template>
|
|
<template v-else> {{ text.text }} </template>
|
|
</template>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.description {
|
|
white-space: pre-line;
|
|
margin-bottom: 16px;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
import { Browser } from "@capacitor/browser";
|
|
export default {
|
|
props: ["render"],
|
|
|
|
methods: {
|
|
async openExternal(url) {
|
|
await Browser.open({ url: url });
|
|
},
|
|
async openInternal(url) {
|
|
await this.$router.push(url);
|
|
},
|
|
},
|
|
};
|
|
</script>
|