Giter Site home page Giter Site logo

Comments (4)

tomastrajan avatar tomastrajan commented on May 19, 2024

Hmm may look into it, haven't really used material snackbar before, I guess it can have something to do with the layout and being all wraped in side menu wrapper ?

from angular-ngrx-material-starter.

Fiontan avatar Fiontan commented on May 19, 2024

@DevJoseWeb please provide more code- e.g. it's not obvious from above if you are correctly injecting MdSnackBar instance into your component and I'm not so sure about the AppComponent part of: this.snackBar.openFromComponent(AppComponent ...

from angular-ngrx-material-starter.

Fiontan avatar Fiontan commented on May 19, 2024

@DevJoseWeb I don't have time to clone/fork/pull request etc but here is a solution- it's the src dir zipped and contains a shared-snack component added to the shared module as an entryComponent.
I then import it and the MatSnackbar into the todos.component:
import { MatSnackBar } from '@angular/material';
import { SharedSnackComponent } from '@app/shared/shared-snack/shared-snack.component';

I then inject the snackbar ref into the constructor:
constructor(public snackBar: MatSnackBar, public store: Store) {}
I then add the following method:
openSnackBar() {
this.snackBar.openFromComponent(SharedSnackComponent, {
duration: 500,
});
}

which gets called from:
onAddTodo() {
this.store.dispatch(new ActionTodosAdd({ name: this.newTodo }));
this.newTodo = '';
this.openSnackBar();
}
This opens a snackbar with the component:
image

In some projects I have worked on with ngrx, we have a layout slice in the store and the open/close snackbar are actions on the store but that's a different story...
here is the src zip
src.zip

from angular-ngrx-material-starter.

tomastrajan avatar tomastrajan commented on May 19, 2024

Ok, so I added snack-bar notification to todos example, feel free to check it!

That being said, I personally find snack-bar pretty lacking compared to full-fledged notification system with stuff like severity etc... I might add centralized notification service later...

from angular-ngrx-material-starter.

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.