GithubHelp home page GithubHelp logo

Comments (4)

thewax avatar thewax commented on July 29, 2024 2

Sorry to write on a closed issue, but is there any way to make this work without the core module pattern? Right now it's spawning a new service for each module.

from ng2-toasty.

akserg avatar akserg commented on July 29, 2024

Hi @tomasisby
I didn't test it in lazy loading environment. Thanks for prompt.

from ng2-toasty.

tomasisby avatar tomasisby commented on July 29, 2024

Hello!
I've meddled around with Angular core.module and found a way to make this work. You need to export the ToastyModule in shared.module and ToastyService in core.module, like this:

In shared.module:

import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { FormsModule } from '@angular/forms';
import { ToastyModule } from 'ng2-toasty';

@NgModule({
imports: [
CommonModule,
ToastyModule
],
declarations: [],
exports: [
CommonModule,
FormsModule,
ToastyModule
]
})
export class SharedModule {}

And in core.module you take care of the services:

import { NgModule, Optional, SkipSelf } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ToastyService, ToastyConfig } from 'ng2-toasty';

@NgModule({
imports: [
CommonModule
],
declarations: [],
exports: [],
providers: [
ToastyService,
ToastyConfig,
]
})
export class CoreModule {
constructor( @optional() @SkipSelf() parentModule: CoreModule) {
if (parentModule) {
throw new Error('CoreModule is already loaded. Import it in the AppModule only');
}
}
}

And then in app.module you import both shared.module and core.module so you can get a singleton service for the root application:

import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import { SharedModule } from './shared.module';
import { CoreModule } from './core/core.module';
import { routing } from './app.routing';
@NgModule({
imports: [
BrowserModule,
SharedModule,
CoreModule,
routing
],
declarations: [
AppComponent
],
bootstrap: [AppComponent]
})
export class AppModule { }

And voila! It works as expected with only one instance of toasty service for lazy loaded routes as well.

from ng2-toasty.

akserg avatar akserg commented on July 29, 2024

Impressive.
Thanks for time and sharing code.

from ng2-toasty.

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.