mirror of https://github.com/Radarr/Radarr
New: Frontend Placeholders from the Backend
This commit is contained in:
parent
4d6c3369c6
commit
7dda481824
|
@ -64,6 +64,7 @@ function ProviderFieldFormGroup(props) {
|
|||
label,
|
||||
helpText,
|
||||
helpLink,
|
||||
placeholder,
|
||||
value,
|
||||
type,
|
||||
advanced,
|
||||
|
@ -96,6 +97,7 @@ function ProviderFieldFormGroup(props) {
|
|||
label={label}
|
||||
helpText={helpText}
|
||||
helpLink={helpLink}
|
||||
placeholder={placeholder}
|
||||
value={value}
|
||||
values={getSelectValues(selectOptions)}
|
||||
errors={errors}
|
||||
|
@ -121,6 +123,7 @@ ProviderFieldFormGroup.propTypes = {
|
|||
label: PropTypes.string.isRequired,
|
||||
helpText: PropTypes.string,
|
||||
helpLink: PropTypes.string,
|
||||
placeholder: PropTypes.string,
|
||||
value: PropTypes.any,
|
||||
type: PropTypes.string.isRequired,
|
||||
advanced: PropTypes.bool.isRequired,
|
||||
|
|
|
@ -23,6 +23,7 @@ namespace NzbDrone.Core.Annotations
|
|||
public string Section { get; set; }
|
||||
public HiddenType Hidden { get; set; }
|
||||
public PrivacyLevel Privacy { get; set; }
|
||||
public string Placeholder { get; set; }
|
||||
}
|
||||
|
||||
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
|
||||
|
|
|
@ -18,6 +18,7 @@ namespace Radarr.Http.ClientSchema
|
|||
public string SelectOptionsProviderAction { get; set; }
|
||||
public string Section { get; set; }
|
||||
public string Hidden { get; set; }
|
||||
public string Placeholder { get; set; }
|
||||
|
||||
public Field Clone()
|
||||
{
|
||||
|
|
|
@ -101,7 +101,8 @@ namespace Radarr.Http.ClientSchema
|
|||
Order = fieldAttribute.Order,
|
||||
Advanced = fieldAttribute.Advanced,
|
||||
Type = fieldAttribute.Type.ToString().FirstCharToLower(),
|
||||
Section = fieldAttribute.Section
|
||||
Section = fieldAttribute.Section,
|
||||
Placeholder = fieldAttribute.Placeholder
|
||||
};
|
||||
|
||||
if (fieldAttribute.Type == FieldType.Select || fieldAttribute.Type == FieldType.TagSelect)
|
||||
|
|
Loading…
Reference in New Issue