Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(mikro-orm): manage lifecycle of subscribers #2293

Merged

Conversation

derevnjuk
Copy link
Contributor

@derevnjuk derevnjuk commented Mar 29, 2023

Information

Type Breaking change
Feature No

Usage example

Allow managing the lifecycle of subscribers using the IoC container.

To automatically resolve a subscriber's dependencies, you can use the @Subscriber decorator as follows:

import {EventSubscriber} from "@mikro-orm/core";
import {Subscriber} from "@tsed/mikro-orm";

@Subscriber()
export class SomeSubscriber implements EventSubscriber {
  // ...
}

In this example, we register the SomeSubscriber subscriber, which is automatically instantiated by the module using the IoC container, allowing you to easily manage the dependencies of your subscribers.

You can also specify the context name for a subscriber to tie it to a particular instance of the ORM:

import {EventSubscriber} from "@mikro-orm/core";
import {Subscriber} from "@tsed/mikro-orm";

@Subscriber({contextName: "mongodb"})
export class SomeSubscriber implements EventSubscriber {
  // ...
}

Todos

  • Tests
  • Coverage
  • Example
  • Documentation

closes #2292

@Romakita
Copy link
Collaborator

Romakita commented Mar 30, 2023

Hello @derevnjuk

Nice PR. But why a Subscriber isn't decorated by @Injectable decorator ?

Support both ComplexSubscriber and SimpleSubscriber seems to be confusing. Especially the SimpleSubscriber, the developer won't understand why the class isn't injectable and cannot inject something from the DI.

You can simplify the code by introducing a @Subscriber() decorator, and the decorator will collect all complex subscribers automatically.

Decorators:

const MIKRO_ORM_SUBSCRIBERS = "mikro:orm:subscribers";

function Subscriber(opts: {contextName: string} = {contextName:"default"}) {
    return useDecorators(Injectable({type: MIKRO_ORM_SUBSCRIBERS }), StoreSet(MIKRO_ORM_SUBSCRIBERS, opts))
}

The module:

export class MikroOrmModule implements OnDestroy, OnInit, AlterRunInContext {
    constructor(@Inject(MIKRO_ORM_SUBSCRIBERS) private subscribers: EventSubscriber[]) {
    
    }
    
    $onInit() {
       this.settings.map((opts) => {
           this.registry.register({
             ...opts, 
             subscribers: [
                ...opts.subscribers || [], // if you want to maintain simple subscribers
                ...this.getSubscribers(opts.contextName || 'default') // injectable subscribers by contextName
             ]
          })
       })
    }

    getSubscribers(contextName: string ){
      return this.subscribers.filter((subscriberInstance) => {
         return Store.from(classOf(subscriberInstance)).get(MIKRO_ORM_SUBSCRIBERS)?.contextName === contextName)
      })
   }
}

Usage:

@Subscriber()
export class ComplexSubscriber implements EventSubscriber {
  @Inject() private readonly logger: Logger

  public async afterFlush(_: TransactionEventArgs): Promise<void> {
    this.logger.info("Changes has been flushed.");
  }
}

@derevnjuk
Copy link
Contributor Author

Thank you, @Romakita, for the detailed feedback 👍🏾

Support both ComplexSubscriber and SimpleSubscriber seems to be confusing.

I wanted to demonstrate that it's still possible to pass an instance of a class in the same way it's done by default in Mikro-Orm. This is just a showcase to highlight the preservation of backward compatibility.

You can simplify the code by introducing a @Subscriber() decorator, and the decorator will collect all complex subscribers automatically.

This is exactly what I wanted to avoid 😄 If you believe it would be more appropriate, I'll make these changes

@Romakita
Copy link
Collaborator

You can simplify the code by introducing a @subscriber() decorator, and the decorator will collect all complex subscribers automatically.

This is exactly what I wanted to avoid 😄 If you believe it would be more appropriate, I'll make these changes

