1
0
mirror of https://github.com/chylex/Minecraft-Phantom-Panel.git synced 2025-09-30 23:02:48 +02:00
Files
Minecraft-Phantom-Panel/Web/Phantom.Web.Components/Utils/FormCustomValidationAttribute.cs

23 lines
832 B
C#

using System.ComponentModel.DataAnnotations;
namespace Phantom.Web.Components.Utils;
public abstract class FormCustomValidationAttribute<TModel, TValue> : ValidationAttribute {
public sealed override bool IsValid(object? value) {
return base.IsValid(value);
}
protected sealed override ValidationResult? IsValid(object? value, ValidationContext validationContext) {
if (value is not TValue typedValue) {
return new ValidationResult(errorMessage: null, [FieldName]);
}
var model = (TModel) validationContext.ObjectInstance;
var result = Validate(model, typedValue);
return result == ValidationResult.Success ? result : new ValidationResult(result?.ErrorMessage, [FieldName]);
}
protected abstract string FieldName { get; }
protected abstract ValidationResult? Validate(TModel model, TValue value);
}