public inbox for pdm-devel@lists.proxmox.com
 help / color / mirror / Atom feed
From: Dominik Csapak <d.csapak@proxmox.com>
To: Shannon Sterz <s.sterz@proxmox.com>
Cc: Proxmox Datacenter Manager development discussion
	<pdm-devel@lists.proxmox.com>
Subject: Re: [pdm-devel] [PATCH datacenter-manager v3 02/18] lib: api-types: add 'layout' property to ViewConfig
Date: Mon, 24 Nov 2025 11:14:01 +0100	[thread overview]
Message-ID: <f38bbbb3-4e0d-4adc-bd64-b0623be4e255@proxmox.com> (raw)
In-Reply-To: <f7fb232f-0d45-4db6-805e-737f2b0961b3@proxmox.com>



On 11/24/25 10:55 AM, Dominik Csapak wrote:
> 
> 
> On 11/17/25 3:57 PM, Shannon Sterz wrote:
>> On Mon Nov 17, 2025 at 1:44 PM CET, Dominik Csapak wrote:
>>> this is a simple string that holds the layout json. We can't currently
>>> add it as a normal property with 'correct' api types, since we want to
>>> use enum features that are not available with the api macro.
>>>
>>> Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
>>> ---
>>>   lib/pdm-api-types/src/views.rs | 12 +++++++++++-
>>>   server/src/views/tests.rs      | 15 +++++++++++++++
>>>   2 files changed, 26 insertions(+), 1 deletion(-)
>>>
>>> diff --git a/lib/pdm-api-types/src/views.rs b/lib/pdm-api-types/src/ 
>>> views.rs
>>> index ef39cc62..4b837384 100644
>>> --- a/lib/pdm-api-types/src/views.rs
>>> +++ b/lib/pdm-api-types/src/views.rs
>>> @@ -47,7 +47,10 @@ pub const FILTER_RULE_LIST_SCHEMA: Schema =
>>>           "exclude": {
>>>               schema: FILTER_RULE_LIST_SCHEMA,
>>>               optional: true,
>>> -        }
>>> +        },
>>> +        layout: {
>>> +            optional: true,
>>> +        },
>>>       }
>>>   )]
>>>   #[derive(Clone, Debug, Default, Deserialize, Serialize, Updater, 
>>> PartialEq)]
>>> @@ -67,6 +70,13 @@ pub struct ViewConfig {
>>>       #[serde(default, skip_serializing_if = "Vec::is_empty")]
>>>       #[updater(serde(skip_serializing_if = "Option::is_none"))]
>>>       pub exclude: Vec<FilterRule>,
>>> +
>>> +    // we can't currently describe this with the 'api' macro so save
>>> +    // it simply as a string and check it in the add/update call
>>
>> one question: shouldn't this be `Value` instead? right now this needs to
>> be a string that is valid json. meaning that the api expects a json body
>> that contains `layout` as a string, with that string being escaped json
>> again.
>>
>> with `Value` this could be the json directly, avoiding having to escape
>> the json string. this would also make it easier to describe this later
>> on via the api macro if i'm not mistaken. the last commit in this series
>> could then also be dropped.
>>
>> what do you think?
> 
> had a short look and it seems like that we can't currently combine
> the Updater derivation with Value since there is no
> impl of UpdaterType/ApiType for Value and we can't provide one.
> 
> i shortly tried to implment a wrapper type, but then we run into
> the issue that we'd have to impl ApiType for that too and
> the fact that we can't currently represent the Layout in a schema is
> the whole point of the string workaround here.
> 
> The only thing that could work here is to simply define
> an ObjectSchema with no properties and 'additional_properties' to true.
> I'll try that and see if it makes the situation better.
> 
ok this won't work AFAICS since the section config currently only
does a 'parse_simple_value' which can't handle object schemas

so i think using strings here is currently the best way to handle
this (besides making section config have complex types in its values
instead of just 'simple' values. but this seems a bit out of
scope for this for now?)


_______________________________________________
pdm-devel mailing list
pdm-devel@lists.proxmox.com
https://lists.proxmox.com/cgi-bin/mailman/listinfo/pdm-devel

  reply	other threads:[~2025-11-24 10:14 UTC|newest]

Thread overview: 35+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-11-17 12:44 [pdm-devel] [PATCH datacenter-manager v3 00/18] enable custom views on the UI Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 01/18] lib: pdm-config: views: add locking/saving methods Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 02/18] lib: api-types: add 'layout' property to ViewConfig Dominik Csapak
2025-11-17 14:58   ` Shannon Sterz
2025-11-24  9:55     ` Dominik Csapak
2025-11-24 10:14       ` Dominik Csapak [this message]
2025-11-24 10:26         ` Shannon Sterz
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 03/18] server: api: implement CRUD api for views Dominik Csapak
2025-11-17 14:58   ` Shannon Sterz
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 04/18] server: api: resources: add 'view' category to search syntax Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 05/18] ui: remote selector: allow forcing of value Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 06/18] ui: dashboard types: add missing 'default' to de-serialization Dominik Csapak
2025-11-17 14:59   ` Shannon Sterz
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 07/18] ui: dashboard: status row: add optional 'editing state' Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 08/18] ui: dashboard: prepare view for editing custom views Dominik Csapak
2025-11-17 14:59   ` Shannon Sterz
2025-11-24 10:32     ` Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 09/18] ui: views: implement view loading from api Dominik Csapak
2025-11-17 14:59   ` Shannon Sterz
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 10/18] ui: views: make 'view' name property optional Dominik Csapak
2025-11-17 14:59   ` Shannon Sterz
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 11/18] ui: views: add 'view' parameter to api calls Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 12/18] ui: views: save updated layout to backend Dominik Csapak
2025-11-17 15:00   ` Shannon Sterz
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 13/18] ui: add view list context Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 14/18] ui: configuration: add view CRUD panels Dominik Csapak
2025-11-17 15:00   ` Shannon Sterz
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 15/18] ui: main menu: add optional view_list property Dominik Csapak
2025-11-17 15:01   ` Shannon Sterz
2025-11-24 11:06     ` Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 16/18] ui: load view list on page init Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 17/18] lib/ui: move views types to pdm-api-types Dominik Csapak
2025-11-17 12:44 ` [pdm-devel] [PATCH datacenter-manager v3 18/18] server: api: views: check layout string for validity Dominik Csapak
2025-11-17 15:03 ` [pdm-devel] [PATCH datacenter-manager v3 00/18] enable custom views on the UI Shannon Sterz
2025-11-24 11:09   ` Dominik Csapak

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=f38bbbb3-4e0d-4adc-bd64-b0623be4e255@proxmox.com \
    --to=d.csapak@proxmox.com \
    --cc=pdm-devel@lists.proxmox.com \
    --cc=s.sterz@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