2021-08-17 10:41:39 +02:00
|
|
|
<template>
|
|
|
|
<div class="etherpad">
|
|
|
|
<div class="etherpad-container" v-if="metadata">
|
|
|
|
<iframe
|
|
|
|
:src="`${metadata.value}?showChat=false&showLineNumbers=false`"
|
|
|
|
width="600"
|
|
|
|
height="400"
|
|
|
|
></iframe>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
2022-07-12 10:55:28 +02:00
|
|
|
<script lang="ts" setup>
|
2021-08-17 10:41:39 +02:00
|
|
|
import { IEventMetadataDescription } from "@/types/event-metadata";
|
|
|
|
|
2022-07-12 10:55:28 +02:00
|
|
|
defineProps<{ metadata: IEventMetadataDescription }>();
|
2021-08-17 10:41:39 +02:00
|
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.etherpad {
|
|
|
|
.etherpad-container {
|
|
|
|
padding-top: 56.25%;
|
|
|
|
position: relative;
|
|
|
|
height: 0;
|
|
|
|
|
|
|
|
iframe {
|
|
|
|
position: absolute;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
top: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|