Source

lib/chat/onNewMessageBySelf.js

  1. const events = require('events')
  2. const onNotification = require('../client/onNotification.js').func
  3. exports.optional = ['jar']
  4. // Docs
  5. /**
  6. * 🔐 An event for when you send a new message.
  7. * @category Chat
  8. * @alias onNewMessageBySelf
  9. * @returns An EventEmitter that emits when you send a new message.
  10. * @example const noblox = require("noblox.js")
  11. * // Login using your cookie
  12. * const messageSent = noblox.onNewMessageBySelf()
  13. * messageSent.on("data", function(data) {
  14. * console.log("Sent chat message! ", data)
  15. * })
  16. * messageSent.on("error", function(err) {
  17. * console.error("Something went wrong: ", err)
  18. * // Handle error as needed
  19. * })
  20. **/
  21. exports.func = (args) => {
  22. const jar = args.jar
  23. const newEvent = new events.EventEmitter()
  24. const notifications = onNotification({ jar })
  25. notifications.on('data', (name, message) => {
  26. if (name === 'ChatNotifications' && message.Type === 'NewMessageBySelf') {
  27. newEvent.emit('data', message.ConversationId)
  28. }
  29. })
  30. notifications.on('error', (err) => {
  31. newEvent.emit('error', err)
  32. })
  33. notifications.on('connect', () => {
  34. newEvent.emit('connect')
  35. })
  36. notifications.on('close', (internal) => {
  37. if (internal) return
  38. notifications.emit('close', true)
  39. })
  40. return newEvent
  41. }