forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathHeroCardExtensions.cs
68 lines (56 loc) · 2.43 KB
/
HeroCardExtensions.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
namespace ContosoFlowers.BotAssets.Extensions
{
using System.Collections.Generic;
using System.Linq;
using Microsoft.Bot.Connector;
public static class HeroCardExtensions
{
public static void AddHeroCard<T>(this IMessageActivity message, string title, string subtitle, IEnumerable<T> options, IEnumerable<string> images = default(IEnumerable<string>))
{
var heroCard = GenerateHeroCard(title, subtitle, options, images);
if (message.Attachments == null)
{
message.Attachments = new List<Attachment>();
}
message.Attachments.Add(heroCard.ToAttachment());
}
public static void AddHeroCard(this IMessageActivity message, string title, string subtitle, IList<KeyValuePair<string, string>> options, IEnumerable<string> images = default(IEnumerable<string>))
{
var heroCard = GenerateHeroCard(title, subtitle, options, images);
if (message.Attachments == null)
{
message.Attachments = new List<Attachment>();
}
message.Attachments.Add(heroCard.ToAttachment());
}
private static HeroCard GenerateHeroCard(string title, string subtitle, IEnumerable<KeyValuePair<string, string>> options, IEnumerable<string> images)
{
var actions = new List<CardAction>();
foreach (var option in options)
{
actions.Add(new CardAction
{
Title = option.Key.ToString(),
Type = ActionTypes.ImBack,
Value = option.Value.ToString()
});
}
var cardImages = new List<CardImage>();
if (images != default(IEnumerable<string>))
{
foreach (var image in images)
{
cardImages.Add(new CardImage
{
Url = image,
});
}
}
return new HeroCard(title, subtitle, images: cardImages, buttons: actions);
}
private static HeroCard GenerateHeroCard<T>(string title, string subtitle, IEnumerable<T> options, IEnumerable<string> images)
{
return GenerateHeroCard(title, subtitle, options.Select(option => new KeyValuePair<string, string>(option.ToString(), option.ToString())), images);
}
}
}