mirror of https://github.com/rancher/dashboard.git
58 lines
1.0 KiB
Vue
58 lines
1.0 KiB
Vue
<script>
|
|
import EmberPage from '@shell/components/EmberPage';
|
|
import { project } from '@shell/store/type-map';
|
|
|
|
const PAGES = {
|
|
istio: 'istio/project-istio/metrics',
|
|
monitoring: 'monitoring/project-setting',
|
|
pipelineConfig: 'pipeline',
|
|
pipelines: 'pipeline/pipelines'
|
|
};
|
|
|
|
export default {
|
|
components: { EmberPage },
|
|
|
|
data() {
|
|
const page = this.$route.params.page;
|
|
const p = PAGES[page] || page;
|
|
|
|
return { page: p };
|
|
},
|
|
|
|
computed: {
|
|
project() {
|
|
return project(this.$store.getters);
|
|
},
|
|
|
|
src() {
|
|
const prj = project(this.$store.getters);
|
|
|
|
if (!!prj) {
|
|
const id = prj.id.replace('/', ':');
|
|
|
|
return `/p/${ id }/${ this.page }`;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
},
|
|
|
|
watch: {
|
|
// User changed project while on this page
|
|
project(a, b) {
|
|
// Changed to no project, so redirect
|
|
if (!a && b) {
|
|
this.$router.replace({ name: 'c-cluster-legacy-project' } );
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<EmberPage
|
|
v-if="src"
|
|
:src="src"
|
|
/>
|
|
</template>
|