mirror of https://github.com/rancher/ui.git
150 lines
3.9 KiB
JavaScript
150 lines
3.9 KiB
JavaScript
import { get, set, observer } from '@ember/object'
|
|
import Component from '@ember/component';
|
|
import layout from './template';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
export default Component.extend({
|
|
layout,
|
|
intl: service(),
|
|
|
|
ingress: null,
|
|
rule: null,
|
|
checked: null,
|
|
editing: true,
|
|
errors: null,
|
|
|
|
pathArray: null,
|
|
|
|
init() {
|
|
this._super(...arguments);
|
|
this.initPathArray();
|
|
},
|
|
|
|
actions: {
|
|
addPath(backendType) {
|
|
get(this, 'pathArray').pushObject({
|
|
backendType,
|
|
targetPort: '',
|
|
serviceId: '',
|
|
path: '',
|
|
});
|
|
},
|
|
|
|
removePath(path) {
|
|
get(this, 'pathArray').removeObject(path);
|
|
},
|
|
},
|
|
|
|
initPathArray() {
|
|
const pathArray = [];
|
|
const paths = get(this, 'rule.paths');
|
|
Object.keys(paths).forEach((p) => {
|
|
const path = paths[p];
|
|
if (get(path, 'serviceId')) {
|
|
pathArray.pushObject(get(this, 'store').createRecord({
|
|
type: 'httpingresspath',
|
|
backendType: 'service',
|
|
targetPort: get(path, 'targetPort'),
|
|
serviceId: get(path, 'serviceId').replace('/', ':'),
|
|
path: p,
|
|
}));
|
|
} else if (get(path, 'workloadIds')) {
|
|
get(path, 'workloadIds').forEach(workload => {
|
|
pathArray.pushObject({
|
|
backendType: 'workload',
|
|
targetPort: get(path, 'targetPort'),
|
|
serviceId: workload,
|
|
path: p,
|
|
});
|
|
});
|
|
}
|
|
});
|
|
set(this, 'pathArray', pathArray);
|
|
},
|
|
|
|
didInsertElement: function () {
|
|
if (get(this, 'editing') && get(this, 'pathArray.length') === 0) {
|
|
this.send('addPath', 'workload');
|
|
}
|
|
},
|
|
|
|
validate: observer('pathArray.@each.{path,backendType,targetPort,serviceId}', function () {
|
|
let intl = this.get('intl');
|
|
let errors = [];
|
|
|
|
const pathArray = get(this, 'pathArray');
|
|
const invalid = pathArray.some(path => !path.targetPort);
|
|
if (invalid) {
|
|
errors.push(intl.t('validation.required', { key: intl.t('generic.port') }));
|
|
}
|
|
|
|
if (errors.length) {
|
|
this.set('errors', errors);
|
|
} else {
|
|
this.set('errors', null);
|
|
}
|
|
}),
|
|
|
|
pathsChanged: observer('pathArray.@each.{path,backendType,targetPort,serviceId}', 'checked', function () {
|
|
if (get(this, 'checked')) {
|
|
this.setDefaultBackend();
|
|
} else {
|
|
this.setPaths();
|
|
}
|
|
}),
|
|
|
|
setDefaultBackend() {
|
|
const pathArray = get(this, 'pathArray');
|
|
let defaultBackend = {
|
|
workloadIds: [],
|
|
};
|
|
pathArray.forEach(path => {
|
|
const backendType = get(path, 'backendType');
|
|
const serviceId = get(path, 'serviceId');
|
|
const targetPort = get(path, 'targetPort');
|
|
if (backendType === 'service') {
|
|
defaultBackend.serviceId = serviceId;
|
|
} else if (backendType === 'workload') {
|
|
defaultBackend.workloadIds.pushObject(serviceId);
|
|
}
|
|
defaultBackend.targetPort = targetPort;
|
|
});
|
|
set(this, 'ingress.defaultBackend', defaultBackend);
|
|
},
|
|
|
|
setPaths() {
|
|
const pathArray = get(this, 'pathArray');
|
|
const paths = {};
|
|
pathArray.forEach(path => {
|
|
const backendType = get(path, 'backendType');
|
|
const pathValue = get(path, 'path');
|
|
const serviceId = get(path, 'serviceId');
|
|
const targetPort = get(path, 'targetPort');
|
|
if (backendType === 'service') {
|
|
const found = paths[pathValue];
|
|
if (found) {
|
|
found.serviceId = serviceId;
|
|
found.targetPort = targetPort;
|
|
} else {
|
|
paths[pathValue] = {
|
|
serviceId,
|
|
targetPort,
|
|
};
|
|
}
|
|
} else if (backendType === 'workload') {
|
|
const found = paths[pathValue];
|
|
if (found && found.workloadIds) {
|
|
found.workloadIds.pushObject(serviceId);
|
|
found.targetPort = targetPort;
|
|
} else {
|
|
paths[pathValue] = {
|
|
workloadIds: [serviceId],
|
|
targetPort,
|
|
};
|
|
}
|
|
}
|
|
})
|
|
set(this, 'rule.paths', paths);
|
|
}
|
|
});
|