cyber/src/pages/demoPages/podExercise/QuestionText.vue

41 lines
972 B
Vue
Raw Normal View History

2025-02-26 23:45:00 +08:00
<template>
2025-02-27 07:40:11 +08:00
<general-renderer :content-input="processedText" class="question-text"></general-renderer>
2025-02-27 23:03:46 +08:00
<!-- <div v-html="processedText" class="question-text"></div>-->
2025-02-26 23:45:00 +08:00
</template>
<script setup>
import { computed } from 'vue';
2025-02-27 07:40:11 +08:00
import GeneralRenderer from "../../../components/GeneralRenderer.vue";
2025-02-26 23:45:00 +08:00
const props = defineProps({
text: {
type: String,
required: true
},
medias: {
type: Object,
required: true
}
});
const mediaRegex = /<media i(\d+)>/g;
function replaceMedia(text, medias) {
return text.replace(mediaRegex, (match, id) => {
const mediaKey = `m${id}`;
if (medias[mediaKey]) {
const [type, url, width, height] = medias[mediaKey];
if (type === 'image') {
2025-03-06 09:46:28 +08:00
return `<img class="pod-image" src="${url}" width="100%" height="auto" alt="Question Image" />`;
2025-02-26 23:45:00 +08:00
}
}
return '';
});
}
const processedText = computed(() => replaceMedia(props.text, props.medias));
</script>
<style scoped>
</style>