dashboard/edit/networking.k8s.io.ingress/RulePath.vue

143 lines
4.0 KiB
Vue

<script>
import InputWithSelect from '@/components/form/InputWithSelect';
import LabeledInput from '@/components/form/LabeledInput';
import Select from '@/components/form/Select';
import { get, set } from '@/utils/object';
import debounce from 'lodash/debounce';
export default {
components: {
InputWithSelect, LabeledInput, Select
},
props: {
value: {
type: Object,
default: () => {
return {};
}
},
serviceTargets: {
type: Array,
default: () => []
},
ingress: {
type: Object,
required: true
}
},
data() {
const pathTypes = [
'Prefix',
'Exact',
'ImplementationSpecific'
];
const { backend = {}, path = '', pathType = pathTypes[0] } = this.value;
const serviceName = get(backend, this.ingress.serviceNamePath) || '';
const servicePort = get(backend, this.ingress.servicePortPath) || '';
return {
serviceName, servicePort, path, pathType, pathTypes
};
},
computed: {
portOptions() {
const service = this.serviceTargets.find(s => s.label === this.serviceName);
return service?.ports || [];
},
serviceTargetStatus() {
const isValueAnOption = !this.serviceName || this.serviceTargets.find(target => this.serviceName === target.value);
return isValueAnOption ? null : 'warning';
},
serviceTargetTooltip() {
return this.serviceTargetStatus === 'warning' ? this.t('ingress.rules.target.doesntExist') : null;
},
},
created() {
this.queueUpdate = debounce(this.update, 500);
this.queueUpdatePathTypeAndPath = debounce(this.updatePathTypeAndPath, 500);
},
methods: {
update() {
const servicePort = Number.parseInt(this.servicePort) || this.servicePort;
const serviceName = this.serviceName.label || this.serviceName;
const out = {
backend: {}, path: this.path, pathType: this.pathType
};
set(out.backend, this.ingress.serviceNamePath, serviceName);
set(out.backend, this.ingress.servicePortPath, servicePort);
this.$emit('input', out);
},
updatePathTypeAndPath(values) {
this.path = values.text;
this.pathType = values.selected;
this.update();
}
}
};
</script>
<template>
<div class="rule-path row">
<div v-if="ingress.showPathType" class="col span-6">
<InputWithSelect
:options="pathTypes"
:placeholder="t('ingress.rules.path.placeholder', undefined, true)"
:select-value="pathType"
:text-value="path"
@input="queueUpdatePathTypeAndPath"
/>
</div>
<div v-else class="col span-4">
<input v-model="path" :placeholder="t('ingress.rules.path.placeholder', undefined, true)" @input="queueUpdate" />
</div>
<div class="col" :class="{'span-3': ingress.showPathType, 'span-4': !ingress.showPathType}">
<Select
v-model="serviceName"
option-label="label"
option-key="label"
:options="serviceTargets"
:status="serviceTargetStatus"
:taggable="true"
:tooltip="serviceTargetTooltip"
:hover-tooltip="true"
@input="queueUpdate(); servicePort = ''"
/>
</div>
<div class="col" :class="{'span-2': ingress.showPathType, 'span-3': !ingress.showPathType}" :style="{'margin-right': '0px'}">
<LabeledInput
v-if="portOptions.length === 0"
v-model="servicePort"
:placeholder="t('ingress.rules.port.placeholder')"
@input="queueUpdate"
/>
<Select
v-else
v-model="servicePort"
:options="portOptions"
:placeholder="t('ingress.rules.port.placeholder')"
@input="queueUpdate"
/>
</div>
<button class="btn btn-sm role-link col" @click="$emit('remove')">
{{ t('ingress.rules.removePath') }}
</button>
</div>
</template>
<style lang="scss" scoped>
.rule-path ::v-deep {
button {
line-height: 40px;
}
.v-select INPUT {
height: 50px;
}
.labeled-input {
padding-top: 6px;
}
}
</style>