-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcontext_actions.js
More file actions
67 lines (65 loc) · 1.39 KB
/
context_actions.js
File metadata and controls
67 lines (65 loc) · 1.39 KB
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
/**
* Holds interactive elements like feedback buttons and icon buttons.
*
* @see {@link https://docs.slack.dev/reference/block-kit/blocks/context-actions-block/}
*/
/**
* Context actions block with feedback buttons.
*
* @returns {import('@slack/types').ContextActionsBlock}
*/
export function example01() {
/**
* @type {import('@slack/types').ContextActionsBlock}
*/
const block = {
type: "context_actions",
elements: [
{
type: "feedback_buttons",
action_id: "feedback_buttons_1",
positive_button: {
text: {
type: "plain_text",
text: "👍",
},
value: "positive_feedback",
},
negative_button: {
text: {
type: "plain_text",
text: "👎",
},
value: "negative_feedback",
},
},
],
};
return block;
}
/**
* Context actions block with an icon button.
*
* @returns {import('@slack/types').ContextActionsBlock}
*/
export function example02() {
/**
* @type {import('@slack/types').ContextActionsBlock}
*/
const block = {
type: "context_actions",
elements: [
{
type: "icon_button",
icon: "trash",
text: {
type: "plain_text",
text: "Delete",
},
action_id: "delete_button_1",
value: "delete_item",
},
],
};
return block;
}