GithubHelp home page GithubHelp logo

Comments (2)

dinigo avatar dinigo commented on June 2, 2024

Solved it. Noob mistake:

import {NotificationsService} from "angular2-notifications";

/**
  * Every component but the App root one
  */
@Component({
    ...
    providers: [],    // does not contain NotificationsService
    ...
export class AnyOtherComponent(){
    constructor(private ns:NotificationsService){}
    someFunction(){
        this.ns.info('title','content');
    }
}```

I suppose I was overriding the instance for the components

from angular2-notifications.

flauc avatar flauc commented on June 2, 2024

...even if declaring a service globally is discouraged by the official documentation)

Are you sure that declaring services globally in discouraged? I think many services are intended to be used as singletons in that case it makes most sense to include them in the app.component especially if you have to use them on more places across your app.

I went through the official examples and they register providers in the app.component even if they could be registered on a lower component.

Also if you look at the ngrx-example-app for example. All services are registered at root.

from angular2-notifications.

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.