UNPKG

botbuilder-dialogs-adaptive

Version:

Rule system for the Microsoft BotBuilder dialog system.

88 lines (79 loc) 2.9 kB
/** * @module botbuilder-dialogs-adaptive */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { ActivityTypes } from 'botbuilder'; import { BoolExpression, BoolExpressionConverter } from 'adaptive-expressions'; import { BoolProperty } from '../properties'; import { Converter, ConverterFactory, Dialog, DialogConfiguration, DialogContext, DialogTurnResult, } from 'botbuilder-dialogs'; export interface EndTurnConfiguration extends DialogConfiguration { disabled?: BoolProperty; } /** * This command ends the current turn without ending the [Dialog](xref:botbuilder-dialogs.Dialog). */ export class EndTurn<O extends object = {}> extends Dialog<O> implements EndTurnConfiguration { static $kind = 'Microsoft.EndTurn'; /** * An optional expression which if is true will disable this action. */ disabled?: BoolExpression; /** * @param property The key of the conditional selector configuration. * @returns The converter for the selector configuration. */ getConverter(property: keyof EndTurnConfiguration): Converter | ConverterFactory { switch (property) { case 'disabled': return new BoolExpressionConverter(); default: return super.getConverter(property); } } /** * Starts a new [Dialog](xref:botbuilder-dialogs.Dialog) and pushes it onto the dialog stack. * * @param dc The [DialogContext](xref:botbuilder-dialogs.DialogContext) for the current turn of conversation. * @param _options Optional. Initial information to pass to the dialog. * @returns A `Promise` representing the asynchronous operation. */ async beginDialog(dc: DialogContext, _options?: O): Promise<DialogTurnResult> { if (this.disabled && this.disabled.getValue(dc.state)) { return await dc.endDialog(); } return Dialog.EndOfTurn; } /** * Called when the [Dialog](xref:botbuilder-dialogs.Dialog) is _continued_, where it is the active dialog and the * user replies with a new activity. * * @param dc The [DialogContext](xref:botbuilder-dialogs.DialogContext) for the current turn of conversation. * @returns A `Promise` representing the asynchronous operation. */ async continueDialog(dc: DialogContext): Promise<DialogTurnResult> { const activity = dc.context.activity; if (activity.type === ActivityTypes.Message) { return await dc.endDialog(); } else { return Dialog.EndOfTurn; } } /** * @protected * Builds the compute Id for the [Dialog](xref:botbuilder-dialogs.Dialog). * @returns A `string` representing the compute Id. */ protected onComputeId(): string { return 'EndTurn[]'; } }