mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-11-09 13:53:38 +08:00
117 lines
2.4 KiB
Vue
117 lines
2.4 KiB
Vue
<script setup lang="ts">
|
|
import { useI18n } from "vue-i18n";
|
|
import { useRoute } from "vue-router";
|
|
import { ref, unref, watch, onMounted, nextTick } from "vue";
|
|
|
|
defineOptions({
|
|
name: "LayFrame"
|
|
});
|
|
|
|
const props = defineProps<{
|
|
frameInfo?: {
|
|
frameSrc?: string;
|
|
fullPath?: string;
|
|
};
|
|
}>();
|
|
|
|
const { t } = useI18n();
|
|
const loading = ref(true);
|
|
const currentRoute = useRoute();
|
|
const frameSrc = ref<string>("");
|
|
const frameRef = ref<HTMLElement | null>(null);
|
|
const fallbackTimer = ref<number | null>(null);
|
|
|
|
if (unref(currentRoute.meta)?.frameSrc) {
|
|
frameSrc.value = unref(currentRoute.meta)?.frameSrc as string;
|
|
}
|
|
|
|
function clearFallbackTimer() {
|
|
if (fallbackTimer.value !== null) {
|
|
clearTimeout(fallbackTimer.value);
|
|
fallbackTimer.value = null;
|
|
}
|
|
}
|
|
|
|
function hideLoading() {
|
|
loading.value = false;
|
|
clearFallbackTimer();
|
|
}
|
|
|
|
function init() {
|
|
nextTick(() => {
|
|
const iframe = unref(frameRef);
|
|
if (!iframe) return;
|
|
const _frame = iframe as any;
|
|
if (_frame.attachEvent) {
|
|
_frame.attachEvent("onload", hideLoading);
|
|
} else {
|
|
iframe.onload = hideLoading;
|
|
}
|
|
});
|
|
}
|
|
|
|
let isRedirect = false;
|
|
|
|
watch(
|
|
() => currentRoute.fullPath,
|
|
path => {
|
|
if (
|
|
currentRoute.name === "Redirect" &&
|
|
props.frameInfo?.fullPath &&
|
|
path.includes(props.frameInfo.fullPath)
|
|
) {
|
|
isRedirect = true;
|
|
loading.value = true;
|
|
return;
|
|
}
|
|
if (props.frameInfo?.fullPath === path && isRedirect) {
|
|
loading.value = true;
|
|
clearFallbackTimer();
|
|
const url = new URL(props.frameInfo.frameSrc, window.location.origin);
|
|
const joinChar = url.search ? "&" : "?";
|
|
frameSrc.value = `${props.frameInfo.frameSrc}${joinChar}t=${Date.now()}`;
|
|
fallbackTimer.value = window.setTimeout(() => {
|
|
if (loading.value) {
|
|
hideLoading();
|
|
}
|
|
}, 1500);
|
|
isRedirect = false;
|
|
}
|
|
},
|
|
{ immediate: true }
|
|
);
|
|
|
|
onMounted(() => {
|
|
init();
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
v-loading="loading"
|
|
class="frame"
|
|
:element-loading-text="t('status.pureLoad')"
|
|
>
|
|
<iframe ref="frameRef" :src="frameSrc" class="frame-iframe" />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.frame {
|
|
position: absolute;
|
|
inset: 0;
|
|
|
|
.frame-iframe {
|
|
box-sizing: border-box;
|
|
width: 100%;
|
|
height: 100%;
|
|
overflow: hidden;
|
|
border: 0;
|
|
}
|
|
}
|
|
|
|
.main-content {
|
|
margin: 2px 0 0 !important;
|
|
}
|
|
</style>
|