Ext.define('PVE.node.CreateLVMThin', { extend: 'Proxmox.window.Edit', xtype: 'pveCreateLVMThin', onlineHelp: 'chapter_lvm', subject: 'LVM Thinpool', showProgress: true, isCreate: true, initComponent: function() { let me = this; if (!me.nodename) { throw "no node name specified"; } Ext.applyIf(me, { url: `/nodes/${me.nodename}/disks/lvmthin`, method: 'POST', items: [ { xtype: 'pmxDiskSelector', name: 'device', nodename: me.nodename, diskType: 'unused', includePartitions: true, fieldLabel: gettext('Disk'), allowBlank: false, }, { xtype: 'proxmoxtextfield', name: 'name', fieldLabel: gettext('Name'), allowBlank: false, }, { xtype: 'proxmoxcheckbox', name: 'add_storage', fieldLabel: gettext('Add Storage'), value: '1', }, ], }); me.callParent(); }, }); Ext.define('PVE.node.LVMThinList', { extend: 'Ext.grid.Panel', xtype: 'pveLVMThinList', viewModel: { data: { thinPool: '', volumeGroup: '', }, }, controller: { xclass: 'Ext.app.ViewController', destroyThinPool: function() { let me = this; let vm = me.getViewModel(); let view = me.getView(); const thinPool = vm.get('thinPool'); const volumeGroup = vm.get('volumeGroup'); if (!view.nodename) { throw "no node name specified"; } if (!thinPool) { throw "no thin pool specified"; } if (!volumeGroup) { throw "no volume group specified"; } Ext.create('PVE.window.SafeDestroyStorage', { url: `/nodes/${view.nodename}/disks/lvmthin/${thinPool}`, params: { 'volume-group': volumeGroup }, item: { id: `${volumeGroup}/${thinPool}` }, taskName: 'lvmthinremove', taskDone: () => { view.reload(); }, }).show(); }, }, emptyText: PVE.Utils.renderNotFound('Thin-Pool'), stateful: true, stateId: 'grid-node-lvmthin', rootVisible: false, useArrows: true, columns: [ { text: gettext('Name'), dataIndex: 'lv', flex: 1, }, { header: 'Volume Group', width: 110, dataIndex: 'vg', }, { header: gettext('Usage'), width: 110, dataIndex: 'usage', tdCls: 'x-progressbar-default-cell', xtype: 'widgetcolumn', widget: { xtype: 'pveProgressBar', }, }, { header: gettext('Size'), width: 100, align: 'right', sortable: true, renderer: Proxmox.Utils.format_size, dataIndex: 'lv_size', }, { header: gettext('Used'), width: 100, align: 'right', sortable: true, renderer: Proxmox.Utils.format_size, dataIndex: 'used', }, { header: gettext('Metadata Usage'), width: 120, dataIndex: 'metadata_usage', tdCls: 'x-progressbar-default-cell', xtype: 'widgetcolumn', widget: { xtype: 'pveProgressBar', }, }, { header: gettext('Metadata Size'), width: 120, align: 'right', sortable: true, renderer: Proxmox.Utils.format_size, dataIndex: 'metadata_size', }, { header: gettext('Metadata Used'), width: 125, align: 'right', sortable: true, renderer: Proxmox.Utils.format_size, dataIndex: 'metadata_used', }, ], tbar: [ { text: gettext('Reload'), iconCls: 'fa fa-refresh', handler: function() { this.up('panel').reload(); }, }, { text: gettext('Create') + ': Thinpool', handler: function() { var view = this.up('panel'); Ext.create('PVE.node.CreateLVMThin', { nodename: view.nodename, taskDone: () => view.reload(), autoShow: true, }); }, }, '->', { xtype: 'tbtext', data: { thinPool: undefined, volumeGroup: undefined, }, bind: { data: { thinPool: "{thinPool}", volumeGroup: "{volumeGroup}", }, }, tpl: [ '', '', 'Thinpool {volumeGroup}/{thinPool}:', '', // volumeGroup 'Missing volume group (node running old version?)', '', '', // thinPool Ext.String.format(gettext('No {0} selected'), 'thinpool'), '', ], }, { text: gettext('More'), iconCls: 'fa fa-bars', disabled: true, bind: { disabled: '{!volumeGroup || !thinPool}', }, menu: [ { text: gettext('Destroy'), itemId: 'remove', iconCls: 'fa fa-fw fa-trash-o', handler: 'destroyThinPool', disabled: true, bind: { disabled: '{!volumeGroup || !thinPool}', }, }, ], }, ], reload: function() { let me = this; me.store.load(); me.store.sort(); }, listeners: { activate: function() { this.reload(); }, selectionchange: function(model, selected) { let me = this; let vm = me.getViewModel(); vm.set('volumeGroup', selected[0]?.data.vg || ''); vm.set('thinPool', selected[0]?.data.lv || ''); }, }, initComponent: function() { let me = this; me.nodename = me.pveSelNode.data.node; if (!me.nodename) { throw "no node name specified"; } Ext.apply(me, { store: { fields: [ 'lv', 'lv_size', 'used', 'metadata_size', 'metadata_used', { type: 'number', name: 'usage', calculate: data => data.used / data.lv_size, }, { type: 'number', name: 'metadata_usage', calculate: data => data.metadata_used / data.metadata_size, }, ], proxy: { type: 'proxmox', url: `/api2/json/nodes/${me.nodename}/disks/lvmthin`, }, sorters: 'lv', }, }); me.callParent(); Proxmox.Utils.monStoreErrors(me, me.getStore(), true); me.reload(); }, });