By principle, all injectable class must be decorated by a decorator (Injectable or similar things). Introducing exception may be confusing for me when an issue will occurs in future. In fact, you are just lucky that the Ts.ED DI works without by using lazyInvoke (but I wasn't his first purpose to allow that - you just made me discover it 🤣).

I understand your point. But the Ts.ED philosophy is to have less configuration has is possible and let the DI discover the classes and configure the third party framework automatically (like his is with the decorator Subscriber suggestion).

One that it could be important to set the classes on subscribers options is the order declaration.
I don't know if the subscribers order is important or not. But if is it, my actual suggestion, won't be a good solution. Like the mount option, the controller declaration order is really import, and could the same problem for subscribers.

I let you give me an answer, and I would reconsider my position ^^.

See you
Romain

@derevnjuk
Copy link
Contributor Author

@Romakita, this is because MikroOrm already has its own @Subscriber decorator (https://mikro-orm.io/docs/decorators#subscriber). The main aim was to prevent conflicts between symbols and minimize the chances of confusion. However, it is not the best solution, I agree. Would you prefer to keep the same name (i.e. @Subscriber) or choose a new one?

@Romakita
Copy link
Collaborator

Romakita commented Apr 7, 2023

Hum ok it’s clear. Having twice Subscriber decorator will be confusing. You’ve right.

But the if the mikro-orm exists it means the complex subscriber should always be used to declare Subscriber.

Ok I’ll try to give you appropriate answer tomorrow ;)

@Romakita
Copy link
Collaborator

Romakita commented Apr 8, 2023

Hum well you have done all changes but your last arguments need to rework again the PR.

I inspected the mikro orm code. The Subscriber decorator create directly the class instance and add it to the subscribers registry:

https://github.com/mikro-orm/mikro-orm/blob/master/packages/core/src/decorators/Subscriber.ts

In fact this scenario must be take in count. Subscribers instance should be injectable to another service isn't supposed to be possible. By proposal, to introduce a Subscriber is wrong (collision decorator name and not aligned with Mikro ORM implementation).

I pushed a commit to rollback Subscriber decorator and allow any subscriber to inject service without adding it to the Ts.ED DI registry ;)

Tell if it's fine for you
Romain

@Romakita Romakita force-pushed the feat_#2292/manage_lifecycle_of_subscribers branch from 3f7edc1 to a69c7ac Compare April 8, 2023 08:59
@derevnjuk
Copy link
Contributor Author

derevnjuk commented Apr 10, 2023

@Romakita looks good, but it may be worth considering avoiding passing a class to subscribers since the @Subscriber decorator and injectable properties already cover this functionality:

const subscribers = opts.subscribers.map((subscriber) => {
-  if (isFunction(subscriber)) {
-    return this.injector.invoke(subscriber, container, diOpts);
-  }
-
  this.injector.bindInjectableProperties(instance, container, diOpts);

  return subscriber;
});

For instance:

@Subscriber()
class EventSubscriber1 implmenets EventSubscriber {
  @Inject()
  private readonly logger!: Logger;
}

class EventSubscriber2 implmenets EventSubscriber {
  @Inject()
  private readonly logger!: Logger;
}

// ...

mikroOrm: [
  {
     subscribers: [new EventSubscriber2()]
  }
]

If you are ok with it, I will update the implementation and docs accordingly.

@Romakita
Copy link
Collaborator

Romakita commented Apr 13, 2023

@derevnjuk Hum we are not supposed to make new EventSubscriber2. I’m not sure if it’s normal and what is the interest for the developer?

DI is supposed to avoid the manual class construction.

see you

@Romakita
Copy link
Collaborator

@derevnjuk I'm sorry I totally forgot this PR.
Is there something I can do to merge this PR ?

@derevnjuk
Copy link
Contributor Author

@Romakita I apologize for the delay as I'm currently occupied with other tasks. However, I'm aiming to finalize everything this week. BTW seems mikro-orm is going to remove the @Subscriber decorator: mikro-orm/mikro-orm#4231. We can revisit this approach)

@derevnjuk derevnjuk force-pushed the feat_#2292/manage_lifecycle_of_subscribers branch from e9c1f45 to 0c81969 Compare July 10, 2023 11:42
@derevnjuk
Copy link
Contributor Author

@Romakita, I have completed the PR and made a few changes since the last review:

  • reverted the @Subscriber decorator back, the mikro-orm is going to remove it from their side for simplicity: Remove @Subscriber() decorator mikro-orm/mikro-orm#4231.
  • left the support for both class references and instances in the subscribers option to ensure backward compatibility.

@derevnjuk derevnjuk force-pushed the feat_#2292/manage_lifecycle_of_subscribers branch from 0c81969 to 0f0faf9 Compare July 10, 2023 11:48
@derevnjuk derevnjuk requested a review from Romakita July 10, 2023 11:53
@Romakita
Copy link
Collaborator

Seems to be good for me ;) Ready to merge. It's for you OK

@derevnjuk thanks again for this PR!

@derevnjuk
Copy link
Contributor Author

@Romakita thanks, let's merge 😄

@Romakita Romakita merged commit f4612d9 into tsedio:production Jul 11, 2023
19 checks passed
@derevnjuk derevnjuk deleted the feat_#2292/manage_lifecycle_of_subscribers branch July 11, 2023 16:36
@Romakita
Copy link
Collaborator

🎉 This PR is included in version 7.32.0 🎉

The release is available on:

Your semantic-release bot 📦🚀

@derevnjuk
Copy link
Contributor Author

@Romakita it appears that you forgot to squash commits before merging to the production branch 😢

derevnjuk added a commit that referenced this pull request Jul 11, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Manage lifecycle of subscribers
2 participants