Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
September 26, 2022 06:19 am GMT

Medusa using services in subscribers

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


Original Link: https://dev.to/dailydevtips1/medusa-using-services-in-subscribers-46h

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To