VueTube/NUXT/components/UtilRenderers/slimVideoDescriptionRendere...

48 lines
1.1 KiB
Vue
Raw Normal View History

2022-03-27 04:31:32 +00:00
<template>
2022-04-13 10:15:26 +00:00
<div class="description" v-if="render.descriptionBodyText">
<template v-for="(text, index) in render.descriptionBodyText.runs">
<template v-if="$rendererUtils.checkInternal(text)">
<a
@click="openInternal($rendererUtils.getNavigationEndpoints(text))"
:key="index"
>{{ text.text }}</a
>
</template>
<template
v-else-if="
text.navigationEndpoint && text.navigationEndpoint.urlEndpoint
"
>
<a
@click="openExternal($rendererUtils.getNavigationEndpoints(text))"
:key="index"
>{{ text.text }}</a
>
2022-03-27 05:48:27 +00:00
</template>
<template v-else> {{ text.text }} </template>
</template>
2022-03-27 04:31:32 +00:00
</div>
</template>
2022-03-29 02:30:20 +00:00
<style scoped>
.description {
white-space: pre-line;
}
</style>
2022-03-27 04:31:32 +00:00
<script>
import { Browser } from "@capacitor/browser";
2022-03-27 04:31:32 +00:00
export default {
props: ["render"],
methods: {
async openExternal(url) {
await Browser.open({ url: url });
},
async openInternal(url) {
await this.$router.push(url);
},
2022-03-27 04:31:32 +00:00
},
};
</script>