GithubHelp home page GithubHelp logo

Add reaction support about hubot-matteruser HOT 7 CLOSED

loafoe avatar loafoe commented on June 12, 2024
Add reaction support

from hubot-matteruser.

Comments (7)

reduckted avatar reduckted commented on June 12, 2024 1

Ah, I think I found them. The mattermost-client instance is available off the adapter, so you can do this:

module.exports = (robot) => {
  robot.hear(/hubot/, (res) => {
    res.robot.adapter.client.react(res.message.id, 'paddlin');
  })
};

from hubot-matteruser.

jwernicke avatar jwernicke commented on June 12, 2024 1

Works per @reduckted's suggestion.

module.exports = (robot) => {
  robot.hear(/hubot/, (res) => {
    res.robot.adapter.client.react(res.message.id, 'paddlin');
  })
};

from hubot-matteruser.

loafoe avatar loafoe commented on June 12, 2024

@jwernicke waiting for the reactions API to become available in the Mattermost v4 API

from hubot-matteruser.

mmack avatar mmack commented on June 12, 2024

I think it's available right? https://api.mattermost.com/#tag/reactions

from hubot-matteruser.

loafoe avatar loafoe commented on June 12, 2024

@jwernicke @mmack it's now available in mattermost-client as react() and unreact() calls, but I'm not sure these are exposed on the @Robot object which is passed to your scripts. Would be great if you can try it out.

from hubot-matteruser.

reduckted avatar reduckted commented on June 12, 2024

I'm not 100% sure I'm looking in the right place, but I've created a tiny script to check if the react() and unreact() functions are available, and they don't seem to exist.

module.exports = (robot) => {
  robot.hear(/hubot/, (res) => {
    console.log(res.robot.react);
  })
};

When it receives a command, it prints undefined to the console.

from hubot-matteruser.

loafoe avatar loafoe commented on June 12, 2024

@reduckted thanks for checking!!

from hubot-matteruser.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.