Warmfix: #6943 addressPropagate #1389

Merged
jsegarra merged 9 commits from 6943_re_propagate into test 2025-02-17 12:20:34 +00:00
1 changed files with 10 additions and 0 deletions
Showing only changes of commit 53acb513ca - Show all commits

View File

@ -49,12 +49,22 @@ onBeforeMount(async () => {
if (props.baseUrl) {
onBeforeRouteUpdate(async (to, from) => {
if (hasRouteParam(to.params)) {
const { matched } = router.currentRoute.value;
const { name } = matched.at(-3);
if (name) {
router.push({ name, params: to.params });
}
}
if (to.params.id !== from.params.id) {
arrayData.store.url = `${props.baseUrl}/${to.params.id}`;
await arrayData.fetch({ append: false, updateRouter: false });
}
});
}
function hasRouteParam(params, valueToCheck = ':addressId') {
return Object.values(params).includes(valueToCheck);
}
</script>
<template>
<Teleport to="#left-panel" v-if="stateStore.isHeaderMounted()">