ui: tape: only add tapestore and nav element once
Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
parent
f46573f8c3
commit
7d6f03a7fe
|
@ -119,25 +119,28 @@ Ext.define('PBS.view.main.NavigationTree', {
|
|||
view.on('destroy', view.rstore.stopUpdate);
|
||||
|
||||
if (PBS.enableTapeUI) {
|
||||
view.tapestore = Ext.create('Proxmox.data.UpdateStore', {
|
||||
autoStart: true,
|
||||
interval: 2 * 1000,
|
||||
storeid: 'pbs-tape-drive-list',
|
||||
model: 'pbs-tape-drive-list',
|
||||
});
|
||||
if (view.tapestore === undefined) {
|
||||
view.tapestore = Ext.create('Proxmox.data.UpdateStore', {
|
||||
autoStart: true,
|
||||
interval: 2 * 1000,
|
||||
storeid: 'pbs-tape-drive-list',
|
||||
model: 'pbs-tape-drive-list',
|
||||
});
|
||||
view.tapestore.on('load', this.onTapeDriveLoad, this);
|
||||
view.on('destroy', view.tapestore.stopUpdate);
|
||||
}
|
||||
|
||||
let root = view.getStore().getRoot();
|
||||
root.insertChild(3, {
|
||||
text: "Tape Backup",
|
||||
iconCls: 'pbs-icon-tape',
|
||||
id: 'tape_management',
|
||||
path: 'pbsTapeManagement',
|
||||
expanded: true,
|
||||
children: [],
|
||||
});
|
||||
|
||||
view.tapestore.on('load', this.onTapeDriveLoad, this);
|
||||
view.on('destroy', view.tapestore.stopUpdate);
|
||||
if (root.findChild('id', 'tape_management', false) === null) {
|
||||
root.insertChild(3, {
|
||||
text: "Tape Backup",
|
||||
iconCls: 'pbs-icon-tape',
|
||||
id: 'tape_management',
|
||||
path: 'pbsTapeManagement',
|
||||
expanded: true,
|
||||
children: [],
|
||||
});
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue