Table of Contents

Class ObjectSelectorBase<TProperties, TClientProperties, TFormComponentValue, TSingleItemValue>

Namespace
Kentico.Xperience.Admin.Base.Forms
Assembly
Kentico.Xperience.Admin.Base.dll

Base class for object selector form component.

public abstract class ObjectSelectorBase<TProperties, TClientProperties, TFormComponentValue, TSingleItemValue> : FormComponent<TProperties, TClientProperties, TFormComponentValue>, IFormComponent, IFormItem<IFormComponentClientProperties>, IFormItem where TProperties : ObjectSelectorPropertiesBase, new() where TClientProperties : ObjectSelectorClientPropertiesBase<TFormComponentValue, TSingleItemValue>, new()

Type Parameters

TProperties
TClientProperties
TFormComponentValue
TSingleItemValue
Inheritance
object
FormComponent<TProperties, TClientProperties, TFormComponentValue>
ObjectSelectorBase<TProperties, TClientProperties, TFormComponentValue, TSingleItemValue>
Implements
Derived
Inherited Members
Extension Methods

Constructors

ObjectSelectorBase(IObjectsRetriever, IObjectSelectorWhereConditionProviderActivator, ILocalizationService)

Constructor.

protected ObjectSelectorBase(IObjectsRetriever objectsRetriever, IObjectSelectorWhereConditionProviderActivator whereConditionProviderActivator, ILocalizationService localizationService)

Parameters

objectsRetriever IObjectsRetriever

Objects retriever.

whereConditionProviderActivator IObjectSelectorWhereConditionProviderActivator

WHERE condition provider activator.

localizationService ILocalizationService

Localization service.

Exceptions

ArgumentNullException

If objectsRetriever, whereConditionProviderActivator or localizationService is null.

Methods

ConfigureClientProperties(TClientProperties)

Configures the form component client properties.

protected override Task ConfigureClientProperties(TClientProperties clientProperties)

Parameters

clientProperties TClientProperties

The current instance of the form component client properties.

Returns

Task

Remarks

Override this method in order to configure form component client properties.

ConvertFormComponentSingleItemValue(IEnumerable<TSingleItemValue>)

Extracts an array of selected object identifiers from a collection containing items of a the TSingleItemValue type.

protected abstract IEnumerable<string> ConvertFormComponentSingleItemValue(IEnumerable<TSingleItemValue> value)

Parameters

value IEnumerable<TSingleItemValue>

Component value.

Returns

IEnumerable<string>

ConvertFormComponentValue(TFormComponentValue)

Extracts an array of selected object identifiers from component value for the sake of providing selected objects meta data to the client component.

protected abstract IEnumerable<string> ConvertFormComponentValue(TFormComponentValue value)

Parameters

value TFormComponentValue

Component value.

Returns

IEnumerable<string>

ExtractValue(IDataContainer, ObjectTypeInfo)

Enables IObjectsRetriever to create an element from a source data.

protected abstract TSingleItemValue ExtractValue(IDataContainer dataContainer, ObjectTypeInfo typeInfo)

Parameters

dataContainer IDataContainer

Source data.

typeInfo ObjectTypeInfo

Type info.

Returns

TSingleItemValue

GetSelectedObjects()

Returns an items list of the form component selected value.

protected Task<IEnumerable<ObjectSelectorListItem<TSingleItemValue>>> GetSelectedObjects()

Returns

Task<IEnumerable<ObjectSelectorListItem<TSingleItemValue>>>

GetValidValueCollection()

Return a collection of selected items that are valid only.

protected Task<IEnumerable<TSingleItemValue>> GetValidValueCollection()

Returns

Task<IEnumerable<TSingleItemValue>>

LoadObjects(LoadObjectsCommandArgs, CancellationToken)

Loads items into a selection list.

public Task<ICommandResponse<LoadObjectsCommandResult<TSingleItemValue>>> LoadObjects(LoadObjectsCommandArgs args, CancellationToken cancellationToken)

Parameters

args LoadObjectsCommandArgs

Command arguments.

cancellationToken CancellationToken

Cancellation token.

Returns

Task<ICommandResponse<LoadObjectsCommandResult<TSingleItemValue>>>

LoadSelectedObjects(LoadSelectedObjectsCommandArgs<TSingleItemValue>, CancellationToken)

Loads selected items data.

public Task<ICommandResponse<LoadSelectedObjectsCommandResult<TSingleItemValue>>> LoadSelectedObjects(LoadSelectedObjectsCommandArgs<TSingleItemValue> args, CancellationToken cancellationToken)

Parameters

args LoadSelectedObjectsCommandArgs<TSingleItemValue>

Command arguments.

cancellationToken CancellationToken

Cancellation token.

Returns

Task<ICommandResponse<LoadSelectedObjectsCommandResult<TSingleItemValue>>>