mirror of https://github.com/Squidex/squidex.git
22 changed files with 366 additions and 362 deletions
@ -0,0 +1,24 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using Squidex.Domain.Apps.Core.Schemas; |
|||
|
|||
namespace Squidex.Domain.Apps.Entities.Schemas.Commands |
|||
{ |
|||
public abstract class CreateSchemaFieldBase |
|||
{ |
|||
public string Name { get; set; } |
|||
|
|||
public bool IsLocked { get; set; } |
|||
|
|||
public bool IsHidden { get; set; } |
|||
|
|||
public bool IsDisabled { get; set; } |
|||
|
|||
public FieldProperties Properties { get; set; } |
|||
} |
|||
} |
|||
@ -0,0 +1,47 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using Squidex.Domain.Apps.Core.Schemas; |
|||
using Squidex.Infrastructure; |
|||
|
|||
namespace Squidex.Domain.Apps.Entities.Schemas.Guards |
|||
{ |
|||
public static class GuardHelper |
|||
{ |
|||
public static IArrayField GetArrayFieldOrThrow(Schema schema, long parentId) |
|||
{ |
|||
if (!schema.FieldsById.TryGetValue(parentId, out var rootField) || !(rootField is IArrayField arrayField)) |
|||
{ |
|||
throw new DomainObjectNotFoundException(parentId.ToString(), "Fields", typeof(Schema)); |
|||
} |
|||
|
|||
return arrayField; |
|||
} |
|||
|
|||
public static IField GetFieldOrThrow(Schema schema, long fieldId, long? parentId) |
|||
{ |
|||
if (parentId.HasValue) |
|||
{ |
|||
var arrayField = GetArrayFieldOrThrow(schema, parentId.Value); |
|||
|
|||
if (!arrayField.FieldsById.TryGetValue(fieldId, out var nestedField)) |
|||
{ |
|||
throw new DomainObjectNotFoundException(fieldId.ToString(), $"Fields[{parentId}].Fields", typeof(Schema)); |
|||
} |
|||
|
|||
return nestedField; |
|||
} |
|||
|
|||
if (!schema.FieldsById.TryGetValue(fieldId, out var field)) |
|||
{ |
|||
throw new DomainObjectNotFoundException(fieldId.ToString(), "Fields", typeof(Schema)); |
|||
} |
|||
|
|||
return field; |
|||
} |
|||
} |
|||
} |
|||
@ -0,0 +1,24 @@ |
|||
// ==========================================================================
|
|||
// Squidex Headless CMS
|
|||
// ==========================================================================
|
|||
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|||
// All rights reserved. Licensed under the MIT license.
|
|||
// ==========================================================================
|
|||
|
|||
using Squidex.Domain.Apps.Core.Schemas; |
|||
|
|||
namespace Squidex.Domain.Apps.Events.Schemas |
|||
{ |
|||
public abstract class SchemaCreatedFieldBase |
|||
{ |
|||
public string Name { get; set; } |
|||
|
|||
public bool IsHidden { get; set; } |
|||
|
|||
public bool IsLocked { get; set; } |
|||
|
|||
public bool IsDisabled { get; set; } |
|||
|
|||
public FieldProperties Properties { get; set; } |
|||
} |
|||
} |
|||
Loading…
Reference in new issue