使用javascript更新Bot Framework v4中已发布的自适应卡

时间:2020-08-21 00:08:41

标签: javascript node.js botframework adaptive-cards

我是Botframework和Microsoft团队的新手。我正在尝试构建一个将发布自适应卡的机器人。提交卡后,我要执行一些操作并更新现有卡。

我能够在Microsoft团队中创建一个自适应卡,当用户提交操作时,我就可以捕获数据。我被困的地方无法用新卡更新现有卡。

// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.

const {
    TurnContext,
    MessageFactory,
    TeamsInfo,
    TeamsActivityHandler,
    CardFactory,
    ActionTypes
} = require('botbuilder');

const TextEncoder = require('util').TextEncoder;


const WELCOME_TEXT = 'This bot will introduce you to Adaptive Cards. Type anything to see an Adaptive Card.';

var replyToID = "";

class AdaptiveCardsBot extends TeamsActivityHandler {
    constructor() {
        super();
        // See https://aka.ms/about-bot-activity-message to learn more about the message and other activity types.
        this.onMessage(async (context, next) => {
            // const replyText = `Echo: ${ context.activity.text }`;
            var txt = context.activity.text;
            var val = context.activity.value;
            

            if (!txt && val) {
                await this.sendUpdatedCard(context);
            } else
            {
                const sampleCard = require('./resources/adaptiveSample.json');
                console.log (JSON.stringify(context.activity));
                console.log ("---------------------");
                console.log ("---------------------");
                //console.log("Core ID" + context.activity.replyToId);
                var reply = await context.sendActivity(
                    {
                        text: 'Here is an Adaptive Card:',
                        attachments: [CardFactory.adaptiveCard(sampleCard)]
                    });
                
                console.log (JSON.stringify(reply));
                console.log ("---------------------");
                console.log ("---------------------");
                replyToID = reply.id;
                var reference = TurnContext.getReplyConversationReference(context.activity, reply)
                replyToID = reference.activityId;       
                
            }
            // By calling next() you ensure that the next BotHandler is run.
            await next();
        });

        this.onMembersAdded(async (context, next) => {
            const membersAdded = context.activity.membersAdded;
            for (let cnt = 0; cnt < membersAdded.length; ++cnt) {
                if (membersAdded[cnt].id !== context.activity.recipient.id) {
                    await context.sendActivity(`Welcome to Adaptive Cards Bot  ${ membersAdded[cnt].name }. ${ WELCOME_TEXT }`);
                }
            }
            // By calling next() you ensure that the next BotHandler is run.
            await next();
        });
    }
    async sendUpdatedCard(context)
        {
            const data = context.activity.value;
            console.log("Call Submit to Asana");
            console.log (JSON.stringify(context.activity));
            console.log ("---------------------");
            console.log ("---------------------");
            console.log ("replyToID :" + replyToID);
            const returnCard = require('./resources/returnSample.json');

            const card2 = CardFactory.adaptiveCard(returnCard);
            card2.id = replyToID;
            const newActivity = MessageFactory.attachment(card2);
            newActivity.id = replyToID;
            newActivity.type = "message";
            await context.updateActivity(newActivity);
        }
}


// await context.sendActivity({
//     text: 'Here is a return card',
//     attachments: [CardFactory.adaptiveCard(returnCard)]
// });
//const newActivity = MessageFactory.attachment(CardFactory.adaptiveCard(returnCard));
module.exports.AdaptiveCardsBot = AdaptiveCardsBot;


任何帮助将不胜感激。

仿真器的附加图像 enter image description here

1 个答案:

答案 0 :(得分:0)

@Pawan请通过Updating Bot Messages。这是sample code in Node,可通过单击按钮将新卡更新为现有卡。