ui: traffic-control edit: move on-load set value logic to own method
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
77d8c593b3
commit
5d5a53059f
|
@ -425,23 +425,33 @@ Ext.define('PBS.window.TrafficControlEdit', {
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
|
|
||||||
|
doSetValues: function(data) {
|
||||||
|
let me = this;
|
||||||
|
|
||||||
|
// NOTE: it can make sense to have any-ip (::/0 and 0/0) and specific ones in the same set
|
||||||
|
// so only check for "is default" when there really just two networks
|
||||||
|
if (data.network?.length === 2) {
|
||||||
|
let nets = [...new Set(data.network)]; // only the set of unique networks
|
||||||
|
if (nets.find(net => net === '0.0.0.0/0') && nets.find(net => net === '::/0')) {
|
||||||
|
delete data.network;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (Ext.isArray(data.timeframe)) {
|
||||||
|
data.timeframe = data.timeframe.join(';');
|
||||||
|
}
|
||||||
|
|
||||||
|
me.setValues(data);
|
||||||
|
},
|
||||||
|
|
||||||
initComponent: function() {
|
initComponent: function() {
|
||||||
let me = this;
|
let me = this;
|
||||||
|
|
||||||
me.callParent();
|
me.callParent();
|
||||||
|
|
||||||
if (!me.isCreate) {
|
if (!me.isCreate) {
|
||||||
me.load({
|
me.load({
|
||||||
success: function(response) {
|
success: ({ result: { data } }) => me.doSetValues(data),
|
||||||
let data = response.result.data;
|
|
||||||
if (data.network?.length === 2 && data.network[0] === '0.0.0.0/0' && data.network[1] === '::/0') {
|
|
||||||
delete data.network;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (Ext.isArray(data.timeframe)) {
|
|
||||||
data.timeframe = data.timeframe.join(';');
|
|
||||||
}
|
|
||||||
|
|
||||||
me.setValues(data);
|
|
||||||
},
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue