-
Notifications
You must be signed in to change notification settings - Fork 44
/
Copy pathserver.ts
99 lines (87 loc) · 2.41 KB
/
server.ts
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
import dotenv from "dotenv";
import express from "express";
import { createEventAdapter } from "@slack/events-api";
import Phelia from "../core";
import {
BirthdayPicker,
ChannelsSelectMenuExample,
ChannelsSelectMenuModal,
ConversationsSelectMenuExample,
ConversationsSelectMenuModal,
Counter,
ExternalSelectMenuExample,
ExternalSelectMenuModal,
Greeter,
ModalExample,
MultiChannelsSelectMenuExample,
MultiChannelsSelectMenuModal,
MultiConversationsSelectMenuExample,
MultiConversationsSelectMenuModal,
MultiExternalSelectMenuExample,
MultiExternalSelectMenuModal,
MultiStaticSelectMenuExample,
MultiStaticSelectMenuModal,
MultiUsersSelectMenuExample,
MultiUsersSelectMenuModal,
MyModal,
OverflowMenuExample,
RadioButtonExample,
RadioButtonModal,
RandomImage,
StaticSelectMenuExample,
StaticSelectMenuModal,
UsersSelectMenuExample,
UsersSelectMenuModal,
HomeApp,
} from "./example-messages";
dotenv.config();
const app = express();
const port = 3000;
const client = new Phelia(process.env.SLACK_TOKEN);
client.registerComponents([
BirthdayPicker,
Counter,
Greeter,
ModalExample,
MyModal,
RandomImage,
OverflowMenuExample,
RadioButtonModal,
RadioButtonExample,
StaticSelectMenuExample,
StaticSelectMenuModal,
UsersSelectMenuExample,
UsersSelectMenuModal,
ConversationsSelectMenuExample,
ConversationsSelectMenuModal,
ChannelsSelectMenuModal,
ChannelsSelectMenuExample,
ExternalSelectMenuExample,
ExternalSelectMenuModal,
MultiStaticSelectMenuExample,
MultiStaticSelectMenuModal,
MultiExternalSelectMenuExample,
MultiExternalSelectMenuModal,
MultiUsersSelectMenuExample,
MultiUsersSelectMenuModal,
MultiChannelsSelectMenuExample,
MultiChannelsSelectMenuModal,
MultiConversationsSelectMenuExample,
MultiConversationsSelectMenuModal,
]);
// Register the interaction webhook
app.post(
"/interactions",
client.messageHandler(process.env.SLACK_SIGNING_SECRET)
);
// Register your Home App
const slackEvents = createEventAdapter(process.env.SLACK_SIGNING_SECRET);
slackEvents.on("app_home_opened", client.appHomeHandler(HomeApp));
app.use("/events", slackEvents.requestListener());
(async () => {
const key = await client.postMessage(ModalExample, "@max", { name: "Max" });
await client.updateMessage(key, { name: "me but laters" });
})();
app.listen(port, () =>
console.log(`Example app listening at http://localhost:${port}`)
);