ui: tape: increase tapestore interval

from 2 to 60 seconds. To retain the response time of the gui
when adding/editing/removing, trigger a manual reload on these actions

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak
2021-03-10 10:10:47 +01:00
committed by Dietmar Maurer
parent 3c5b523631
commit dcf155dac9
3 changed files with 22 additions and 1 deletions

View File

@ -11,6 +11,11 @@ Ext.define('PBS.TapeManagement.ChangerPanel', {
controller: {
xclass: 'Ext.app.ViewController',
reloadTapeStore: function() {
let navtree = Ext.ComponentQuery.query('navigationtree')[0];
navtree.reloadTapeStore();
},
onAdd: function() {
let me = this;
Ext.create('PBS.TapeManagement.ChangerEditWindow', {
@ -40,6 +45,7 @@ Ext.define('PBS.TapeManagement.ChangerPanel', {
reload: function() {
this.getView().getStore().rstore.load();
this.reloadTapeStore();
},
stopStore: function() {

View File

@ -19,6 +19,11 @@ Ext.define('PBS.TapeManagement.DrivePanel', {
controller: {
xclass: 'Ext.app.ViewController',
reloadTapeStore: function() {
let navtree = Ext.ComponentQuery.query('navigationtree')[0];
navtree.reloadTapeStore();
},
onAdd: function() {
let me = this;
Ext.create('PBS.TapeManagement.DriveEditWindow', {
@ -57,6 +62,7 @@ Ext.define('PBS.TapeManagement.DrivePanel', {
reload: function() {
this.getView().getStore().rstore.load();
this.reloadTapeStore();
},
stopStore: function() {