]> git.proxmox.com Git - proxmox-backup.git/blob - www/NavigationTree.js
ui: add DiskList and DirectoryList
[proxmox-backup.git] / www / NavigationTree.js
1 Ext.define('PBS.store.NavigationStore', {
2 extend: 'Ext.data.TreeStore',
3
4 storeId: 'NavigationStore',
5
6 root: {
7 expanded: true,
8 children: [
9 {
10 text: gettext('Dashboard'),
11 iconCls: 'fa fa-tachometer',
12 path: 'pbsDashboard',
13 leaf: true
14 },
15 {
16 text: gettext('Configuration'),
17 iconCls: 'fa fa-gears',
18 path: 'pbsSystemConfiguration',
19 expanded: true,
20 children: [
21 {
22 text: gettext('User Management'),
23 iconCls: 'fa fa-user',
24 path: 'pbsUserView',
25 leaf: true
26 },
27 {
28 text: gettext('Permissions'),
29 iconCls: 'fa fa-unlock',
30 path: 'pbsACLView',
31 leaf: true
32 },
33 {
34 text: gettext('Remotes'),
35 iconCls: 'fa fa-server',
36 path: 'pbsRemoteView',
37 leaf: true,
38 },
39 {
40 text: gettext('Sync Jobs'),
41 iconCls: 'fa fa-refresh',
42 path: 'pbsSyncJobView',
43 leaf: true,
44 },
45 {
46 text: gettext('Subscription'),
47 iconCls: 'fa fa-support',
48 path: 'pbsSubscription',
49 leaf: true
50 }
51 ]
52 },
53 {
54 text: gettext('Administration'),
55 iconCls: 'fa fa-wrench',
56 path: 'pbsServerAdministration',
57 expanded: true,
58 leaf: false,
59 children: [
60 {
61 text: gettext('Disks'),
62 iconCls: 'fa fa-hdd-o',
63 path: 'pmxDiskList',
64 leaf: false,
65 children: [
66 {
67 text: Proxmox.Utils.directoryText,
68 iconCls: 'fa fa-folder',
69 path: 'pbsDirectoryList',
70 leaf: true,
71 },
72 ]
73 }
74 ]
75 },
76 {
77 text: gettext('Data Store'),
78 iconCls: 'fa fa-archive',
79 path: 'pbsDataStoreConfig',
80 expanded: true,
81 leaf: false
82 },
83 ]
84 }
85 });
86
87 Ext.define('PBS.view.main.NavigationTree', {
88 extend: 'Ext.list.Tree',
89 xtype: 'navigationtree',
90
91 controller: {
92 xclass: 'Ext.app.ViewController',
93
94 init: function(view) {
95
96 view.rstore = Ext.create('Proxmox.data.UpdateStore', {
97 autoStart: true,
98 interval: 15 * 1000,
99 storeid: 'pbs-datastore-list',
100 model: 'pbs-datastore-list'
101 });
102
103 view.rstore.on('load', this.onLoad, this);
104 view.on('destroy', view.rstore.stopUpdate);
105 },
106
107 onLoad: function(store, records, success) {
108 if (!success) return;
109 var view = this.getView();
110
111 let root = view.getStore().getRoot();
112
113 // FIXME: newly added always get appended to the end..
114 records.sort((a, b) => {
115 if (a.id > b.id) return 1;
116 if (a.id < b.id) return -1;
117 return 0;
118 });
119
120 var list = root.findChild('path', 'pbsDataStoreConfig', false);
121 var length = records.length;
122 var lookup_hash = {};
123 for (var i = 0; i < length; i++) {
124 var name = records[i].id;
125 lookup_hash[name] = true;
126 if (!list.findChild('text', name, false)) {
127 list.appendChild({
128 text: name,
129 path: `DataStore-${name}`,
130 iconCls: 'fa fa-database',
131 leaf: true
132 });
133 }
134 }
135
136 var erase_list = [];
137 list.eachChild(function(node) {
138 var name = node.data.text;
139 if (!lookup_hash[name]) {
140 erase_list.push(node);
141 }
142 });
143
144 Ext.Array.forEach(erase_list, function(node) { node.erase(); });
145
146 }
147 },
148
149 select: function(path) {
150 var me = this;
151 var item = me.getStore().findRecord('path', path, 0, false, true, true);
152 me.setSelection(item);
153 },
154
155 animation: false,
156 expanderOnly: true,
157 expanderFirst: false,
158 store: 'NavigationStore',
159 ui: 'nav'
160 });