mirror of https://github.com/rancher/dashboard.git
109 lines
2.3 KiB
Vue
109 lines
2.3 KiB
Vue
<script>
|
|
import { RIO } from '@/config/types';
|
|
|
|
export default {
|
|
props: {
|
|
value: {
|
|
type: Array,
|
|
default: () => {
|
|
return [];
|
|
}
|
|
},
|
|
row: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
col: {
|
|
type: Object,
|
|
default: () => {}
|
|
},
|
|
},
|
|
data() {
|
|
return { route: '' }
|
|
;
|
|
},
|
|
computed: {
|
|
to() {
|
|
const first = this.value[0];
|
|
|
|
if ( first.to ) {
|
|
return first.to[0];
|
|
} else {
|
|
return first.redirect;
|
|
}
|
|
},
|
|
|
|
remaining() {
|
|
const first = this.value[0];
|
|
|
|
if ( first.to ) {
|
|
return first.to.length - 1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
}
|
|
},
|
|
created() {
|
|
this.findEndpoint().then((route) => {
|
|
this.route = route;
|
|
});
|
|
},
|
|
methods: {
|
|
async findEndpoint() {
|
|
let route = '';
|
|
|
|
if (this.value?.[0]?.to) {
|
|
const destination = this.value[0].to[0];
|
|
const services = await this.$store.dispatch('cluster/findAll', { type: RIO.SERVICE });
|
|
let targetService;
|
|
|
|
if (!destination.version) {
|
|
// find service w/ this app and version
|
|
targetService = services.filter((service) => {
|
|
return service.spec.app === destination.app;
|
|
})[0];
|
|
} else {
|
|
targetService = services.filter((service) => {
|
|
return service.spec.app === destination.app && service.spec.version === destination.version;
|
|
})[0];
|
|
}
|
|
|
|
if ( targetService ) {
|
|
route = `/rio/services/${ targetService.id }` ;
|
|
}
|
|
} else if ( this.value?.[0]?.redirect ) {
|
|
const {
|
|
prefix, host, path, toHTTPS
|
|
} = this.value[0].redirect;
|
|
|
|
// format redirect as a url
|
|
if (!host) {
|
|
return;
|
|
} else {
|
|
route = `http${ toHTTPS ? 's' : '' }://${ prefix ? `${ prefix }.` : '' }${ host }/${ path }`;
|
|
}
|
|
}
|
|
|
|
return route;
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<span v-if="to">
|
|
<nuxt-link v-if="!value[0].redirect" :to="route">{{ to.app }}{{ to.version ?`(${to.version}): ` : ': ' }}{{ to.port }}</nuxt-link>
|
|
<a v-else :href="route">
|
|
{{ route }}
|
|
</a>
|
|
<br />
|
|
<span v-if="remaining > 0" class="plus-more">+{{ remaining }} more</span>
|
|
</span>
|
|
</template>
|
|
|
|
<style lang='scss'>
|
|
.col-router-destination {
|
|
color: var(--input-label)
|
|
}
|
|
</style>
|