HubChannel

Class

Implements

Constructors

Constructor Parameters

Parameter Type Default Notes
entity Required IHubChannel
context Required IArcGISContext

Properties

Property Type Notes
context Protected IArcGISContext
entity Protected IHubChannel
isDestroyed Protected false

Accessors

Accessor Type Notes
canDelete boolean

Can the current user delete the channel?

canEdit boolean

Can the current user edit the channel?

orgId string

The orgId of the channel

Methods

Method Returns Notes
Promise<HubChannel>

Create a new HubChannel, returning a HubChannel instance. Note: This does not persist the Channel into the backing store

Promise<HubChannel>

Fetch a Channel from the backing store and return a HubChannel instance.

HubChannel

Create an instance from an IHubChannel object

IHubCardViewModel

TODO

Promise<void>

Delete the HubChannel from the store set a flag to indicate that it is destroyed

Promise<IHubChannel>

Load the channel from the editor object

Promise<IEditorConfig>

Get a specifc editor config for the HubChannel entity.

Promise<void>

Save the HubChannel to the backing store.

Promise<IHubChannelEditor>

Return the channel as an editor object

IHubChannel

Return the backing entity as an object literal

void

Apply a new state to the instance

create

Static Static Class Method

Create a new HubChannel, returning a HubChannel instance. Note: This does not persist the Channel into the backing store

Parameters

Parameter Type Default Notes
partialChannel Required Partial<IHubChannel>

A partial IHubChannel object

context Required IArcGISContext

ArcGIS Context

save Optional boolean false

Returns

a HubChannel instance

Promise<HubChannel>

fetch

Static Static Class Method

Fetch a Channel from the backing store and return a HubChannel instance.

Parameters

Parameter Type Default Notes
identifier Required string

Identifier of the channel to load

context Required IArcGISContext

An IArcGISContext object

Returns

a HubChannel instance

Promise<HubChannel>

fromJson

Static Static Class Method

Create an instance from an IHubChannel object

Parameters

Parameter Type Default Notes
json Required Partial<IHubChannel>

JSON object to create a HubChannel from

context Required IArcGISContext

ArcGIS context

Returns

a HubChannel instance

convertToCardModel

Class Method

TODO

Parameters

Parameter Type Default Notes
opts Optional IConvertToCardModelOpts

Returns

delete

Class Method

Delete the HubChannel from the store set a flag to indicate that it is destroyed

  • delete() : Promise<void>

Returns

a promise

Promise<void>

fromEditor

Class Method

Load the channel from the editor object

Parameters

Parameter Type Default Notes
editor Required IHubChannelEditor

An IHubChannelEditor object

Returns

a promise that resolves an IHubChannel

Promise<IHubChannel>

getEditorConfig

Class Method

Get a specifc editor config for the HubChannel entity.

  • getEditorConfig(i18nScope: string, type: ChannelEditorType) : Promise<IEditorConfig>

Parameters

Parameter Type Default Notes
i18nScope Required string

A string representing the i18n scope for translated strings

type Required ChannelEditorType

One of the supported ChannelEditorType strings

Returns

a promise that resolves a IEditorConfig object

Promise<IEditorConfig>

save

Class Method

Save the HubChannel to the backing store.

  • save() : Promise<void>

Returns

a promise

Promise<void>

toEditor

Class Method

Return the channel as an editor object

Parameters

Parameter Type Default Notes
editorContext Required IEntityEditorContext

An IEntityEditorContext object

include Optional string[]

An optional array of includes

Returns

a promise that resolves an IHubChannelEditor object

toJson

Class Method

Return the backing entity as an object literal

Returns

an IHubChannel

update

Class Method

Apply a new state to the instance

Parameters

Parameter Type Default Notes
changes Required Partial<IHubChannel>

A partial IHubChannel object

Returns

void

Class defined in common/src/channels/HubChannel.ts:15