UNPKG

type2docfx

Version:

A tool to convert json format output from TypeDoc to universal reference model for DocFx to consume.

76 lines (69 loc) 1.91 kB
/** * @module botbuilder-choices */ /** * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { TurnContext } from 'botbuilder'; export const channels = { facebook: 'facebook', skype: 'skype', msteams: 'msteams', telegram: 'telegram', kik: 'kik', email: 'email', slack: 'slack', groupme: 'groupme', sms: 'sms', emulator: 'emulator', directline: 'directline', webchat: 'webchat', console: 'console', cortana: 'cortana' }; export function supportsSuggestedActions(channelId: string, buttonCnt = 100) { switch (channelId) { case channels.facebook: case channels.skype: return (buttonCnt <= 10); case channels.kik: return (buttonCnt <= 20); case channels.slack: case channels.telegram: case channels.emulator: return (buttonCnt <= 100); default: return false; } } export function supportsCardActions(channelId: string, buttonCnt = 100) { switch (channelId) { case channels.facebook: case channels.skype: case channels.msteams: return (buttonCnt <= 3); case channels.slack: case channels.emulator: case channels.directline: case channels.webchat: case channels.cortana: return (buttonCnt <= 100); default: return false; } } export function hasMessageFeed(channelId: string) { switch (channelId) { case channels.cortana: return false; default: return true; } } export function maxActionTitleLength(channelId: string) { return 20; } export function getChannelId(context: TurnContext): string { return context.activity.channelId || ''; }