@acoustic-content-sdk/ng-edit-api 中文文档教程
编辑模式下 Angular SDK 的 API 和常量集合。
Table of Contents
General Concepts
此模块为所有相关服务定义依赖注入令牌。 应用程序通常会选择适当的 ngModule 来提供令牌的实现。 令牌通常由 SDK 的指令或组件使用,但它们也可以直接由自定义组件或服务使用。
@acoustic-content-sdk/ng-edit-api
ng-edit-api package
Collection of APIs and constants for the Angular SDK in edit mode
Functions
Function | Description |
---|---|
selectDebugPlaceholder(aConfig) | |
selectDefaultPlaceholder(aConfig) | |
selectInlineEditURL(aConfig) | |
selectPlaceholderTag(aConfig) | |
selectThrottleLoading(aConfig) |
Interfaces
Interface | Description |
---|---|
EditHubInfoService | |
WchEditableDirectiveInput | Input to the editable directive service |
WchEditableDirectiveOutput | Input of the editable directive service |
WchEditablePlaceholderDirectiveInput | Input to the editable directive service |
WchEditablePlaceholderDirectiveOutput | Input of the editable directive service |
WchPlaceholder | |
WchPlaceholderProvider | |
WchSelectableDirectiveInput | Input to the editable directive service |
WchSelectableDirectiveOutput | Output of the editable directive service |
WchSelectableDirectiveService | Service that returns an instance of the selectable directive |
Variables
Variable | Description |
---|---|
ACOUSTIC_TOKEN_ACOUSTIC_CONFIG | Injection token for the wch config |
ACOUSTIC_TOKEN_DEBUG_PLACEHOLDERS | Injection token for placeholder debugging |
ACOUSTIC_TOKEN_DEFAULT_PLACEHOLDER_TEXT | Injection token for default placeholder text |
ACOUSTIC_TOKEN_EDIT_HOST_WINDOW | Injects the window that acts as the edit host for an application. This is typically the parent window or the opener window. |
ACOUSTIC_TOKEN_INLINE_EDIT_PROVIDER | Injection token for the inline edit provider |
ACOUSTIC_TOKEN_INLINE_EDIT_SELECTED_CELL_CONSUMER | Consumer for inline edit selections |
ACOUSTIC_TOKEN_INLINE_EDIT_SELECTION_PROVIDER | Provides information about the inline edit selection |
ACOUSTIC_TOKEN_INLINE_EDIT_SERVICE | Token used to inject the WchInlineEditServiceV2 service. |
ACOUSTIC_TOKEN_INLINE_EDIT_URL | Injection token for the inline edit URL |
ACOUSTIC_TOKEN_PLACEHOLDER_PROVIDER | |
DEFAULT_DEBUG_PLACEHOLDERS | per default do not debug |
DEFAULT_INLINE_EDIT_URL | default value for the inline edit URL |
VERSION | Version and build number of the package |
Type Aliases
Type Alias | Description |
---|---|
WchDefaultPlaceholder | type for placeholder |
WchEditableFormat | Potential values for the 'wchFormat' field |
<一个名字="_0c76f06bf2a78c877fad9f54a2be9ba28d9e24e1ef47af34724cb55307d9fa2f">
@acoustic-content-sdk/ng-edit-api > selectDebugPlaceholder
selectDebugPlaceholder() function
Signature:
export declare function selectDebugPlaceholder(aConfig?: EditHubInfoService): boolean;
Parameters
Parameter | Type | Description |
---|---|---|
aConfig | EditHubInfoService |
Returns:
boolean
主页 > @acoustic-content-sdk/ng-edit-api > selectDefaultPlaceholder
selectDefaultPlaceholder() function
Signature:
export declare function selectDefaultPlaceholder(aConfig?: EditHubInfoService): WchDefaultPlaceholder;
Parameters
Parameter | Type | Description |
---|---|---|
aConfig | EditHubInfoService |
Returns:
WchDefaultPlaceholder
主页 > @acoustic-content-sdk/ng-edit-api > selectInlineEditURL
selectInlineEditURL() function
Signature:
export declare function selectInlineEditURL(aConfig?: EditHubInfoService): HubInfoUrlProvider;
Parameters
Parameter | Type | Description |
---|---|---|
aConfig | EditHubInfoService |
Returns:
HubInfoUrlProvider
主页 > @acoustic-content-sdk/ng-edit-api > selectPlaceholderTag
selectPlaceholderTag() function
Signature:
export declare function selectPlaceholderTag(aConfig?: EditHubInfoService): string;
Parameters
Parameter | Type | Description |
---|---|---|
aConfig | EditHubInfoService |
Returns:
string
主页 > @acoustic-content-sdk/ng-edit-api > selectThrottleLoading
selectThrottleLoading() function
Signature:
export declare function selectThrottleLoading(aConfig?: EditHubInfoService): number;
Parameters
Parameter | Type | Description |
---|---|---|
aConfig | EditHubInfoService |
Returns:
number
主页 > @acoustic-content-sdk/ng-edit-api > EditHubInfoService
EditHubInfoService interface
Signature:
export interface EditHubInfoService
Properties
Property | Type | Description |
---|---|---|
debugPlaceholders | boolean |
Enable or disable placeholders even if inline edit mode has not been enabled |
defaultPlaceholderText | WchDefaultPlaceholder |
Provide a default placeholder text |
inlineEditUrl | HubInfoUrlProvider |
|
placeholderTag | string |
Tag used to find placeholder content items. If left undefined, placeholders will not be inserted, automatically |
throttleLoading | number |
Throttle loading of lib |
Home > ; @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveInput
WchEditableDirectiveInput interface
Input to the editable directive service
Signature:
export interface WchEditableDirectiveInput
Properties
Property | Type | Description |
---|---|---|
wchEditable$ | Observable<AccessorType> |
Main input value for the directive. It denotes the element that is being edited. |
首页 > @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveOutput
WchEditableDirectiveOutput interface
Input of the editable directive service
Signature:
export interface WchEditableDirectiveOutput
Properties
Property | Type | Description |
---|---|---|
accessor$ | Observable<string> |
The accessor expression |
data$ | Observable<any> |
Generates the accessed data, decoded from the accessor expression |
placeholder$ | Observable<AuthoringPlaceholder> |
Event exposing the current placeholder. If no placeholder exists or placeholders are disabled, this will return undefined . |
placeholderText$ | Observable<LocalizedText> |
Event exposing the current placeholder text. If placeholders are disabled, this will return. If no placeholder has been defined this returns the default placeholder as specified by the application |
showPlaceholder$ | Observable<boolean> |
Checks if we should show or hide placeholders |
typeId$ | Observable<string> |
Generates the type of the current element |
wchEditable$ | Observable<WchEditableEvent> |
Event that tells about the inline edit process |
首页 > @acoustic-content-sdk/ng-edit-api > WchEditablePlaceholderDirectiveInput
WchEditablePlaceholderDirectiveInput interface
Input to the editable directive service
Signature:
export interface WchEditablePlaceholderDirectiveInput extends WchEditableDirectiveInput
Properties
Property | Type | Description |
---|---|---|
wchFormat$ | Observable<WchEditableFormat> |
If specified, the directive will update the textual content of the attached node with either the value of the edited property or with the configured placeholder, if there is any. The format flag describes if the value is considered to be plain text ('text'), formatted text ('html') or if the type is to be discovered automatically.If missing, the property has to be updated by the designer of the template, explicitly. |
首页 > @acoustic-content-sdk/ng-edit-api > WchEditablePlaceholderDirectiveOutput
WchEditablePlaceholderDirectiveOutput interface
Input of the editable directive service
Signature:
export interface WchEditablePlaceholderDirectiveOutput extends WchEditableDirectiveOutput, WchPlaceholder
Properties
Property | Type | Description |
---|---|---|
formattedText$ | Observable<LocalizedText> |
Generates the formatted text of an element, potentially replaced by the placeholder |
plainText$ | Observable<LocalizedText> |
Generates the text of an element, potentially replaced by the placeholder |
首页 > @acoustic-content-sdk/ng-edit-api > WchPlaceholder
WchPlaceholder interface
Signature:
export interface WchPlaceholder
Properties
Property | Type | Description |
---|---|---|
accessor$ | Observable<string> |
The accessor expression |
data$ | Observable<any> |
Generates the accessed data, decoded from the accessor expression |
formattedText$ | Observable<LocalizedText> |
Generates the formatted text of an element, potentially replaced by the placeholder |
placeholder$ | Observable<AuthoringPlaceholder> |
Event exposing the current placeholder. If no placeholder exists or placeholders are disabled, this will return 'undefined'. |
placeholderText$ | Observable<LocalizedText> |
Event exposing the current placeholder text. If placeholders are disabled, this will return 'undefined'. If no placeholder has been defined this returns the default placeholder as specified by the application, else 'undefined'. |
plainText$ | Observable<LocalizedText> |
Generates the text of an element, potentially replaced by the placeholder |
showPlaceholder$ | Observable<boolean> |
Checks if we should show or hide placeholders |
typeId$ | Observable<string> |
Decodes the type of the currently accessed element |
Home > ; @acoustic-content-sdk/ng-edit-api > WchPlaceholderProvider
WchPlaceholderProvider interface
Signature:
export interface WchPlaceholderProvider
Properties
Property | Type | Description |
---|---|---|
getPlaceholder | (aAccessor: AccessorType, aProvider: RenderingContextProviderV2) => WchPlaceholder |
Home > ; @acoustic-content-sdk/ng-edit-api > WchSelectableDirectiveInput
WchSelectableDirectiveInput interface
Input to the editable directive service
Signature:
export interface WchSelectableDirectiveInput
Properties
Property | Type | Description |
---|---|---|
wchSelectable$ | Observable<AccessorType> |
Main input value for the directive. It denotes the element that can be selected. |
首页 > @acoustic-content-sdk/ng-edit-api > WchSelectableDirectiveOutput
WchSelectableDirectiveOutput interface
Output of the editable directive service
Signature:
export interface WchSelectableDirectiveOutput
首页 > @acoustic-content-sdk/ng-edit-api > WchSelectableDirectiveService
WchSelectableDirectiveService interface
Service that returns an instance of the selectable directive
Signature:
export interface WchSelectableDirectiveService
主页 > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_ACOUSTIC_CONFIG
ACOUSTIC_TOKEN_ACOUSTIC_CONFIG variable
Injection token for the wch config
Signature:
ACOUSTIC_TOKEN_ACOUSTIC_CONFIG: InjectionToken<Observable<WchConfig>>
首页 > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_DEBUG_PLACEHOLDERS
ACOUSTIC_TOKEN_DEBUG_PLACEHOLDERS variable
Injection token for placeholder debugging
Signature:
ACOUSTIC_TOKEN_DEBUG_PLACEHOLDERS: InjectionToken<boolean>
Home > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_DEFAULT_PLACEHOLDER_TEXT
ACOUSTIC_TOKEN_DEFAULT_PLACEHOLDER_TEXT variable
Injection token for default placeholder text
Signature:
ACOUSTIC_TOKEN_DEFAULT_PLACEHOLDER_TEXT: InjectionToken<import("@acoustic-content-sdk/utils").ObservableOrT<string | import("@acoustic-content-sdk/api").LocalizedText>>
首页 > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_EDIT_HOST_WINDOW
ACOUSTIC_TOKEN_EDIT_HOST_WINDOW variable
注入充当应用程序编辑主机的窗口。 这通常是父窗口或开启者窗口。
Signature:
ACOUSTIC_TOKEN_EDIT_HOST_WINDOW: InjectionToken<WindowType>
Home > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_INLINE_EDIT_PROVIDER
ACOUSTIC_TOKEN_INLINE_EDIT_PROVIDER variable
Injection token for the inline edit provider
Signature:
ACOUSTIC_TOKEN_INLINE_EDIT_PROVIDER: InjectionToken<Observable<WchInlineEditProviderV2>>
首页 > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_INLINE_EDIT_SELECTED_CELL_CONSUMER
ACOUSTIC_TOKEN_INLINE_EDIT_SELECTED_CELL_CONSUMER variable
Consumer for inline edit selections
Signature:
ACOUSTIC_TOKEN_INLINE_EDIT_SELECTED_CELL_CONSUMER: InjectionToken<string>
Home > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_INLINE_EDIT_SELECTION_PROVIDER
ACOUSTIC_TOKEN_INLINE_EDIT_SELECTION_PROVIDER variable
Provides information about the inline edit selection
Signature:
ACOUSTIC_TOKEN_INLINE_EDIT_SELECTION_PROVIDER: InjectionToken<InlineEditSelectionProvider>
首页 > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_INLINE_EDIT_SERVICE
ACOUSTIC_TOKEN_INLINE_EDIT_SERVICE variable
用于注入WchInlineEditServiceV2
服务的令牌。
Signature:
ACOUSTIC_TOKEN_INLINE_EDIT_SERVICE: InjectionToken<WchInlineEditServiceV2>
Home > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_INLINE_EDIT_URL
ACOUSTIC_TOKEN_INLINE_EDIT_URL variable
Injection token for the inline edit URL
Signature:
ACOUSTIC_TOKEN_INLINE_EDIT_URL: InjectionToken<StaticHubInfoUrlProvider>
首页 > @acoustic-content-sdk/ng-edit-api > ACOUSTIC_TOKEN_PLACEHOLDER_PROVIDER
ACOUSTIC_TOKEN_PLACEHOLDER_PROVIDER variable
Signature:
ACOUSTIC_TOKEN_PLACEHOLDER_PROVIDER: InjectionToken<WchPlaceholderProvider>
Home > ; @acoustic-content-sdk/ng-edit-api > DEFAULT_DEBUG_PLACEHOLDERS
DEFAULT_DEBUG_PLACEHOLDERS variable
per default do not debug
Signature:
DEFAULT_DEBUG_PLACEHOLDERS = false
Home > @acoustic-content-sdk/ng-edit-api > DEFAULT_INLINE_EDIT_URL
DEFAULT_INLINE_EDIT_URL variable
default value for the inline edit URL
Signature:
DEFAULT_INLINE_EDIT_URL = "${authoringUIBaseUrl.protocol}//${authoringUIBaseUrl.host}/authoring-sites-ui/inline-edit/inline-edit.js"
首页 > @acoustic-content-sdk/ng-edit-api > VERSION
VERSION variable
Version and build number of the package
Signature:
VERSION: {
version: {
major: string;
minor: string;
patch: string;
branch: string;
};
build: Date;
}
首页 > @acoustic-content-sdk/ng-edit-api > WchDefaultPlaceholder
WchDefaultPlaceholder type
type for placeholder
Signature:
export declare type WchDefaultPlaceholder = ObservableOrT<string | LocalizedText>;
Home > @acoustic-content-sdk/ng-edit-api > WchEditableFormat
WchEditableFormat type
Potential values for the 'wchFormat' field
Signature:
export declare type WchEditableFormat = 'text' | 'html' | 'auto';
首页 > @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveInput > wchEditable$
WchEditableDirectiveInput.wchEditable$ property
指令的主要输入值。 它表示正在编辑的元素。
Signature:
wchEditable$: Observable<AccessorType>;
Home > @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveOutput > accessor$
WchEditableDirectiveOutput.accessor$ property
The accessor expression
Signature:
accessor$: Observable<string>;
Home< /a> > @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveOutput > data$
WchEditableDirectiveOutput.data$ property
Generates the accessed data, decoded from the accessor expression
Signature:
data$: Observable<any>;
主页 > @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveOutput > placeholder$
WchEditableDirectiveOutput.placeholder$ property
暴露当前占位符的事件。 如果不存在占位符或占位符被禁用,这将返回 undefined
。
Signature:
placeholder$: Observable<AuthoringPlaceholder>;
Home > @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveOutput > placeholderText$
WchEditableDirectiveOutput.placeholderText$ property
暴露当前占位符文本的事件。 如果占位符被禁用,这将返回。 If no placeholder has been defined this returns the default placeholder as specified by the application
Signature:
placeholderText$: Observable<LocalizedText>;
Home > @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveOutput > showPlaceholder$
WchEditableDirectiveOutput.showPlaceholder$ property
Checks if we should show or hide placeholders
Signature:
showPlaceholder$: Observable<boolean>;
主页 > @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveOutput > typeId$
WchEditableDirectiveOutput.typeId$ property
Generates the type of the current element
Signature:
typeId$: Observable<string>;
首页 > @acoustic-content-sdk/ng-edit-api > WchEditableDirectiveOutput > wchEditable$
WchEditableDirectiveOutput.wchEditable$ property
Event that tells about the inline edit process
Signature:
wchEditable$: Observable<WchEditableEvent>;
主页 > @acoustic-content-sdk/ng-edit-api > EditHubInfoService > debugPlaceholders
EditHubInfoService.debugPlaceholders property
Enable or disable placeholders even if inline edit mode has not been enabled
Signature:
readonly debugPlaceholders?: boolean;
主页 > @acoustic-content-sdk/ng-edit-api > EditHubInfoService > defaultPlaceholderText
EditHubInfoService.defaultPlaceholderText property
Provide a default placeholder text
Signature:
readonly defaultPlaceholderText?: WchDefaultPlaceholder;
Home > @acoustic-content-sdk/ng-edit-api > EditHubInfoService > inlineEditUrl
EditHubInfoService.inlineEditUrl property
Signature:
readonly inlineEditUrl?: HubInfoUrlProvider;
Home > ; @acoustic-content-sdk/ng-edit-api > EditHubInfoService > placeholderTag
EditHubInfoService.placeholderTag property
用于查找占位符内容项的标签。 If left undefined, placeholders will not be inserted, automatically
Signature:
readonly placeholderTag?: string;
Home > @acoustic-content-sdk/ng-edit-api > EditHubInfoService > throttleLoading
EditHubInfoService.throttleLoading property
Throttle loading of lib
Signature:
readonly throttleLoading?: number;
Home< /a> > @acoustic-content-sdk/ng-edit-api > WchEditablePlaceholderDirectiveInput > wchFormat$
WchEditablePlaceholderDirectiveInput.wchFormat$ property
如果指定,该指令将使用已编辑属性的值或配置的占位符(如果有)更新附加节点的文本内容。 格式标志描述该值是否被视为纯文本('text')、格式化文本('html')或者是否自动发现该类型。
如果丢失,该属性必须由模板的设计者显式更新。
签名:
wchFormat$: Observable<WchEditableFormat>;
@acoustic-content-sdk/ng-edit-api > WchPlaceholder > accessor$
WchPlaceholder.accessor$ property
The accessor expression
Signature:
accessor$: Observable<string>;
Home< /a> > @acoustic-content-sdk/ng-edit-api > WchPlaceholder > data$
WchPlaceholder.data$ property
Generates the accessed data, decoded from the accessor expression
Signature:
data$: Observable<any>;
主页 > @acoustic-content-sdk/ng-edit-api > WchPlaceholder > formattedText$
WchPlaceholder.formattedText$ property
Generates the formatted text of an element, potentially replaced by the placeholder
Signature:
formattedText$: Observable<LocalizedText>;
< a href="#_8907da9516dbc208319ea6c071ac4ee51f972a420c43f969a6aca6a66ff816db">主页 > @acoustic-content-sdk/ng-edit-api > WchPlaceholder > placeholder$
WchPlaceholder.placeholder$ property
暴露当前占位符的事件。 如果不存在占位符或占位符被禁用,这将返回“未定义”。
Signature:
placeholder$: Observable<AuthoringPlaceholder>;
Home > @acoustic-content-sdk/ng-edit-api > WchPlaceholder > placeholderText$
WchPlaceholder.placeholderText$ property
暴露当前占位符文本的事件。 如果占位符被禁用,这将返回“未定义”。 如果未定义占位符,则返回应用程序指定的默认占位符,否则为“未定义”。
Signature:
placeholderText$: Observable<LocalizedText>;
Home > @acoustic-content-sdk/ng-edit-api > WchPlaceholder > plainText$
WchPlaceholder.plainText$ property
Generates the text of an element, potentially replaced by the placeholder
Signature:
plainText$: Observable<LocalizedText>;
主页 > @acoustic-content-sdk/ng-edit-api > WchPlaceholder > showPlaceholder$
WchPlaceholder.showPlaceholder$ property
Checks if we should show or hide placeholders
Signature:
showPlaceholder$: Observable<boolean>;
主页 > @acoustic-content-sdk/ng-edit-api > WchPlaceholder > typeId$ Decodes
WchPlaceholder.typeId$ property
the type of the currently accessed element
Signature:
typeId$: Observable<string>;
主页 > @acoustic-content-sdk/ng-edit-api > WchEditablePlaceholderDirectiveOutput > formattedText$
WchEditablePlaceholderDirectiveOutput.formattedText$ property
Generates the formatted text of an element, potentially replaced by the placeholder
Signature:
formattedText$: Observable<LocalizedText>;
< a href="#_8907da9516dbc208319ea6c071ac4ee51f972a420c43f969a6aca6a66ff816db">主页 > @acoustic-content-sdk/ng-edit-api > WchEditablePlaceholderDirectiveOutput > plainText$
WchEditablePlaceholderDirectiveOutput.plainText$ property
Generates the text of an element, potentially replaced by the placeholder
Signature:
plainText$: Observable<LocalizedText>;
主页 > @acoustic-content-sdk/ng-edit-api > WchPlaceholderProvider > getPlaceholder
WchPlaceholderProvider.getPlaceholder property
Signature:
getPlaceholder: (aAccessor: AccessorType, aProvider: RenderingContextProviderV2) => WchPlaceholder;
Home > ; @acoustic-content-sdk/ng-edit-api > WchSelectableDirectiveInput > wchSelectable$
WchSelectableDirectiveInput.wchSelectable$ property
指令的主要输入值。 它表示可以选择的元素。
签名:
wchSelectable$: Observable<AccessorType>;
你可能也喜欢
- 3scale-loader 中文文档教程
- 786g 中文文档教程
- @3test/ethereum-generic-provider 中文文档教程
- @8select/serverless-plugin-api-docs 中文文档教程
- @aaronxyliu/ftfixer 中文文档教程
- @abhisekp/mongoose-to-json 中文文档教程
- @abstractsins/test 中文文档教程
- @acastemoreno/first-package 中文文档教程
- @acoustic-content-sdk/hbs-tooling 中文文档教程
- @acpaas-ui/web-components 中文文档教程