out-of-your-element/d2m/event-dispatcher.js

29 lines
842 B
JavaScript
Raw Normal View History

2023-04-25 20:06:08 +00:00
// @ts-check
2023-05-04 20:25:00 +00:00
const {sync} = require("../passthrough")
/** @type {import("./actions/send-message")}) */
const sendMessage = sync.require("./actions/send-message")
// Grab Discord events we care about for the bridge, check them, and pass them on
2023-04-30 12:57:30 +00:00
2023-04-25 20:06:08 +00:00
module.exports = {
/**
* @param {import("./discord-client")} client
* @param {import("discord-api-types/v10").GatewayMessageCreateDispatchData} message
*/
onMessageCreate(client, message) {
if (message.guild_id !== "112760669178241024") return // TODO: activate on other servers (requires the space creation flow to be done first)
2023-05-04 20:25:00 +00:00
sendMessage.sendMessage(message)
2023-04-25 20:06:08 +00:00
},
/**
* @param {import("./discord-client")} client
* @param {import("discord-api-types/v10").GatewayMessageReactionAddDispatchData} data
*/
onReactionAdd(client, data) {
console.log(data)
return {}
}
}