mirror of https://github.com/rancher/dashboard.git
148 lines
4.3 KiB
Vue
148 lines
4.3 KiB
Vue
<script>
|
|
import Tabbed from '@shell/components/Tabbed';
|
|
import createEditView from '@shell/mixins/create-edit-view';
|
|
import CruResource from '@shell/components/CruResource';
|
|
import Questions from '@shell/components/Questions';
|
|
import { CONFIG_MAP, NAMESPACE } from '@shell/config/types';
|
|
import LabeledSelect from '@shell/components/form/LabeledSelect';
|
|
import { LabeledInput } from '@components/Form/LabeledInput';
|
|
import Loading from '@shell/components/Loading';
|
|
import jsyaml from 'js-yaml';
|
|
|
|
export default {
|
|
components: {
|
|
CruResource,
|
|
LabeledSelect,
|
|
LabeledInput,
|
|
Tabbed,
|
|
Questions,
|
|
Loading
|
|
},
|
|
|
|
mixins: [createEditView],
|
|
|
|
props: {
|
|
value: {
|
|
type: Object,
|
|
required: true,
|
|
},
|
|
},
|
|
|
|
async fetch() {
|
|
await this.$store.dispatch('catalog/load');
|
|
const inStore = this.$store.getters['currentStore'](NAMESPACE);
|
|
|
|
// this seems excessive but if we're gonna pull up specific configMaps we need then we need the configmaps to be in the store.
|
|
// ToDo: try to find a better way of loading these or just load the ones we need
|
|
await this.$store.dispatch(`${ inStore }/findAll`, { type: CONFIG_MAP });
|
|
|
|
const federatorSystemNamespacesConfigMap = await this.getConfigMap('cattle-monitoring-system/prometheus-federator-system-namespaces');
|
|
|
|
this.systemNamespaces = JSON.parse(federatorSystemNamespacesConfigMap?.data?.['system-namespaces.json']);
|
|
|
|
this.namespaces = this.$store.getters[`${ inStore }/all`](NAMESPACE)
|
|
.filter(this.namespaceFilter)
|
|
.map(this.namespaceMapper);
|
|
|
|
this.loading = false;
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
systemNamespaces: null,
|
|
namespaces: [],
|
|
loading: true
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
selectedNamespaceQuestions() {
|
|
const inStore = this.$store.getters['currentStore']();
|
|
|
|
const configMapRelationship = this.currentNamespace?.metadata?.relationships.find(relationship => relationship?.toType === 'configmap');
|
|
|
|
const questionsYaml = this.$store.getters[`${ inStore }/byId`](configMapRelationship?.toType, configMapRelationship?.toId)?.data?.['questions.yaml'];
|
|
|
|
return jsyaml.load(questionsYaml)?.questions;
|
|
},
|
|
currentNamespace() {
|
|
return this.namespaces.find(namespace => namespace.id === this.value?.metadata?.namespace);
|
|
}
|
|
},
|
|
|
|
methods: {
|
|
getNamespaceConfigMapId(namespace) {
|
|
return this.currentNamespace?.metadata?.relationships.find(relationship => relationship?.toType === 'configmap')?.toId;
|
|
},
|
|
async getConfigMap(id) {
|
|
return await this.$store.dispatch('cluster/find', { type: CONFIG_MAP, id });
|
|
},
|
|
namespaceFilter(namespace) {
|
|
const excludeProjects = [...this.systemNamespaces?.systemProjectLabelValues || [], this.systemNamespaces?.projectReleaseLabelValue];
|
|
|
|
return namespace?.project && namespace?.metadata?.labels?.['helm.cattle.io/helm-project-operated'] && !excludeProjects.includes(namespace.projectId);
|
|
},
|
|
namespaceMapper(namespace) {
|
|
return {
|
|
...namespace,
|
|
configMapId: this.getNamespaceConfigMapId(namespace),
|
|
label: namespace?.project?.spec?.displayName,
|
|
value: namespace?.id,
|
|
};
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
|
|
<template>
|
|
<CruResource
|
|
v-if="!loading"
|
|
:done-route="doneRoute"
|
|
:resource="value"
|
|
:mode="mode"
|
|
:errors="errors"
|
|
:apply-hooks="applyHooks"
|
|
@finish="save"
|
|
>
|
|
<div class="row">
|
|
<div class="col span-6">
|
|
<LabeledSelect
|
|
v-model="value.metadata.namespace"
|
|
:label="t('namespace.project.label')"
|
|
:options="namespaces"
|
|
required
|
|
/>
|
|
</div>
|
|
<div class="col span-6">
|
|
<LabeledInput
|
|
v-model="value.metadata.description"
|
|
:label="t('nameNsDescription.description.label')"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col span-12">
|
|
<Tabbed
|
|
v-if="!!currentNamespace && selectedNamespaceQuestions"
|
|
ref="tabs"
|
|
:side-tabs="true"
|
|
>
|
|
<Questions
|
|
v-model="value"
|
|
tabbed="multiple"
|
|
:target-namespace="value.metadata.namespace"
|
|
:source="selectedNamespaceQuestions"
|
|
/>
|
|
</Tabbed>
|
|
</div>
|
|
</div>
|
|
</CruResource>
|
|
<Loading v-else />
|
|
</template>
|
|
|
|
<style lang="scss" scoped>
|
|
.row {
|
|
margin-bottom: 20px;
|
|
}
|
|
</style>
|