inversify / InversifyJS

A powerful and lightweight inversion of control container for JavaScript & Node.js apps powered by TypeScript.
http://inversify.io/
MIT License
11.15k stars 713 forks source link

getAll - Error: No matching bindings found for serviceIdentifier #1469

Open cts-tradeit opened 2 years ago

cts-tradeit commented 2 years ago

Expected Behavior

class StartupCallback {}

If I have container that contains 0 bindings of class StartupCallback and I do getAll I get empty array.

Current Behavior

class StartupCallback {}

If I have container that contains 0 bindings of class StartupCallback and I do getAll I get:

Error: No matching bindings found for serviceIdentifier

Possible Solution

Get all should return empty array if 0 items are bound. Usually when resolving by all (array) it is for components like lifecycle callbacks and initializes which count may vary across environments. It should be possible to have between 0 and n of these instead of between 1 and n, as in environment without single callback we have to provide noop binding.

Your Environment

version: 6.0.1

Deathrage commented 1 year ago

Are there aany news on thi sissue?

logikaljay commented 9 months ago

Old, but maybe this still helps you.

A nasty fix is to monkey patch container.getAll:

container.ts

import { Container } from "inversify"

export const container = new Container()

// types taken from `inversify/lib/interfaces.d.ts`
export type Newable<T> = new (...args: any[]) => T;
export interface Abstract<T> {
    prototype: T;
}
export type ServiceIdentifier<T = unknown> = (string | symbol | Newable<T> | Abstract<T>);

// monkey patching `container.getAll`
const getAll = container.getAll.bind(container)
container.getAll = <T>(serviceIdentifier: ServiceIdentifier<T>): T[] => {
  try {
    return getAll(serviceIdentifier)
  }
  catch (err) {
    return []
  }
}

Now, this will no longer throw an error, but instead return an empty array:

index.ts

import { container } from "./container"

// class that is not bound.
class MyService {
}

async function main() {
  let services = container.getAll(MyService)
  console.log('🎉');
}

main()
Jameskmonger commented 9 months ago

Sorry for the lack of response here, the project went through an unmaintained period but we have been publishing releases again recently (6.0.2 at the end of October 2023)

--

Similar to #1359 I think this would be a great feature for the official library, imo we should aim to get this into an official release. cc @PodaruDragos

Jameskmonger commented 9 months ago

Added to milestone 6.1.0 pending agreement from other contributors.