-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ddi to lunatic): dynamic units #1175
Conversation
nsenave
commented
Dec 11, 2024
- Dynamic Unit on InputNumber #715
And add unit tests
👋 Version 3.31.0-SNAPSHOT deployed on docker hub |
@QRuhier @laurentC35 J'ai passé les type des labels d'unité en |
👋 Version 3.31.0-SNAPSHOT.2 deployed on docker hub |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
to do
return null; | ||
DynamicLabel label = new DynamicLabel(); | ||
label.setValue(value); | ||
// (type is left at its default value) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm j'aurais pu skip tout le code que j'ai ajouté dans LunaticEditLabelTypes
en faisant simplement un set ici j'ai l'impression, à refacto
} | ||
|
||
public static DynamicLabel createUnit(String value) { | ||
if (value == null) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (value == null || value.trim().isEmpty()) { throw new InvalidValueException("The value for DynamicLabel cannot be null or empty."); }
Ne serait-ce pas mieux de lever une exception ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oui je comprends ta remarque c'est le signe d'une faiblesse dans la modélisation de cet objet, mais il a le droit de façon légitime de ne pas avoir de unit
, dans ces cas là la prop reste à null
donc pas besoin de créer un objet "label" sur la cible.
Ceci dit, au départ la méthode était en privée ici donc c'était pas trop gênant, mais entre deux je l'ai passée en public pour m'en resservir ailleurs, et dans le "cas général" c'est piégeux que la méthode puisse renvoyer du null
en effet
Je vais essayer de refacto pour faire plus propre
Quality Gate passedIssues Measures |
👋 Version 3.31.0-SNAPSHOT.3 deployed on docker hub |