mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
69 lines
1.7 KiB
69 lines
1.7 KiB
// ==========================================================================
|
|
// Squidex Headless CMS
|
|
// ==========================================================================
|
|
// Copyright (c) Squidex UG (haftungsbeschraenkt)
|
|
// All rights reserved. Licensed under the MIT license.
|
|
// ==========================================================================
|
|
|
|
using System.Collections.Generic;
|
|
|
|
namespace Squidex.Domain.Apps.Core
|
|
{
|
|
public sealed class InvariantPartitioning : IFieldPartitioning
|
|
{
|
|
public static readonly InvariantPartitioning Instance = new InvariantPartitioning();
|
|
public static readonly string Key = "iv";
|
|
public static readonly string Name = "Invariant";
|
|
public static readonly string Description = "invariant value";
|
|
|
|
public string Master
|
|
{
|
|
get => Key;
|
|
}
|
|
|
|
public IEnumerable<string> AllKeys
|
|
{
|
|
get { yield return Key; }
|
|
}
|
|
|
|
public string? GetName(string key)
|
|
{
|
|
if (Contains(key))
|
|
{
|
|
return Name;
|
|
}
|
|
|
|
return null;
|
|
}
|
|
|
|
public IEnumerable<string> GetPriorities(string key)
|
|
{
|
|
if (Contains(key))
|
|
{
|
|
yield return Key;
|
|
}
|
|
|
|
yield break;
|
|
}
|
|
|
|
public bool Contains(string key)
|
|
{
|
|
return Equals(Key, key);
|
|
}
|
|
|
|
public bool IsMaster(string key)
|
|
{
|
|
return Contains(key);
|
|
}
|
|
|
|
public bool IsOptional(string key)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Description;
|
|
}
|
|
}
|
|
}
|
|
|