Files
Umbraco-CMS/src/Umbraco.Web/PropertyEditors/MultipleTextStringPropertyEditor.cs
T

140 lines
6.0 KiB
C#
Raw Normal View History

2017-07-20 11:21:28 +02:00
using System;
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
2013-10-27 15:22:04 +01:00
using System.Linq;
using Newtonsoft.Json.Linq;
using Umbraco.Core;
using Umbraco.Core.Exceptions;
2013-10-27 15:22:04 +01:00
using Umbraco.Core.Logging;
using Umbraco.Core.Models;
using Umbraco.Core.Models.Editors;
using Umbraco.Core.PropertyEditors;
using Umbraco.Core.PropertyEditors.Validators;
using Umbraco.Core.Services;
2013-10-27 15:22:04 +01:00
namespace Umbraco.Web.PropertyEditors
{
2018-02-15 14:49:32 +01:00
/// <summary>
/// Represents a multiple text string property editor.
/// </summary>
2019-06-07 17:59:38 +01:00
[DataEditor(
Constants.PropertyEditors.Aliases.MultipleTextstring,
"Repeatable textstrings",
"multipletextbox",
ValueType = ValueTypes.Text,
Group = Constants.PropertyEditors.Groups.Lists,
Icon = "icon-ordered-list")]
2018-02-25 10:43:16 +01:00
public class MultipleTextStringPropertyEditor : DataEditor
2013-10-27 15:22:04 +01:00
{
/// <summary>
2018-02-15 14:49:32 +01:00
/// Initializes a new instance of the <see cref="MultipleTextStringPropertyEditor"/> class.
/// </summary>
2018-02-15 14:49:32 +01:00
public MultipleTextStringPropertyEditor(ILogger logger)
: base(logger)
{ }
2018-02-15 14:49:32 +01:00
/// <inheritdoc />
protected override IDataValueEditor CreateValueEditor() => new MultipleTextStringPropertyValueEditor(Attribute);
2013-10-27 15:22:04 +01:00
2018-02-15 14:49:32 +01:00
/// <inheritdoc />
protected override IConfigurationEditor CreateConfigurationEditor() => new MultipleTextStringConfigurationEditor();
2013-10-27 15:22:04 +01:00
/// <summary>
/// Custom value editor so we can format the value for the editor and the database
/// </summary>
2018-02-15 14:49:32 +01:00
internal class MultipleTextStringPropertyValueEditor : DataValueEditor
2013-10-27 15:22:04 +01:00
{
2018-02-15 14:49:32 +01:00
public MultipleTextStringPropertyValueEditor(DataEditorAttribute attribute)
2018-01-24 13:37:14 +01:00
: base(attribute)
{ }
2017-07-20 11:21:28 +02:00
2013-10-27 15:22:04 +01:00
/// <summary>
/// The value passed in from the editor will be an array of simple objects so we'll need to parse them to get the string
/// </summary>
/// <param name="editorValue"></param>
/// <param name="currentValue"></param>
/// <returns></returns>
/// <remarks>
/// We will also check the pre-values here, if there are more items than what is allowed we'll just trim the end
/// </remarks>
2018-03-16 09:06:44 +01:00
public override object FromEditor(ContentPropertyData editorValue, object currentValue)
2013-10-27 15:22:04 +01:00
{
var asArray = editorValue.Value as JArray;
if (asArray == null)
{
return null;
}
if (!(editorValue.DataTypeConfiguration is MultipleTextStringConfiguration config))
throw new PanicException($"editorValue.DataTypeConfiguration is {editorValue.DataTypeConfiguration.GetType()} but must be {typeof(MultipleTextStringConfiguration)}");
2018-01-26 17:55:20 +01:00
var max = config.Maximum;
2013-10-27 15:22:04 +01:00
//The legacy property editor saved this data as new line delimited! strange but we have to maintain that.
var array = asArray.OfType<JObject>()
.Where(x => x["value"] != null)
.Select(x => x["value"].Value<string>());
2017-07-20 11:21:28 +02:00
//only allow the max if over 0
if (max > 0)
{
2017-07-20 11:21:28 +02:00
return string.Join(Environment.NewLine, array.Take(max));
}
2017-07-20 11:21:28 +02:00
return string.Join(Environment.NewLine, array);
2013-10-27 15:22:04 +01:00
}
/// <summary>
/// We are actually passing back an array of simple objects instead of an array of strings because in angular a primitive (string) value
/// cannot have 2 way binding, so to get around that each item in the array needs to be an object with a string.
/// </summary>
/// <param name="property"></param>
/// <param name="dataTypeService"></param>
/// <param name="culture"></param>
/// <param name="segment"></param>
2013-10-27 15:22:04 +01:00
/// <returns></returns>
/// <remarks>
/// The legacy property editor saved this data as new line delimited! strange but we have to maintain that.
/// </remarks>
public override object ToEditor(IProperty property, string culture = null, string segment = null)
2013-10-27 15:22:04 +01:00
{
2018-04-21 09:57:28 +02:00
var val = property.GetValue(culture, segment);
return val?.ToString().Split(new[] {Environment.NewLine}, StringSplitOptions.RemoveEmptyEntries)
.Select(x => JObject.FromObject(new {value = x})) ?? new JObject[] { };
2013-10-27 15:22:04 +01:00
}
/// <summary>
/// A custom FormatValidator is used as for multiple text strings, each string should individually be checked
/// against the configured regular expression, rather than the JSON representing all the strings as a whole.
/// </summary>
public override IValueFormatValidator FormatValidator => new MultipleTextStringFormatValidator();
}
internal class MultipleTextStringFormatValidator : IValueFormatValidator
{
public IEnumerable<ValidationResult> ValidateFormat(object value, string valueType, string format)
{
var asArray = value as JArray;
if (asArray == null)
{
return Enumerable.Empty<ValidationResult>();
}
var textStrings = asArray.OfType<JObject>()
.Where(x => x["value"] != null)
.Select(x => x["value"].Value<string>());
var textStringValidator = new RegexValidator();
foreach (var textString in textStrings)
{
var validationResults = textStringValidator.ValidateFormat(textString, valueType, format).ToList();
if (validationResults.Any())
{
return validationResults;
}
}
return Enumerable.Empty<ValidationResult>();
}
2013-10-27 15:22:04 +01:00
}
}
}