Subscribe

Medusa using services in subscribers

✍️

Using other services inside medusa subscribers

26 Sep, 2022 · 2 min read

We first looked at custom subscribers for medusa. And before that, we created our first custom service.

Let’s look at how we can combine the two for maximum flexibility.

Note: If you haven’t read the above-linked articles, please read those first.

Adding a custom service to the subscriber

The process here will be very similar to injecting services, but how we do it is slightly different.

Open up your subscriber file and start by declaring the service you want to inject.

class ProductNotifierSubscriber {
    translateService;

    constructor({ translateService, eventBusService }) {
        this.translateService = translateService;
        eventBusService.subscribe("product.created", this.handleProduct);
    }
}

As you can see, we declare the translateService our custom service. Then inside the constructor, we assign it to the variable, gaining access to it in this file.

To use it, we can do the following:

handleProduct = async (data) => {
    this.translateService.translateProduct(data.id).then((title) => {
        console.log("New product title: " + title)
    })
};

And that’s precisely how we can attach our custom service to fire off inside the subscriber.

Product notifier in medusa

There is no limit to how many services you can inject, but be aware they might bloat your subscribers.

Thank you for reading, and let’s connect!

Thank you for reading my blog. Feel free to subscribe to my email newsletter and connect on Facebook or Twitter

Spread the knowledge with fellow developers on Twitter
Tweet this tip
Powered by Webmentions - Learn more

Read next 📖

On a webshop break

3 Oct, 2022 · 2 min read

On a webshop break

Medusa interacting with our custom entity

2 Oct, 2022 · 4 min read

Medusa interacting with our custom entity

Join 2099 devs and subscribe to my newsletter