|
|
|
|
|
by nkingsy
1713 days ago
|
|
I'm building a strongly typed form abstraction layer for work. I use code like this to express "if this generic can be undefined, this field is required. Otherwise it cannot be used". So: FormElement<string|undefined> needs to have a "disabled" function, indicating conditions under which it becomes disabled (and absent from the model), while FormElement<string> must not have a disabled function, as it will always be present in the model. One pitfall of this approach is it requires a lot of trial and error to find the incantation that both works and doesn't swallow error messages. |
|