mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-04-05 21:01:35 +08:00
* Revert "#8640: Fixing consistency between different Enumeration Field flavors' data storage (#8789)"
This reverts commit fdbb06ba8d
.
* Re-adding change to fix that changing the ListMode of an EnumerationField from a multi-select to a single-select flavor shouldn't break the editor
* Code styling in Fields/Enumeration.Edit.cshtml
This commit is contained in:
parent
32c5f1e821
commit
5c3d045aa1
@ -4,41 +4,46 @@ using Orchard.ContentManagement.Handlers;
|
|||||||
using Orchard.Fields.Fields;
|
using Orchard.Fields.Fields;
|
||||||
using Orchard.Fields.Settings;
|
using Orchard.Fields.Settings;
|
||||||
using Orchard.Localization;
|
using Orchard.Localization;
|
||||||
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
|
||||||
namespace Orchard.Fields.Drivers {
|
namespace Orchard.Fields.Drivers {
|
||||||
public class EnumerationFieldDriver : ContentFieldDriver<EnumerationField> {
|
public class EnumerationFieldDriver : ContentFieldDriver<EnumerationField> {
|
||||||
public IOrchardServices Services { get; set; }
|
public IOrchardServices Services { get; set; }
|
||||||
|
|
||||||
private const string TemplateName = "Fields/Enumeration.Edit";
|
private const string TemplateName = "Fields/Enumeration.Edit";
|
||||||
|
|
||||||
public EnumerationFieldDriver(IOrchardServices services) {
|
public EnumerationFieldDriver(IOrchardServices services) {
|
||||||
Services = services;
|
Services = services;
|
||||||
|
|
||||||
T = NullLocalizer.Instance;
|
T = NullLocalizer.Instance;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Localizer T { get; set; }
|
public Localizer T { get; set; }
|
||||||
|
|
||||||
private static string GetPrefix(ContentField field, ContentPart part) =>
|
private static string GetPrefix(ContentField field, ContentPart part) {
|
||||||
part.PartDefinition.Name + "." + field.Name;
|
return part.PartDefinition.Name + "." + field.Name;
|
||||||
|
}
|
||||||
|
|
||||||
private static string GetDifferentiator(EnumerationField field) => field.Name;
|
private static string GetDifferentiator(EnumerationField field, ContentPart part) {
|
||||||
|
return field.Name;
|
||||||
|
}
|
||||||
|
|
||||||
protected override DriverResult Display(ContentPart part, EnumerationField field, string displayType, dynamic shapeHelper) {
|
protected override DriverResult Display(ContentPart part, EnumerationField field, string displayType, dynamic shapeHelper) {
|
||||||
return ContentShape("Fields_Enumeration", GetDifferentiator(field), () => shapeHelper.Fields_Enumeration());
|
return ContentShape("Fields_Enumeration", GetDifferentiator(field, part),
|
||||||
|
() => shapeHelper.Fields_Enumeration());
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override DriverResult Editor(ContentPart part, EnumerationField field, dynamic shapeHelper) {
|
protected override DriverResult Editor(ContentPart part, EnumerationField field, dynamic shapeHelper) {
|
||||||
return ContentShape("Fields_Enumeration_Edit", GetDifferentiator(field), () => {
|
return ContentShape("Fields_Enumeration_Edit", GetDifferentiator(field, part),
|
||||||
if (part.IsNew() && string.IsNullOrEmpty(field.Value)) {
|
() => {
|
||||||
var settings = field.PartFieldDefinition.Settings.GetModel<EnumerationFieldSettings>();
|
if (part.IsNew() && String.IsNullOrEmpty(field.Value)) {
|
||||||
if (!string.IsNullOrWhiteSpace(settings.DefaultValue)) {
|
var settings = field.PartFieldDefinition.Settings.GetModel<EnumerationFieldSettings>();
|
||||||
field.SelectedValues = new string[] { settings.DefaultValue };
|
if (!String.IsNullOrWhiteSpace(settings.DefaultValue)) {
|
||||||
|
field.Value = settings.DefaultValue;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
return shapeHelper.EditorTemplate(TemplateName: TemplateName, Model: field, Prefix: GetPrefix(field, part));
|
||||||
|
});
|
||||||
return shapeHelper.EditorTemplate(TemplateName: TemplateName, Model: field, Prefix: GetPrefix(field, part));
|
|
||||||
});
|
|
||||||
}
|
}
|
||||||
|
|
||||||
protected override DriverResult Editor(ContentPart part, EnumerationField field, IUpdateModel updater, dynamic shapeHelper) {
|
protected override DriverResult Editor(ContentPart part, EnumerationField field, IUpdateModel updater, dynamic shapeHelper) {
|
||||||
|
@ -7,16 +7,28 @@ namespace Orchard.Fields.Fields {
|
|||||||
private const char Separator = ';';
|
private const char Separator = ';';
|
||||||
|
|
||||||
public string Value {
|
public string Value {
|
||||||
get => Storage.Get<string>()?.Trim(Separator) ?? "";
|
get { return Storage.Get<string>(); }
|
||||||
set => Storage.Set(string.IsNullOrWhiteSpace(value)
|
set { Storage.Set(value ?? String.Empty); }
|
||||||
? string.Empty
|
|
||||||
// It is now the responsibility of this field to (re-)add the separators.
|
|
||||||
: Separator + value.Trim(Separator) + Separator);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public string[] SelectedValues {
|
public string[] SelectedValues {
|
||||||
get => Value?.Split(new[] { Separator }, StringSplitOptions.RemoveEmptyEntries) ?? new string[0];
|
get {
|
||||||
set => Value = value?.Length > 0 ? string.Join(Separator.ToString(), value) : "";
|
var value = Value;
|
||||||
|
if(string.IsNullOrWhiteSpace(value)) {
|
||||||
|
return new string[0];
|
||||||
|
}
|
||||||
|
|
||||||
|
return value.Split(new [] { Separator }, StringSplitOptions.RemoveEmptyEntries);
|
||||||
|
}
|
||||||
|
|
||||||
|
set {
|
||||||
|
if (value == null || value.Length == 0) {
|
||||||
|
Value = String.Empty;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
Value = Separator + string.Join(Separator.ToString(), value) + Separator;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -169,10 +169,6 @@
|
|||||||
<Compile Include="ViewModels\NumericFieldViewModel.cs" />
|
<Compile Include="ViewModels\NumericFieldViewModel.cs" />
|
||||||
<Compile Include="ViewModels\DateTimeFieldViewModel.cs" />
|
<Compile Include="ViewModels\DateTimeFieldViewModel.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
|
||||||
<Folder Include="Controllers\" />
|
|
||||||
<Folder Include="Models\" />
|
|
||||||
</ItemGroup>
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Content Include="Views\Fields\Input.cshtml" />
|
<Content Include="Views\Fields\Input.cshtml" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
@ -223,4 +219,4 @@
|
|||||||
</FlavorProperties>
|
</FlavorProperties>
|
||||||
</VisualStudio>
|
</VisualStudio>
|
||||||
</ProjectExtensions>
|
</ProjectExtensions>
|
||||||
</Project>
|
</Project>
|
@ -4,30 +4,48 @@
|
|||||||
|
|
||||||
@{
|
@{
|
||||||
var settings = Model.PartFieldDefinition.Settings.GetModel<EnumerationFieldSettings>();
|
var settings = Model.PartFieldDefinition.Settings.GetModel<EnumerationFieldSettings>();
|
||||||
string[] options = (!String.IsNullOrWhiteSpace(settings.Options)) ? settings.Options.Split(new string[] { System.Environment.NewLine }, StringSplitOptions.None) : new string[] { T("Select an option").ToString() };
|
string[] options = (!String.IsNullOrWhiteSpace(settings.Options)) ?
|
||||||
|
settings.Options.Split(new string[] { System.Environment.NewLine }, StringSplitOptions.None)
|
||||||
|
: new string[] { T("Select an option").ToString() };
|
||||||
}
|
}
|
||||||
|
|
||||||
<fieldset>
|
<fieldset>
|
||||||
<label for="@Html.FieldIdFor(m => m.Value)" @if (settings.Required) { <text> class="required" </text> }>@Model.DisplayName</label>
|
<label for="@Html.FieldIdFor(m => m.Value)" @if (settings.Required) { <text> class="required" </text> }>@Model.DisplayName</label>
|
||||||
@switch (settings.ListMode) {
|
@switch (settings.ListMode) {
|
||||||
case ListMode.Dropdown:
|
case ListMode.Dropdown:
|
||||||
@Html.DropDownListFor(m => m.Value, new SelectList(options, Model.SelectedValues.FirstOrDefault()), settings.Required ? new { required = "required" } : null)
|
@Html.DropDownListFor(
|
||||||
|
m => m.Value,
|
||||||
|
new SelectList(options, Model.SelectedValues.FirstOrDefault()),
|
||||||
|
settings.Required ? new { required = "required" } : null)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ListMode.Radiobutton:
|
case ListMode.Radiobutton:
|
||||||
foreach (var option in options) {
|
foreach (var option in options) {
|
||||||
if (string.IsNullOrWhiteSpace(option)) {
|
if (string.IsNullOrWhiteSpace(option)) {
|
||||||
<label>@Html.RadioButton("Value", "", string.IsNullOrWhiteSpace(Model.SelectedValues.FirstOrDefault()), settings.Required ? new { required = "required" } : null)<i>@T("unset")</i></label>
|
<label>@Html.RadioButton(
|
||||||
|
"Value",
|
||||||
|
"",
|
||||||
|
string.IsNullOrWhiteSpace(Model.SelectedValues.FirstOrDefault()),
|
||||||
|
settings.Required ? new { required = "required" } : null)<i>@T("unset")</i>
|
||||||
|
</label>
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
<label>@Html.RadioButton("Value", option, (option == Model.SelectedValues.FirstOrDefault()), settings.Required ? new { required = "required" } : null)@option</label>
|
<label>@Html.RadioButton(
|
||||||
|
"Value",
|
||||||
|
option,
|
||||||
|
option == Model.SelectedValues.FirstOrDefault(),
|
||||||
|
settings.Required ? new { required = "required" } : null)@option
|
||||||
|
</label>
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ListMode.Listbox:
|
case ListMode.Listbox:
|
||||||
<input name="@Html.FieldNameFor(m => m.SelectedValues)" type="hidden" />
|
<input name="@Html.FieldNameFor(m => m.SelectedValues)" type="hidden" />
|
||||||
@Html.ListBoxFor(m => m.SelectedValues, new MultiSelectList(options, Model.SelectedValues), settings.Required ? new { required = "required" } : null)
|
@Html.ListBoxFor(
|
||||||
|
m => m.SelectedValues,
|
||||||
|
new MultiSelectList(options, Model.SelectedValues),
|
||||||
|
settings.Required ? new { required = "required" } : null)
|
||||||
break;
|
break;
|
||||||
|
|
||||||
case ListMode.Checkbox:
|
case ListMode.Checkbox:
|
||||||
@ -37,7 +55,9 @@
|
|||||||
index++;
|
index++;
|
||||||
if (!string.IsNullOrWhiteSpace(option)) {
|
if (!string.IsNullOrWhiteSpace(option)) {
|
||||||
<div>
|
<div>
|
||||||
<input type="checkbox" name="@Html.FieldNameFor(m => m.SelectedValues)" value="@option" @((Model.SelectedValues != null && Model.SelectedValues.Contains(option)) ? "checked=\"checked\"" : "") class="check-box" id="@Html.FieldIdFor(m => m.SelectedValues)-@index" />
|
<input type="checkbox" name="@Html.FieldNameFor(m => m.SelectedValues)" value="@option"
|
||||||
|
@((Model.SelectedValues != null && Model.SelectedValues.Contains(option)) ? "checked=\"checked\"" : "")
|
||||||
|
class="check-box" id="@Html.FieldIdFor(m => m.SelectedValues)-@index" />
|
||||||
<label class="forcheckbox" for="@Html.FieldIdFor(m => m.SelectedValues)-@index">@option</label>
|
<label class="forcheckbox" for="@Html.FieldIdFor(m => m.SelectedValues)-@index">@option</label>
|
||||||
</div>
|
</div>
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user