refactor: send iframe
This commit is contained in:
parent
f2f8edbd68
commit
de407f30cd
1 changed files with 22 additions and 1 deletions
|
|
@ -1,13 +1,28 @@
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { onMounted, ref, watch } from 'vue';
|
import { onMounted, ref, watch } from 'vue';
|
||||||
import { getInstance } from 'src/services/keycloak';
|
import { getInstance } from 'src/services/keycloak';
|
||||||
import useUtilsStore, { dialog, notify } from 'stores/utils';
|
import useUtilsStore from 'stores/utils';
|
||||||
|
import { useI18n } from 'vue-i18n';
|
||||||
|
import { useQuasar } from 'quasar';
|
||||||
|
|
||||||
|
const $q = useQuasar();
|
||||||
|
const { locale } = useI18n();
|
||||||
const utilsStore = useUtilsStore();
|
const utilsStore = useUtilsStore();
|
||||||
const EDM_SERVICE = import.meta.env.VITE_EDM_MICRO_FRONTEND_URL;
|
const EDM_SERVICE = import.meta.env.VITE_EDM_MICRO_FRONTEND_URL;
|
||||||
const kc = getInstance();
|
const kc = getInstance();
|
||||||
const at = ref(kc.token);
|
const at = ref(kc.token);
|
||||||
const rt = ref(kc.refreshToken);
|
const rt = ref(kc.refreshToken);
|
||||||
|
const iframe = ref<InstanceType<typeof HTMLIFrameElement>>();
|
||||||
|
|
||||||
|
function sendMessage() {
|
||||||
|
iframe?.value?.contentWindow?.postMessage(
|
||||||
|
{
|
||||||
|
i18n: locale.value,
|
||||||
|
darkMode: $q.dark.isActive,
|
||||||
|
},
|
||||||
|
'*',
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
onMounted(() => {
|
onMounted(() => {
|
||||||
utilsStore.currentTitle.title = 'menu.dms';
|
utilsStore.currentTitle.title = 'menu.dms';
|
||||||
|
|
@ -18,6 +33,7 @@ onMounted(() => {
|
||||||
handler: () => {},
|
handler: () => {},
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
sendMessage();
|
||||||
});
|
});
|
||||||
|
|
||||||
watch(
|
watch(
|
||||||
|
|
@ -27,10 +43,15 @@ watch(
|
||||||
rt.value = kc.refreshToken;
|
rt.value = kc.refreshToken;
|
||||||
},
|
},
|
||||||
);
|
);
|
||||||
|
|
||||||
|
watch([locale, $q.dark], () => {
|
||||||
|
sendMessage();
|
||||||
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<iframe
|
<iframe
|
||||||
|
ref="iframe"
|
||||||
:src="`${EDM_SERVICE}/?at=${at}&rt=${rt}`"
|
:src="`${EDM_SERVICE}/?at=${at}&rt=${rt}`"
|
||||||
frameborder="0"
|
frameborder="0"
|
||||||
class="full-width full-height rounded"
|
class="full-width full-height rounded"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue