public inbox for pve-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Dominik Csapak <d.csapak@proxmox.com>
To: pve-devel@lists.proxmox.com
Subject: [PATCH manager v2 02/17] ui: qemu: wizard: refactor ostype and cd selector into an OSPanel
Date: Tue,  3 Feb 2026 11:00:07 +0100	[thread overview]
Message-ID: <20260203102118.1430545-3-d.csapak@proxmox.com> (raw)
In-Reply-To: <20260203102118.1430545-1-d.csapak@proxmox.com>

which is specific for the wizard (like the SystemPanel). The wizard
specific code is now moved to this panel, and the original selectors are
(mostly) free of wizard specific code.

This makes the set/bind flows easier to follow.

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
---
 www/manager6/Makefile             |   1 +
 www/manager6/qemu/CreateWizard.js |  24 +----
 www/manager6/qemu/OSPanel.js      | 148 ++++++++++++++++++++++++++++++
 www/manager6/qemu/OSTypeEdit.js   | 104 ---------------------
 4 files changed, 150 insertions(+), 127 deletions(-)
 create mode 100644 www/manager6/qemu/OSPanel.js

diff --git a/www/manager6/Makefile b/www/manager6/Makefile
index 4558d53e..944dd873 100644
--- a/www/manager6/Makefile
+++ b/www/manager6/Makefile
@@ -267,6 +267,7 @@ JSSRC= 							\
 	qemu/NetworkEdit.js				\
 	qemu/OSDefaults.js				\
 	qemu/OSTypeEdit.js				\
+	qemu/OSPanel.js					\
 	qemu/Options.js					\
 	qemu/PCIEdit.js					\
 	qemu/ProcessorEdit.js				\
diff --git a/www/manager6/qemu/CreateWizard.js b/www/manager6/qemu/CreateWizard.js
index 341324c8..3928d7ff 100644
--- a/www/manager6/qemu/CreateWizard.js
+++ b/www/manager6/qemu/CreateWizard.js
@@ -183,30 +183,8 @@ Ext.define('PVE.qemu.CreateWizard', {
             },
         },
         {
-            xtype: 'container',
-            layout: 'hbox',
-            defaults: {
-                flex: 1,
-                padding: '0 10',
-            },
+            xtype: 'pveQemuOSPanel',
             title: gettext('OS'),
-            items: [
-                {
-                    xtype: 'pveQemuCDInputPanel',
-                    bind: {
-                        nodename: '{nodename}',
-                    },
-                    confid: 'ide2',
-                    insideWizard: true,
-                },
-                {
-                    xtype: 'pveQemuOSTypePanel',
-                    insideWizard: true,
-                    bind: {
-                        nodename: '{nodename}',
-                    },
-                },
-            ],
         },
         {
             xtype: 'pveQemuSystemPanel',
diff --git a/www/manager6/qemu/OSPanel.js b/www/manager6/qemu/OSPanel.js
new file mode 100644
index 00000000..dd44c865
--- /dev/null
+++ b/www/manager6/qemu/OSPanel.js
@@ -0,0 +1,148 @@
+/// Used only for the wizard to combine the cd input panel and the ostype panel
+
+Ext.define('PVE.qemu.OSPanel', {
+    extend: 'Ext.panel.Panel',
+    xtype: 'pveQemuOSPanel',
+
+    layout: 'hbox',
+    defaults: {
+        flex: 1,
+        padding: '0 10',
+    },
+
+    controller: {
+        xclass: 'Ext.app.ViewController',
+        control: {
+            'combobox[name=osbase]': {
+                change: 'onOSBaseChange',
+            },
+            'combobox[name=ostype]': {
+                afterrender: 'onOSTypeChange',
+                change: 'onOSTypeChange',
+            },
+            'checkbox[reference=enableSecondCD]': {
+                change: 'onSecondCDChange',
+            },
+        },
+        onOSBaseChange: function (field, value) {
+            let me = this;
+            let isWindows = value === 'Microsoft Windows';
+            let enableSecondCD = me.lookup('enableSecondCD');
+            enableSecondCD.setVisible(isWindows);
+            if (!isWindows) {
+                enableSecondCD.setValue(false);
+            }
+        },
+        onOSTypeChange: function (field) {
+            var me = this,
+                ostype = field.getValue();
+            var targetValues = PVE.qemu.OSDefaults.getDefaults(ostype);
+
+            me.setWidget('pveBusSelector', targetValues.busType);
+            me.setWidget('pveNetworkCardSelector', targetValues.networkCard);
+            me.setWidget('CPUModelSelector', targetValues.cputype);
+            var scsihw = targetValues.scsihw || '__default__';
+            this.getViewModel().set('current.scsihw', scsihw);
+            this.getViewModel().set('current.ostype', ostype);
+        },
+        setWidget: function (widget, newValue) {
+            // changing a widget is safe only if ComponentQuery.query returns us
+            // a single value array
+            var widgets = Ext.ComponentQuery.query('pveQemuCreateWizard ' + widget);
+            if (widgets.length === 1) {
+                widgets[0].setValue(newValue);
+            } else {
+                // ignore multiple disks, we only want to set the type if there is a single disk
+            }
+        },
+        onSecondCDChange: function (widget, value, lastValue) {
+            let me = this;
+            let vm = me.getViewModel();
+            let updateVMConfig = function () {
+                let widgets = Ext.ComponentQuery.query('pveMultiHDPanel');
+                if (widgets.length === 1) {
+                    widgets[0].getController().updateVMConfig();
+                }
+            };
+            if (value) {
+                // only for windows
+                vm.set('current.ide0', 'some');
+                vm.notify();
+                updateVMConfig();
+                me.setWidget('pveBusSelector', 'scsi');
+                me.setWidget('pveNetworkCardSelector', 'virtio');
+            } else {
+                vm.set('current.ide0', '');
+                vm.notify();
+                updateVMConfig();
+                me.setWidget('pveBusSelector', 'scsi');
+                let ostype = me.getView().down('[name=ostype]').getValue();
+                let targetValues = PVE.qemu.OSDefaults.getDefaults(ostype);
+                me.setWidget('pveBusSelector', targetValues.busType);
+            }
+        },
+    },
+
+    items: [
+        {
+            xtype: 'pveQemuCDInputPanel',
+            reference: 'cdSelector',
+            bind: {
+                nodename: '{nodename}',
+            },
+            confid: 'ide2',
+            insideWizard: true,
+        },
+        {
+            xtype: 'container',
+            layout: {
+                type: 'vbox',
+                align: 'stretch',
+            },
+            defaults: {
+                flex: 1,
+            },
+            items: [
+                {
+                    xtype: 'displayfield',
+                    value: gettext('Guest OS') + ':',
+                },
+                {
+                    xtype: 'pveQemuOSTypePanel',
+                    insideWizard: true,
+                },
+                {
+                    xtype: 'inputpanel',
+                    items: [
+                        {
+                            xtype: 'proxmoxcheckbox',
+                            reference: 'enableSecondCD',
+                            isFormField: false,
+                            hidden: true,
+                            checked: false,
+                            boxLabel: gettext('Add additional drive for VirtIO drivers'),
+                            listeners: {
+                                change: function (cb, value) {
+                                    let me = this.up('pveQemuOSPanel');
+                                    me.lookup('isoSelector').setDisabled(!value);
+                                    me.lookup('isoSelector').setHidden(!value);
+                                },
+                            },
+                        },
+                        {
+                            xtype: 'pveIsoSelector',
+                            reference: 'isoSelector',
+                            name: 'ide0',
+                            insideWizard: true,
+                            hidden: true,
+                            disabled: true,
+                            bind: {
+                                nodename: '{nodename}',
+                            },
+                        },
+                    ],
+                },
+            ],
+        },
+    ],
+});
diff --git a/www/manager6/qemu/OSTypeEdit.js b/www/manager6/qemu/OSTypeEdit.js
index f8f8c0b6..a9508539 100644
--- a/www/manager6/qemu/OSTypeEdit.js
+++ b/www/manager6/qemu/OSTypeEdit.js
@@ -10,82 +10,11 @@ Ext.define('PVE.qemu.OSTypeInputPanel', {
             'combobox[name=osbase]': {
                 change: 'onOSBaseChange',
             },
-            'combobox[name=ostype]': {
-                afterrender: 'onOSTypeChange',
-                change: 'onOSTypeChange',
-            },
-            'checkbox[reference=enableSecondCD]': {
-                change: 'onSecondCDChange',
-            },
         },
         onOSBaseChange: function (field, value) {
             let me = this;
             me.lookup('ostype').getStore().setData(PVE.Utils.kvm_ostypes[value]);
-            if (me.getView().insideWizard) {
-                let isWindows = value === 'Microsoft Windows';
-                let enableSecondCD = me.lookup('enableSecondCD');
-                enableSecondCD.setVisible(isWindows);
-                if (!isWindows) {
-                    enableSecondCD.setValue(false);
-                }
-            }
-        },
-        onOSTypeChange: function (field) {
-            var me = this,
-                ostype = field.getValue();
-            if (!me.getView().insideWizard) {
-                return;
-            }
-            var targetValues = PVE.qemu.OSDefaults.getDefaults(ostype);
-
-            me.setWidget('pveBusSelector', targetValues.busType);
-            me.setWidget('pveNetworkCardSelector', targetValues.networkCard);
-            me.setWidget('CPUModelSelector', targetValues.cputype);
-            var scsihw = targetValues.scsihw || '__default__';
-            this.getViewModel().set('current.scsihw', scsihw);
-            this.getViewModel().set('current.ostype', ostype);
-        },
-        setWidget: function (widget, newValue) {
-            // changing a widget is safe only if ComponentQuery.query returns us
-            // a single value array
-            var widgets = Ext.ComponentQuery.query('pveQemuCreateWizard ' + widget);
-            if (widgets.length === 1) {
-                widgets[0].setValue(newValue);
-            } else {
-                // ignore multiple disks, we only want to set the type if there is a single disk
-            }
         },
-        onSecondCDChange: function (widget, value, lastValue) {
-            let me = this;
-            let vm = me.getViewModel();
-            let updateVMConfig = function () {
-                let widgets = Ext.ComponentQuery.query('pveMultiHDPanel');
-                if (widgets.length === 1) {
-                    widgets[0].getController().updateVMConfig();
-                }
-            };
-            if (value) {
-                // only for windows
-                vm.set('current.ide0', 'some');
-                vm.notify();
-                updateVMConfig();
-                me.setWidget('pveBusSelector', 'scsi');
-                me.setWidget('pveNetworkCardSelector', 'virtio');
-            } else {
-                vm.set('current.ide0', '');
-                vm.notify();
-                updateVMConfig();
-                me.setWidget('pveBusSelector', 'scsi');
-                let ostype = me.lookup('ostype').getValue();
-                let targetValues = PVE.qemu.OSDefaults.getDefaults(ostype);
-                me.setWidget('pveBusSelector', targetValues.busType);
-            }
-        },
-    },
-
-    setNodename: function (nodename) {
-        var me = this;
-        me.lookup('isoSelector').setNodename(nodename);
     },
 
     onGetValues: function (values) {
@@ -103,11 +32,6 @@ Ext.define('PVE.qemu.OSTypeInputPanel', {
         var me = this;
 
         me.items = [
-            {
-                xtype: 'displayfield',
-                value: gettext('Guest OS') + ':',
-                hidden: !me.insideWizard,
-            },
             {
                 xtype: 'combobox',
                 submitValue: false,
@@ -147,34 +71,6 @@ Ext.define('PVE.qemu.OSTypeInputPanel', {
             },
         ];
 
-        if (me.insideWizard) {
-            me.items.push(
-                {
-                    xtype: 'proxmoxcheckbox',
-                    reference: 'enableSecondCD',
-                    isFormField: false,
-                    hidden: true,
-                    checked: false,
-                    boxLabel: gettext('Add additional drive for VirtIO drivers'),
-                    listeners: {
-                        change: function (cb, value) {
-                            me.lookup('isoSelector').setDisabled(!value);
-                            me.lookup('isoSelector').setHidden(!value);
-                        },
-                    },
-                },
-                {
-                    xtype: 'pveIsoSelector',
-                    reference: 'isoSelector',
-                    name: 'ide0',
-                    nodename: me.nodename,
-                    insideWizard: true,
-                    hidden: true,
-                    disabled: true,
-                },
-            );
-        }
-
         me.callParent();
     },
 });
-- 
2.47.3





  parent reply	other threads:[~2026-02-03 10:21 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-02-03 10:00 [PATCH manager v2 00/17] enable qemu vm architecture selection Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 01/17] api/pvestatd: broadcast and expose non-x86 host architecture Dominik Csapak
2026-02-03 13:56   ` Thomas Lamprecht
2026-02-03 15:07   ` Thomas Lamprecht
2026-02-03 10:00 ` Dominik Csapak [this message]
2026-02-03 10:00 ` [PATCH manager v2 03/17] ui: form: add filtered KVComboBox Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 04/17] ui: resource store: add architecture field Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 05/17] ui: qemu: add architecture specific defaults and helpers Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 06/17] ui: qemu: add architecture field in wizard and hardware view Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 07/17] ui: qemu: make scsi hw selector architecture aware Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 08/17] ui: qemu: make osdefaults " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 09/17] ui: qemu: make os type selector " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 10/17] ui: qemu: make machine panels/fields " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 11/17] ui: qemu: make bios selector " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 12/17] ui: qemu: make sortByPreviousUsage " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 13/17] ui: qemu: wizard: use defaults to populate machine and bios Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 14/17] ui: qemu: wizard: make iso confid architecture specific Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 15/17] ui: qemu: make bus selector architecture aware Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 16/17] ui: qemu: make processor edit " Dominik Csapak
2026-02-03 10:00 ` [PATCH manager v2 17/17] ui: qemu: change ui default for cpu model Dominik Csapak
2026-02-03 10:56 ` [PATCH manager v2 00/17] enable qemu vm architecture selection Dominik Csapak
2026-02-03 13:34 ` Thomas Lamprecht

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20260203102118.1430545-3-d.csapak@proxmox.com \
    --to=d.csapak@proxmox.com \
    --cc=pve-devel@lists.proxmox.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Service provided by Proxmox Server Solutions GmbH | Privacy | Legal